diff --git a/SportsTime/Core/Models/CloudKit/CKModels.swift b/SportsTime/Core/Models/CloudKit/CKModels.swift index 393db3a..acf6e88 100644 --- a/SportsTime/Core/Models/CloudKit/CKModels.swift +++ b/SportsTime/Core/Models/CloudKit/CKModels.swift @@ -34,9 +34,11 @@ struct CKTeam { static let cityKey = "city" static let stadiumRefKey = "stadiumRef" static let stadiumCanonicalIdKey = "stadiumCanonicalId" - static let logoURLKey = "logoURL" + static let logoURLKey = "logoUrl" static let primaryColorKey = "primaryColor" static let secondaryColorKey = "secondaryColor" + static let conferenceCanonicalIdKey = "conferenceCanonicalId" + static let divisionCanonicalIdKey = "divisionCanonicalId" let record: CKRecord @@ -68,6 +70,16 @@ struct CKTeam { record[CKTeam.stadiumCanonicalIdKey] as? String } + /// The conference canonical ID string from CloudKit (e.g., "nba_eastern") + var conferenceCanonicalId: String? { + record[CKTeam.conferenceCanonicalIdKey] as? String + } + + /// The division canonical ID string from CloudKit (e.g., "nba_southeast") + var divisionCanonicalId: String? { + record[CKTeam.divisionCanonicalIdKey] as? String + } + var team: Team? { // Use teamId field, or fall back to record name let id = (record[CKTeam.idKey] as? String) ?? record.recordID.recordName @@ -99,6 +111,8 @@ struct CKTeam { sport: sport, city: city, stadiumId: stadiumId, + conferenceId: record[CKTeam.conferenceCanonicalIdKey] as? String, + divisionId: record[CKTeam.divisionCanonicalIdKey] as? String, logoURL: logoURL, primaryColor: record[CKTeam.primaryColorKey] as? String, secondaryColor: record[CKTeam.secondaryColorKey] as? String diff --git a/SportsTime/Core/Models/Local/CanonicalModels.swift b/SportsTime/Core/Models/Local/CanonicalModels.swift index ae2fa8d..90b3cde 100644 --- a/SportsTime/Core/Models/Local/CanonicalModels.swift +++ b/SportsTime/Core/Models/Local/CanonicalModels.swift @@ -564,4 +564,5 @@ nonisolated enum BundledDataTimestamp { static let stadiums = ISO8601DateFormatter().date(from: "2026-01-08T00:00:00Z") ?? Date() static let games = ISO8601DateFormatter().date(from: "2026-01-08T00:00:00Z") ?? Date() static let leagueStructure = ISO8601DateFormatter().date(from: "2026-01-08T00:00:00Z") ?? Date() + static let sports = ISO8601DateFormatter().date(from: "2026-01-08T00:00:00Z") ?? Date() } diff --git a/SportsTime/Core/Services/BootstrapService.swift b/SportsTime/Core/Services/BootstrapService.swift index f108d4b..0b98d86 100644 --- a/SportsTime/Core/Services/BootstrapService.swift +++ b/SportsTime/Core/Services/BootstrapService.swift @@ -33,13 +33,11 @@ actor BootstrapService { // MARK: - JSON Models (match bundled JSON structure) - // MARK: - Canonical JSON Models (from canonicalization pipeline) - private struct JSONCanonicalStadium: Codable { let canonical_id: String let name: String let city: String - let state: String + let state: String? let latitude: Double let longitude: Double let capacity: Int @@ -67,12 +65,12 @@ actor BootstrapService { let canonical_id: String let sport: String let season: String - let game_datetime_utc: String? // ISO 8601 format (new canonical format) - let date: String? // Legacy format (deprecated) - let time: String? // Legacy format (deprecated) + let game_datetime_utc: String? // ISO 8601 format + let date: String? // Fallback date+time format + let time: String? // Fallback date+time format let home_team_canonical_id: String let away_team_canonical_id: String - let stadium_canonical_id: String + let stadium_canonical_id: String? let is_playoff: Bool let broadcast_info: String? } @@ -84,38 +82,6 @@ actor BootstrapService { let valid_until: String? } - // MARK: - Legacy JSON Models (for backward compatibility) - - private struct JSONStadium: Codable { - let id: String - let name: String - let city: String - let state: String - let latitude: Double - let longitude: Double - let capacity: Int - let sport: String - let team_abbrevs: [String] - let source: String - let year_opened: Int? - } - - private struct JSONGame: Codable { - let id: String - let sport: String - let season: String - let date: String - let time: String? - let home_team: String - let away_team: String - let home_team_abbrev: String - let away_team_abbrev: String - let venue: String - let source: String - let is_playoff: Bool - let broadcast: String? - } - private struct JSONLeagueStructure: Codable { let id: String let sport: String @@ -135,13 +101,21 @@ actor BootstrapService { let valid_until: String? } + private struct JSONCanonicalSport: Codable { + let sport_id: String + let abbreviation: String + let display_name: String + let icon_name: String + let color_hex: String + let season_start_month: Int + let season_end_month: Int + let is_active: Bool + } + // MARK: - Public Methods /// Bootstrap canonical data from bundled JSON if not already done. /// This is the main entry point called at app launch. - /// - /// Prefers new canonical format files (*_canonical.json) from the pipeline, - /// falls back to legacy format for backward compatibility. @MainActor func bootstrapIfNeeded(context: ModelContext) async throws { let syncState = SyncState.current(in: context) @@ -151,6 +125,9 @@ actor BootstrapService { return } + // Clear any partial bootstrap data from a previous failed attempt + try clearCanonicalData(context: context) + // Bootstrap in dependency order: // 1. Stadiums (no dependencies) // 2. Stadium aliases (depends on stadiums) @@ -165,6 +142,7 @@ actor BootstrapService { try await bootstrapTeams(context: context) try await bootstrapTeamAliases(context: context) try await bootstrapGames(context: context) + try await bootstrapSports(context: context) // Mark bootstrap complete syncState.bootstrapCompleted = true @@ -182,18 +160,10 @@ actor BootstrapService { @MainActor private func bootstrapStadiums(context: ModelContext) async throws { - // Try canonical format first, fall back to legacy - if let url = Bundle.main.url(forResource: "stadiums_canonical", withExtension: "json") { - try await bootstrapStadiumsCanonical(url: url, context: context) - } else if let url = Bundle.main.url(forResource: "stadiums", withExtension: "json") { - try await bootstrapStadiumsLegacy(url: url, context: context) - } else { - throw BootstrapError.bundledResourceNotFound("stadiums_canonical.json or stadiums.json") + guard let url = Bundle.main.url(forResource: "stadiums_canonical", withExtension: "json") else { + throw BootstrapError.bundledResourceNotFound("stadiums_canonical.json") } - } - @MainActor - private func bootstrapStadiumsCanonical(url: URL, context: ModelContext) async throws { let data: Data let stadiums: [JSONCanonicalStadium] @@ -212,7 +182,7 @@ actor BootstrapService { source: .bundled, name: jsonStadium.name, city: jsonStadium.city, - state: jsonStadium.state.isEmpty ? stateFromCity(jsonStadium.city) : jsonStadium.state, + state: (jsonStadium.state?.isEmpty ?? true) ? stateFromCity(jsonStadium.city) : jsonStadium.state!, latitude: jsonStadium.latitude, longitude: jsonStadium.longitude, capacity: jsonStadium.capacity, @@ -225,52 +195,9 @@ actor BootstrapService { } } - @MainActor - private func bootstrapStadiumsLegacy(url: URL, context: ModelContext) async throws { - let data: Data - let stadiums: [JSONStadium] - - do { - data = try Data(contentsOf: url) - stadiums = try JSONDecoder().decode([JSONStadium].self, from: data) - } catch { - throw BootstrapError.jsonDecodingFailed("stadiums.json", error) - } - - for jsonStadium in stadiums { - let canonical = CanonicalStadium( - canonicalId: jsonStadium.id, - schemaVersion: SchemaVersion.current, - lastModified: BundledDataTimestamp.stadiums, - source: .bundled, - name: jsonStadium.name, - city: jsonStadium.city, - state: jsonStadium.state.isEmpty ? stateFromCity(jsonStadium.city) : jsonStadium.state, - latitude: jsonStadium.latitude, - longitude: jsonStadium.longitude, - capacity: jsonStadium.capacity, - yearOpened: jsonStadium.year_opened, - sport: jsonStadium.sport - ) - context.insert(canonical) - - // Legacy format: create stadium alias for the current name - let alias = StadiumAlias( - aliasName: jsonStadium.name, - stadiumCanonicalId: jsonStadium.id, - schemaVersion: SchemaVersion.current, - lastModified: BundledDataTimestamp.stadiums - ) - alias.stadium = canonical - context.insert(alias) - } - } - @MainActor private func bootstrapStadiumAliases(context: ModelContext) async throws { - // Stadium aliases are loaded from stadium_aliases.json (from canonical pipeline) guard let url = Bundle.main.url(forResource: "stadium_aliases", withExtension: "json") else { - // Aliases are optional - legacy format creates them inline return } @@ -313,10 +240,7 @@ actor BootstrapService { @MainActor private func bootstrapLeagueStructure(context: ModelContext) async throws { - // Load league structure if file exists guard let url = Bundle.main.url(forResource: "league_structure", withExtension: "json") else { - // League structure is optional for MVP - create basic structure from known sports - createDefaultLeagueStructure(context: context) return } @@ -356,17 +280,10 @@ actor BootstrapService { @MainActor private func bootstrapTeams(context: ModelContext) async throws { - // Try canonical format first, fall back to legacy extraction from games - if let url = Bundle.main.url(forResource: "teams_canonical", withExtension: "json") { - try await bootstrapTeamsCanonical(url: url, context: context) - } else { - // Legacy: Teams will be extracted from games during bootstrapGames - // This path is deprecated but maintained for backward compatibility + guard let url = Bundle.main.url(forResource: "teams_canonical", withExtension: "json") else { + throw BootstrapError.bundledResourceNotFound("teams_canonical.json") } - } - @MainActor - private func bootstrapTeamsCanonical(url: URL, context: ModelContext) async throws { let data: Data let teams: [JSONCanonicalTeam] @@ -395,180 +312,8 @@ actor BootstrapService { } } - @MainActor - private func bootstrapGames(context: ModelContext) async throws { - // Try canonical format first, fall back to legacy - if let url = Bundle.main.url(forResource: "games_canonical", withExtension: "json") { - try await bootstrapGamesCanonical(url: url, context: context) - } else if let url = Bundle.main.url(forResource: "games", withExtension: "json") { - try await bootstrapGamesLegacy(url: url, context: context) - } else { - throw BootstrapError.bundledResourceNotFound("games_canonical.json or games.json") - } - } - - @MainActor - private func bootstrapGamesCanonical(url: URL, context: ModelContext) async throws { - let data: Data - let games: [JSONCanonicalGame] - - do { - data = try Data(contentsOf: url) - games = try JSONDecoder().decode([JSONCanonicalGame].self, from: data) - } catch { - throw BootstrapError.jsonDecodingFailed("games_canonical.json", error) - } - - var seenGameIds = Set() - - for jsonGame in games { - // Deduplicate - guard !seenGameIds.contains(jsonGame.canonical_id) else { continue } - seenGameIds.insert(jsonGame.canonical_id) - - // Parse datetime: prefer ISO 8601 format, fall back to legacy date+time - let dateTime: Date? - if let iso8601String = jsonGame.game_datetime_utc { - dateTime = parseISO8601(iso8601String) - } else if let date = jsonGame.date { - dateTime = parseDateTime(date: date, time: jsonGame.time ?? "7:00p") - } else { - dateTime = nil - } - - guard let dateTime else { continue } - - let game = CanonicalGame( - canonicalId: jsonGame.canonical_id, - schemaVersion: SchemaVersion.current, - lastModified: BundledDataTimestamp.games, - source: .bundled, - homeTeamCanonicalId: jsonGame.home_team_canonical_id, - awayTeamCanonicalId: jsonGame.away_team_canonical_id, - stadiumCanonicalId: jsonGame.stadium_canonical_id, - dateTime: dateTime, - sport: jsonGame.sport, - season: jsonGame.season, - isPlayoff: jsonGame.is_playoff, - broadcastInfo: jsonGame.broadcast_info - ) - context.insert(game) - } - } - - @MainActor - private func bootstrapGamesLegacy(url: URL, context: ModelContext) async throws { - let data: Data - let games: [JSONGame] - - do { - data = try Data(contentsOf: url) - games = try JSONDecoder().decode([JSONGame].self, from: data) - } catch { - throw BootstrapError.jsonDecodingFailed("games.json", error) - } - - // Build stadium lookup for legacy venue matching - let stadiumDescriptor = FetchDescriptor() - let canonicalStadiums = (try? context.fetch(stadiumDescriptor)) ?? [] - var stadiumsByVenue: [String: CanonicalStadium] = [:] - for stadium in canonicalStadiums { - stadiumsByVenue[stadium.name.lowercased()] = stadium - } - - // Check if teams already exist (from teams_canonical.json) - let teamDescriptor = FetchDescriptor() - let existingTeams = (try? context.fetch(teamDescriptor)) ?? [] - var teamsCreated: [String: CanonicalTeam] = Dictionary( - uniqueKeysWithValues: existingTeams.map { ($0.canonicalId, $0) } - ) - let teamsAlreadyLoaded = !existingTeams.isEmpty - - var seenGameIds = Set() - - for jsonGame in games { - let sport = jsonGame.sport.uppercased() - - // Legacy team extraction (only if teams not already loaded) - if !teamsAlreadyLoaded { - let homeTeamCanonicalId = "team_\(sport.lowercased())_\(jsonGame.home_team_abbrev.lowercased())" - if teamsCreated[homeTeamCanonicalId] == nil { - let stadiumCanonicalId = findStadiumCanonicalId( - venue: jsonGame.venue, - sport: sport, - stadiumsByVenue: stadiumsByVenue - ) - - let team = CanonicalTeam( - canonicalId: homeTeamCanonicalId, - schemaVersion: SchemaVersion.current, - lastModified: BundledDataTimestamp.games, - source: .bundled, - name: extractTeamName(from: jsonGame.home_team), - abbreviation: jsonGame.home_team_abbrev, - sport: sport, - city: extractCity(from: jsonGame.home_team), - stadiumCanonicalId: stadiumCanonicalId - ) - context.insert(team) - teamsCreated[homeTeamCanonicalId] = team - } - - let awayTeamCanonicalId = "team_\(sport.lowercased())_\(jsonGame.away_team_abbrev.lowercased())" - if teamsCreated[awayTeamCanonicalId] == nil { - let team = CanonicalTeam( - canonicalId: awayTeamCanonicalId, - schemaVersion: SchemaVersion.current, - lastModified: BundledDataTimestamp.games, - source: .bundled, - name: extractTeamName(from: jsonGame.away_team), - abbreviation: jsonGame.away_team_abbrev, - sport: sport, - city: extractCity(from: jsonGame.away_team), - stadiumCanonicalId: "unknown" - ) - context.insert(team) - teamsCreated[awayTeamCanonicalId] = team - } - } - - // Deduplicate games - guard !seenGameIds.contains(jsonGame.id) else { continue } - seenGameIds.insert(jsonGame.id) - - guard let dateTime = parseDateTime(date: jsonGame.date, time: jsonGame.time ?? "7:00p") else { - continue - } - - let homeTeamCanonicalId = "team_\(sport.lowercased())_\(jsonGame.home_team_abbrev.lowercased())" - let awayTeamCanonicalId = "team_\(sport.lowercased())_\(jsonGame.away_team_abbrev.lowercased())" - let stadiumCanonicalId = findStadiumCanonicalId( - venue: jsonGame.venue, - sport: sport, - stadiumsByVenue: stadiumsByVenue - ) - - let game = CanonicalGame( - canonicalId: jsonGame.id, - schemaVersion: SchemaVersion.current, - lastModified: BundledDataTimestamp.games, - source: .bundled, - homeTeamCanonicalId: homeTeamCanonicalId, - awayTeamCanonicalId: awayTeamCanonicalId, - stadiumCanonicalId: stadiumCanonicalId, - dateTime: dateTime, - sport: sport, - season: jsonGame.season, - isPlayoff: jsonGame.is_playoff, - broadcastInfo: jsonGame.broadcast - ) - context.insert(game) - } - } - @MainActor private func bootstrapTeamAliases(context: ModelContext) async throws { - // Team aliases are optional - load if file exists guard let url = Bundle.main.url(forResource: "team_aliases", withExtension: "json") else { return } @@ -583,7 +328,8 @@ actor BootstrapService { throw BootstrapError.jsonDecodingFailed("team_aliases.json", error) } - let dateFormatter = ISO8601DateFormatter() + let dateFormatter = DateFormatter() + dateFormatter.dateFormat = "yyyy-MM-dd" for jsonAlias in aliases { let aliasType: TeamAliasType @@ -608,88 +354,107 @@ actor BootstrapService { } } + @MainActor + private func bootstrapGames(context: ModelContext) async throws { + guard let url = Bundle.main.url(forResource: "games_canonical", withExtension: "json") else { + throw BootstrapError.bundledResourceNotFound("games_canonical.json") + } + + let data: Data + let games: [JSONCanonicalGame] + + do { + data = try Data(contentsOf: url) + games = try JSONDecoder().decode([JSONCanonicalGame].self, from: data) + } catch { + throw BootstrapError.jsonDecodingFailed("games_canonical.json", error) + } + + var seenGameIds = Set() + + for jsonGame in games { + // Deduplicate + guard !seenGameIds.contains(jsonGame.canonical_id) else { continue } + seenGameIds.insert(jsonGame.canonical_id) + + // Parse datetime: prefer ISO 8601 format, fall back to date+time + let dateTime: Date? + if let iso8601String = jsonGame.game_datetime_utc { + dateTime = parseISO8601(iso8601String) + } else if let date = jsonGame.date { + dateTime = parseDateTime(date: date, time: jsonGame.time ?? "7:00p") + } else { + dateTime = nil + } + + guard let dateTime else { continue } + + let game = CanonicalGame( + canonicalId: jsonGame.canonical_id, + schemaVersion: SchemaVersion.current, + lastModified: BundledDataTimestamp.games, + source: .bundled, + homeTeamCanonicalId: jsonGame.home_team_canonical_id, + awayTeamCanonicalId: jsonGame.away_team_canonical_id, + stadiumCanonicalId: jsonGame.stadium_canonical_id ?? "", + dateTime: dateTime, + sport: jsonGame.sport, + season: jsonGame.season, + isPlayoff: jsonGame.is_playoff, + broadcastInfo: jsonGame.broadcast_info + ) + context.insert(game) + } + } + + @MainActor + private func bootstrapSports(context: ModelContext) async throws { + guard let url = Bundle.main.url(forResource: "sports_canonical", withExtension: "json") else { + return + } + + let data: Data + let sports: [JSONCanonicalSport] + + do { + data = try Data(contentsOf: url) + sports = try JSONDecoder().decode([JSONCanonicalSport].self, from: data) + } catch { + throw BootstrapError.jsonDecodingFailed("sports_canonical.json", error) + } + + for jsonSport in sports { + let sport = CanonicalSport( + id: jsonSport.sport_id, + abbreviation: jsonSport.abbreviation, + displayName: jsonSport.display_name, + iconName: jsonSport.icon_name, + colorHex: jsonSport.color_hex, + seasonStartMonth: jsonSport.season_start_month, + seasonEndMonth: jsonSport.season_end_month, + isActive: jsonSport.is_active, + lastModified: BundledDataTimestamp.sports, + schemaVersion: SchemaVersion.current, + source: .bundled + ) + context.insert(sport) + } + } + // MARK: - Helpers @MainActor - private func createDefaultLeagueStructure(context: ModelContext) { - // Create minimal league structure for supported sports - let timestamp = BundledDataTimestamp.leagueStructure - - // MLB - context.insert(LeagueStructureModel( - id: "mlb_league", - sport: "MLB", - structureType: .league, - name: "Major League Baseball", - abbreviation: "MLB", - displayOrder: 0, - schemaVersion: SchemaVersion.current, - lastModified: timestamp - )) - - // NBA - context.insert(LeagueStructureModel( - id: "nba_league", - sport: "NBA", - structureType: .league, - name: "National Basketball Association", - abbreviation: "NBA", - displayOrder: 0, - schemaVersion: SchemaVersion.current, - lastModified: timestamp - )) - - // NHL - context.insert(LeagueStructureModel( - id: "nhl_league", - sport: "NHL", - structureType: .league, - name: "National Hockey League", - abbreviation: "NHL", - displayOrder: 0, - schemaVersion: SchemaVersion.current, - lastModified: timestamp - )) - } - - // Venue name aliases for stadiums that changed names - private static let venueAliases: [String: String] = [ - "daikin park": "minute maid park", - "rate field": "guaranteed rate field", - "george m. steinbrenner field": "tropicana field", - "loandepot park": "loandepot park", - ] - - nonisolated private func findStadiumCanonicalId( - venue: String, - sport: String, - stadiumsByVenue: [String: CanonicalStadium] - ) -> String { - var venueLower = venue.lowercased() - - // Check for known aliases - if let aliasedName = Self.venueAliases[venueLower] { - venueLower = aliasedName - } - - // Try exact match - if let stadium = stadiumsByVenue[venueLower] { - return stadium.canonicalId - } - - // Try partial match - for (name, stadium) in stadiumsByVenue { - if name.contains(venueLower) || venueLower.contains(name) { - return stadium.canonicalId - } - } - - // Generate deterministic ID for unknown venues - return "venue_unknown_\(venue.lowercased().replacingOccurrences(of: " ", with: "_"))" + private func clearCanonicalData(context: ModelContext) throws { + try context.delete(model: CanonicalStadium.self) + try context.delete(model: StadiumAlias.self) + try context.delete(model: LeagueStructureModel.self) + try context.delete(model: CanonicalTeam.self) + try context.delete(model: TeamAlias.self) + try context.delete(model: CanonicalGame.self) + try context.delete(model: CanonicalSport.self) } nonisolated private func parseISO8601(_ string: String) -> Date? { - // Handle ISO 8601 format: "2026-03-01T18:05:00Z" let formatter = ISO8601DateFormatter() formatter.formatOptions = [.withInternetDateTime] return formatter.date(from: string) @@ -727,34 +492,6 @@ actor BootstrapService { return Calendar.current.date(bySettingHour: hour, minute: minute, second: 0, of: dateOnly) } - nonisolated private func extractTeamName(from fullName: String) -> String { - // "Boston Celtics" -> "Celtics" - let parts = fullName.split(separator: " ") - if parts.count > 1 { - return parts.dropFirst().joined(separator: " ") - } - return fullName - } - - nonisolated private func extractCity(from fullName: String) -> String { - // "Boston Celtics" -> "Boston" - // "New York Knicks" -> "New York" - let knownCities = [ - "New York", "Los Angeles", "San Francisco", "San Diego", "San Antonio", - "New Orleans", "Oklahoma City", "Salt Lake City", "Kansas City", - "St. Louis", "St Louis" - ] - - for city in knownCities { - if fullName.hasPrefix(city) { - return city - } - } - - // Default: first word - return String(fullName.split(separator: " ").first ?? Substring(fullName)) - } - nonisolated private func stateFromCity(_ city: String) -> String { let cityToState: [String: String] = [ "Atlanta": "GA", "Boston": "MA", "Brooklyn": "NY", "Charlotte": "NC", diff --git a/SportsTime/Core/Services/CanonicalSyncService.swift b/SportsTime/Core/Services/CanonicalSyncService.swift index bedbde0..1043f72 100644 --- a/SportsTime/Core/Services/CanonicalSyncService.swift +++ b/SportsTime/Core/Services/CanonicalSyncService.swift @@ -644,6 +644,8 @@ actor CanonicalSyncService { existing.logoURL = remote.logoURL?.absoluteString existing.primaryColor = remote.primaryColor existing.secondaryColor = remote.secondaryColor + existing.conferenceId = remote.conferenceId + existing.divisionId = remote.divisionId existing.source = .cloudKit existing.lastModified = Date() @@ -667,7 +669,9 @@ actor CanonicalSyncService { stadiumCanonicalId: stadiumCanonicalId, logoURL: remote.logoURL?.absoluteString, primaryColor: remote.primaryColor, - secondaryColor: remote.secondaryColor + secondaryColor: remote.secondaryColor, + conferenceId: remote.conferenceId, + divisionId: remote.divisionId ) context.insert(canonical) return .applied diff --git a/SportsTime/Core/Services/CloudKitService.swift b/SportsTime/Core/Services/CloudKitService.swift index 326db06..3423c18 100644 --- a/SportsTime/Core/Services/CloudKitService.swift +++ b/SportsTime/Core/Services/CloudKitService.swift @@ -598,11 +598,27 @@ actor CloudKitService { try await publicDatabase.save(subscription) } + func subscribeToSportUpdates() async throws { + let subscription = CKQuerySubscription( + recordType: CKRecordType.sport, + predicate: NSPredicate(value: true), + subscriptionID: "sport-updates", + options: [.firesOnRecordCreation, .firesOnRecordUpdate] + ) + + let notification = CKSubscription.NotificationInfo() + notification.shouldSendContentAvailable = true + subscription.notificationInfo = notification + + try await publicDatabase.save(subscription) + } + /// Subscribe to all canonical data updates func subscribeToAllUpdates() async throws { try await subscribeToScheduleUpdates() try await subscribeToLeagueStructureUpdates() try await subscribeToTeamAliasUpdates() try await subscribeToStadiumAliasUpdates() + try await subscribeToSportUpdates() } } diff --git a/SportsTime/Core/Theme/DemoMode.swift b/SportsTime/Core/Theme/DemoMode.swift new file mode 100644 index 0000000..4d5f62e --- /dev/null +++ b/SportsTime/Core/Theme/DemoMode.swift @@ -0,0 +1,71 @@ +// +// DemoMode.swift +// SportsTime +// +// Environment key and configuration for automated demo mode. +// When enabled, UI elements auto-select as they scroll into view. +// + +import SwiftUI + +// MARK: - Demo Mode Environment Key + +private struct DemoModeKey: EnvironmentKey { + static let defaultValue = false +} + +extension EnvironmentValues { + var isDemoMode: Bool { + get { self[DemoModeKey.self] } + set { self[DemoModeKey.self] = newValue } + } +} + +// MARK: - Demo Mode Configuration + +/// Configuration for the demo flow +enum DemoConfig { + /// Delay before auto-selecting an item (seconds) + static let selectionDelay: Double = 0.5 + + /// Demo mode date selections + static let demoStartDate: Date = { + var components = DateComponents() + components.year = 2026 + components.month = 6 + components.day = 11 + return Calendar.current.date(from: components) ?? Date() + }() + + static let demoEndDate: Date = { + var components = DateComponents() + components.year = 2026 + components.month = 6 + components.day = 16 + return Calendar.current.date(from: components) ?? Date() + }() + + /// Demo mode planning mode selection + static let demoPlanningMode: PlanningMode = .dateRange + + /// Demo mode sport selection + static let demoSport: Sport = .mlb + + /// Demo mode region selection + static let demoRegion: Region = .central + + /// Demo mode sort option + static let demoSortOption: TripSortOption = .mostGames + + /// Demo mode trip index to select (0-indexed) + static let demoTripIndex: Int = 3 +} + +// MARK: - Demo Mode Launch Argument + +extension ProcessInfo { + /// Check if app was launched in demo mode + static var isDemoMode: Bool { + ProcessInfo.processInfo.arguments.contains("-DemoMode") + } +} diff --git a/SportsTime/Features/Home/Views/HomeView.swift b/SportsTime/Features/Home/Views/HomeView.swift index 01409dc..1d73705 100644 --- a/SportsTime/Features/Home/Views/HomeView.swift +++ b/SportsTime/Features/Home/Views/HomeView.swift @@ -93,6 +93,7 @@ struct HomeView: View { .tint(Theme.warmOrange) .sheet(isPresented: $showNewTrip) { TripWizardView() + .environment(\.isDemoMode, ProcessInfo.isDemoMode) } .onChange(of: showNewTrip) { _, isShowing in if !isShowing { diff --git a/SportsTime/Features/Home/Views/Variants/Classic/HomeContent_Classic.swift b/SportsTime/Features/Home/Views/Variants/Classic/HomeContent_Classic.swift index 528beba..81e52b9 100644 --- a/SportsTime/Features/Home/Views/Variants/Classic/HomeContent_Classic.swift +++ b/SportsTime/Features/Home/Views/Variants/Classic/HomeContent_Classic.swift @@ -80,6 +80,7 @@ struct HomeContent_Classic: View { .foregroundStyle(.white) .clipShape(RoundedRectangle(cornerRadius: Theme.CornerRadius.medium)) } + .accessibilityIdentifier("home.startPlanningButton") .pressableStyle() .glowEffect(color: Theme.warmOrange, radius: 12) } diff --git a/SportsTime/Features/Trip/Views/RegionMapSelector.swift b/SportsTime/Features/Trip/Views/RegionMapSelector.swift index cb48b17..d68e754 100644 --- a/SportsTime/Features/Trip/Views/RegionMapSelector.swift +++ b/SportsTime/Features/Trip/Views/RegionMapSelector.swift @@ -19,6 +19,8 @@ struct RegionMapSelector: View { let onToggle: (Region) -> Void @Environment(\.colorScheme) private var colorScheme + @Environment(\.isDemoMode) private var isDemoMode + @State private var hasAppliedDemoSelection = false // Camera position centered on continental US @State private var cameraPosition: MapCameraPosition = .camera( @@ -33,29 +35,44 @@ struct RegionMapSelector: View { var body: some View { VStack(spacing: Theme.Spacing.sm) { // Map with region overlays - MapReader { proxy in - Map(position: $cameraPosition, interactionModes: []) { - // West region polygon - MapPolygon(coordinates: RegionCoordinates.west) - .foregroundStyle(fillColor(for: .west)) - .stroke(strokeColor(for: .west), lineWidth: strokeWidth(for: .west)) + ZStack { + MapReader { proxy in + Map(position: $cameraPosition, interactionModes: []) { + // West region polygon + MapPolygon(coordinates: RegionCoordinates.west) + .foregroundStyle(fillColor(for: .west)) + .stroke(strokeColor(for: .west), lineWidth: strokeWidth(for: .west)) - // Central region polygon - MapPolygon(coordinates: RegionCoordinates.central) - .foregroundStyle(fillColor(for: .central)) - .stroke(strokeColor(for: .central), lineWidth: strokeWidth(for: .central)) + // Central region polygon + MapPolygon(coordinates: RegionCoordinates.central) + .foregroundStyle(fillColor(for: .central)) + .stroke(strokeColor(for: .central), lineWidth: strokeWidth(for: .central)) - // East region polygon - MapPolygon(coordinates: RegionCoordinates.east) - .foregroundStyle(fillColor(for: .east)) - .stroke(strokeColor(for: .east), lineWidth: strokeWidth(for: .east)) - } - .mapStyle(.standard(elevation: .flat, pointsOfInterest: .excludingAll)) - .onTapGesture { location in - if let coordinate = proxy.convert(location, from: .local) { - let tappedRegion = regionForCoordinate(coordinate) - onToggle(tappedRegion) + // East region polygon + MapPolygon(coordinates: RegionCoordinates.east) + .foregroundStyle(fillColor(for: .east)) + .stroke(strokeColor(for: .east), lineWidth: strokeWidth(for: .east)) } + .mapStyle(.standard(elevation: .flat, pointsOfInterest: .excludingAll)) + .onTapGesture { location in + if let coordinate = proxy.convert(location, from: .local) { + let tappedRegion = regionForCoordinate(coordinate) + onToggle(tappedRegion) + } + } + } + + // Invisible button overlays for UI testing accessibility + HStack(spacing: 0) { + Button { onToggle(.west) } label: { Color.clear } + .accessibilityIdentifier("wizard.regions.west") + .frame(maxWidth: .infinity) + Button { onToggle(.central) } label: { Color.clear } + .accessibilityIdentifier("wizard.regions.central") + .frame(maxWidth: .infinity) + Button { onToggle(.east) } label: { Color.clear } + .accessibilityIdentifier("wizard.regions.east") + .frame(maxWidth: .infinity) } } .frame(height: 160) @@ -71,6 +88,14 @@ struct RegionMapSelector: View { // Selection footer selectionFooter } + .onAppear { + if isDemoMode && !hasAppliedDemoSelection && selectedRegions.isEmpty { + hasAppliedDemoSelection = true + DispatchQueue.main.asyncAfter(deadline: .now() + DemoConfig.selectionDelay) { + onToggle(DemoConfig.demoRegion) + } + } + } } // MARK: - Coordinate to Region diff --git a/SportsTime/Features/Trip/Views/TripDetailView.swift b/SportsTime/Features/Trip/Views/TripDetailView.swift index 4a8c18a..208c3d6 100644 --- a/SportsTime/Features/Trip/Views/TripDetailView.swift +++ b/SportsTime/Features/Trip/Views/TripDetailView.swift @@ -12,6 +12,7 @@ import UniformTypeIdentifiers struct TripDetailView: View { @Environment(\.modelContext) private var modelContext @Environment(\.colorScheme) private var colorScheme + @Environment(\.isDemoMode) private var isDemoMode let trip: Trip private let providedGames: [String: RichGame]? @@ -33,6 +34,7 @@ struct TripDetailView: View { @State private var isLoadingRoutes = false @State private var loadedGames: [String: RichGame] = [:] @State private var isLoadingGames = false + @State private var hasAppliedDemoSelection = false // Itinerary items state @State private var itineraryItems: [ItineraryItem] = [] @@ -113,7 +115,18 @@ struct TripDetailView: View { } message: { Text("This trip has \(multiRouteChunks.flatMap { $0 }.count) stops, which exceeds Apple Maps' limit of 16. Open the route in parts?") } - .onAppear { checkIfSaved() } + .onAppear { + checkIfSaved() + // Demo mode: auto-favorite the trip + if isDemoMode && !hasAppliedDemoSelection && !isSaved { + hasAppliedDemoSelection = true + DispatchQueue.main.asyncAfter(deadline: .now() + DemoConfig.selectionDelay + 0.5) { + if !isSaved { + saveTrip() + } + } + } + } .task { await loadGamesIfNeeded() if allowCustomItems { @@ -348,6 +361,7 @@ struct TripDetailView: View { .clipShape(Circle()) .shadow(color: .black.opacity(0.2), radius: 4, y: 2) } + .accessibilityIdentifier("tripDetail.favoriteButton") .padding(.top, 12) .padding(.trailing, 12) } diff --git a/SportsTime/Features/Trip/Views/TripOptionsView.swift b/SportsTime/Features/Trip/Views/TripOptionsView.swift index 6cf12a7..a4289f6 100644 --- a/SportsTime/Features/Trip/Views/TripOptionsView.swift +++ b/SportsTime/Features/Trip/Views/TripOptionsView.swift @@ -143,6 +143,8 @@ struct TripOptionsView: View { @State private var citiesFilter: CitiesFilter = .noLimit @State private var paceFilter: TripPaceFilter = .all @Environment(\.colorScheme) private var colorScheme + @Environment(\.isDemoMode) private var isDemoMode + @State private var hasAppliedDemoSelection = false // MARK: - Computed Properties @@ -272,7 +274,7 @@ struct TripOptionsView: View { } // Options in this group - ForEach(group.options) { option in + ForEach(Array(group.options.enumerated()), id: \.element.id) { index, option in TripOptionCard( option: option, games: games, @@ -281,6 +283,7 @@ struct TripOptionsView: View { showTripDetail = true } ) + .accessibilityIdentifier("tripOptions.trip.\(index)") .padding(.horizontal, Theme.Spacing.md) } } @@ -300,6 +303,26 @@ struct TripOptionsView: View { selectedTrip = nil } } + .onAppear { + if isDemoMode && !hasAppliedDemoSelection { + hasAppliedDemoSelection = true + // Auto-select "Most Games" sort after a delay + DispatchQueue.main.asyncAfter(deadline: .now() + DemoConfig.selectionDelay) { + withAnimation(.easeInOut(duration: 0.3)) { + sortOption = DemoConfig.demoSortOption + } + } + // Then navigate to the 4th trip (index 3) + DispatchQueue.main.asyncAfter(deadline: .now() + DemoConfig.selectionDelay + 0.8) { + let sortedOptions = filteredAndSortedOptions + if sortedOptions.count > DemoConfig.demoTripIndex { + let option = sortedOptions[DemoConfig.demoTripIndex] + selectedTrip = convertToTrip(option) + showTripDetail = true + } + } + } + } } private var sortPicker: some View { @@ -312,6 +335,7 @@ struct TripOptionsView: View { } label: { Label(option.rawValue, systemImage: option.icon) } + .accessibilityIdentifier("tripOptions.sortOption.\(option.rawValue.lowercased().replacingOccurrences(of: " ", with: ""))") } } label: { HStack(spacing: 8) { @@ -332,6 +356,7 @@ struct TripOptionsView: View { .strokeBorder(Theme.textMuted(colorScheme).opacity(0.2), lineWidth: 1) ) } + .accessibilityIdentifier("tripOptions.sortDropdown") } // MARK: - Filters Section diff --git a/SportsTime/Features/Trip/Views/Wizard/Steps/DateRangePicker.swift b/SportsTime/Features/Trip/Views/Wizard/Steps/DateRangePicker.swift index 8b54d76..976aedc 100644 --- a/SportsTime/Features/Trip/Views/Wizard/Steps/DateRangePicker.swift +++ b/SportsTime/Features/Trip/Views/Wizard/Steps/DateRangePicker.swift @@ -11,9 +11,11 @@ struct DateRangePicker: View { @Binding var startDate: Date @Binding var endDate: Date @Environment(\.colorScheme) private var colorScheme + @Environment(\.isDemoMode) private var isDemoMode @State private var displayedMonth: Date = Date() @State private var selectionState: SelectionState = .none + @State private var hasAppliedDemoSelection = false enum SelectionState { case none @@ -89,6 +91,24 @@ struct DateRangePicker: View { if endDate > startDate { selectionState = .complete } + + // Demo mode: auto-select dates + if isDemoMode && !hasAppliedDemoSelection { + hasAppliedDemoSelection = true + DispatchQueue.main.asyncAfter(deadline: .now() + DemoConfig.selectionDelay) { + withAnimation(.easeInOut(duration: 0.3)) { + // Navigate to demo month + displayedMonth = DemoConfig.demoStartDate + } + } + DispatchQueue.main.asyncAfter(deadline: .now() + DemoConfig.selectionDelay + 0.5) { + withAnimation(.easeInOut(duration: 0.3)) { + startDate = DemoConfig.demoStartDate + endDate = DemoConfig.demoEndDate + selectionState = .complete + } + } + } } .onChange(of: startDate) { oldValue, newValue in // Navigate calendar to show the new month when startDate changes externally @@ -159,12 +179,14 @@ struct DateRangePicker: View { .background(Theme.warmOrange.opacity(0.15)) .clipShape(Circle()) } + .accessibilityIdentifier("wizard.dates.previousMonth") Spacer() Text(monthYearString) .font(.headline) .foregroundStyle(Theme.textPrimary(colorScheme)) + .accessibilityIdentifier("wizard.dates.monthLabel") Spacer() @@ -180,6 +202,7 @@ struct DateRangePicker: View { .background(Theme.warmOrange.opacity(0.15)) .clipShape(Circle()) } + .accessibilityIdentifier("wizard.dates.nextMonth") } } @@ -287,6 +310,12 @@ struct DayCell: View { calendar.startOfDay(for: date) < calendar.startOfDay(for: Date()) } + private var accessibilityId: String { + let formatter = DateFormatter() + formatter.dateFormat = "yyyy-MM-dd" + return "wizard.dates.day.\(formatter.string(from: date))" + } + var body: some View { Button(action: onTap) { ZStack { @@ -330,6 +359,7 @@ struct DayCell: View { .frame(width: 36, height: 36) } } + .accessibilityIdentifier(accessibilityId) .buttonStyle(.plain) .disabled(isPast) .frame(height: 40) diff --git a/SportsTime/Features/Trip/Views/Wizard/Steps/PlanningModeStep.swift b/SportsTime/Features/Trip/Views/Wizard/Steps/PlanningModeStep.swift index 14c2abf..0a20a7b 100644 --- a/SportsTime/Features/Trip/Views/Wizard/Steps/PlanningModeStep.swift +++ b/SportsTime/Features/Trip/Views/Wizard/Steps/PlanningModeStep.swift @@ -9,6 +9,7 @@ import SwiftUI struct PlanningModeStep: View { @Environment(\.colorScheme) private var colorScheme + @Environment(\.isDemoMode) private var isDemoMode @Binding var selection: PlanningMode? var body: some View { @@ -35,6 +36,15 @@ struct PlanningModeStep: View { RoundedRectangle(cornerRadius: Theme.CornerRadius.large) .stroke(Theme.surfaceGlow(colorScheme), lineWidth: 1) } + .onAppear { + if isDemoMode && selection == nil { + DispatchQueue.main.asyncAfter(deadline: .now() + DemoConfig.selectionDelay) { + withAnimation(.easeInOut(duration: 0.3)) { + selection = DemoConfig.demoPlanningMode + } + } + } + } } } @@ -80,6 +90,7 @@ private struct WizardModeCard: View { .stroke(isSelected ? Theme.warmOrange : Theme.textMuted(colorScheme).opacity(0.3), lineWidth: isSelected ? 2 : 1) ) } + .accessibilityIdentifier("wizard.planningMode.\(mode.rawValue)") .buttonStyle(.plain) } } diff --git a/SportsTime/Features/Trip/Views/Wizard/Steps/ReviewStep.swift b/SportsTime/Features/Trip/Views/Wizard/Steps/ReviewStep.swift index 0c0c2d1..8dd1ee4 100644 --- a/SportsTime/Features/Trip/Views/Wizard/Steps/ReviewStep.swift +++ b/SportsTime/Features/Trip/Views/Wizard/Steps/ReviewStep.swift @@ -84,6 +84,7 @@ struct ReviewStep: View { .foregroundStyle(.white) .clipShape(RoundedRectangle(cornerRadius: Theme.CornerRadius.large)) } + .accessibilityIdentifier("wizard.planTripButton") .disabled(!canPlanTrip || isPlanning) } .padding(Theme.Spacing.lg) diff --git a/SportsTime/Features/Trip/Views/Wizard/Steps/SportsStep.swift b/SportsTime/Features/Trip/Views/Wizard/Steps/SportsStep.swift index 95f9c6b..68568ea 100644 --- a/SportsTime/Features/Trip/Views/Wizard/Steps/SportsStep.swift +++ b/SportsTime/Features/Trip/Views/Wizard/Steps/SportsStep.swift @@ -9,10 +9,12 @@ import SwiftUI struct SportsStep: View { @Environment(\.colorScheme) private var colorScheme + @Environment(\.isDemoMode) private var isDemoMode @Binding var selectedSports: Set let sportAvailability: [Sport: Bool] let isLoading: Bool let canSelectSport: (Sport) -> Bool + @State private var hasAppliedDemoSelection = false private let columns = [ GridItem(.flexible()), @@ -54,6 +56,16 @@ struct SportsStep: View { RoundedRectangle(cornerRadius: Theme.CornerRadius.large) .stroke(Theme.surfaceGlow(colorScheme), lineWidth: 1) } + .onAppear { + if isDemoMode && !hasAppliedDemoSelection && selectedSports.isEmpty { + hasAppliedDemoSelection = true + DispatchQueue.main.asyncAfter(deadline: .now() + DemoConfig.selectionDelay) { + withAnimation(.easeInOut(duration: 0.3)) { + _ = selectedSports.insert(DemoConfig.demoSport) + } + } + } + } } private func toggleSport(_ sport: Sport) { @@ -100,6 +112,7 @@ private struct SportCard: View { .stroke(borderColor, lineWidth: isSelected ? 2 : 1) ) } + .accessibilityIdentifier("wizard.sports.\(sport.rawValue.lowercased())") .buttonStyle(.plain) .opacity(isAvailable ? 1.0 : 0.5) .disabled(!isAvailable) diff --git a/SportsTime/Features/Trip/Views/Wizard/TripWizardView.swift b/SportsTime/Features/Trip/Views/Wizard/TripWizardView.swift index 20b7149..bdc11cc 100644 --- a/SportsTime/Features/Trip/Views/Wizard/TripWizardView.swift +++ b/SportsTime/Features/Trip/Views/Wizard/TripWizardView.swift @@ -27,7 +27,8 @@ struct TripWizardView: View { var body: some View { NavigationStack { - ScrollView { + GeometryReader { geometry in + ScrollView(.vertical) { VStack(spacing: Theme.Spacing.lg) { // Step 1: Planning Mode (always visible) PlanningModeStep(selection: $viewModel.planningMode) @@ -131,7 +132,9 @@ struct TripWizardView: View { } } .padding(Theme.Spacing.md) + .frame(width: geometry.size.width) .animation(.easeInOut(duration: 0.2), value: viewModel.areStepsVisible) + } } .themedBackground() .navigationTitle("Plan a Trip") diff --git a/SportsTime/Resources/games.json b/SportsTime/Resources/games.json deleted file mode 100644 index fe53278..0000000 --- a/SportsTime/Resources/games.json +++ /dev/null @@ -1,74597 +0,0 @@ -[ - { - "id": "nba_202526_hou_okc_1021", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-21", - "time": "7:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "Houston Rockets", - "home_team_abbrev": "OKC", - "away_team_abbrev": "HOU", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_lal_1021", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-21", - "time": "10:00p", - "home_team": "Los Angeles Lakers", - "away_team": "Golden State Warriors", - "home_team_abbrev": "LAL", - "away_team_abbrev": "GSW", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_cho_1022", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-22", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "CHO", - "away_team_abbrev": "BRK", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_nyk_1022", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-22", - "time": "7:00p", - "home_team": "New York Knicks", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "NYK", - "away_team_abbrev": "CLE", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_orl_1022", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-22", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Miami Heat", - "home_team_abbrev": "ORL", - "away_team_abbrev": "MIA", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_bos_1022", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-22", - "time": "7:30p", - "home_team": "Boston Celtics", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "PHI", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_atl_1022", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-22", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Toronto Raptors", - "home_team_abbrev": "ATL", - "away_team_abbrev": "TOR", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_chi_1022", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-22", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Detroit Pistons", - "home_team_abbrev": "CHI", - "away_team_abbrev": "DET", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_mem_1022", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-22", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "MEM", - "away_team_abbrev": "NOP", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_mil_1022", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-22", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Washington Wizards", - "home_team_abbrev": "MIL", - "away_team_abbrev": "WAS", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_uta_1022", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-22", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "UTA", - "away_team_abbrev": "LAC", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_dal_1022", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-22", - "time": "9:30p", - "home_team": "Dallas Mavericks", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "DAL", - "away_team_abbrev": "SAS", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_por_1022", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-22", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "POR", - "away_team_abbrev": "MIN", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_pho_1022", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-22", - "time": "10:00p", - "home_team": "Phoenix Suns", - "away_team": "Sacramento Kings", - "home_team_abbrev": "PHO", - "away_team_abbrev": "SAC", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_ind_1023", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-23", - "time": "7:30p", - "home_team": "Indiana Pacers", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "IND", - "away_team_abbrev": "OKC", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_gsw_1023", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-23", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Denver Nuggets", - "home_team_abbrev": "GSW", - "away_team_abbrev": "DEN", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_tor_1024", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-24", - "time": "6:30p", - "home_team": "Toronto Raptors", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "TOR", - "away_team_abbrev": "MIL", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_orl_1024", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-24", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "ORL", - "away_team_abbrev": "ATL", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_brk_1024", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-24", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "BRK", - "away_team_abbrev": "CLE", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_nyk_1024", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-24", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Boston Celtics", - "home_team_abbrev": "NYK", - "away_team_abbrev": "BOS", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_hou_1024", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-24", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Detroit Pistons", - "home_team_abbrev": "HOU", - "away_team_abbrev": "DET", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_nop_1024", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-24", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "NOP", - "away_team_abbrev": "SAS", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_mem_1024", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-24", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Miami Heat", - "home_team_abbrev": "MEM", - "away_team_abbrev": "MIA", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_dal_1024", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-24", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Washington Wizards", - "home_team_abbrev": "DAL", - "away_team_abbrev": "WAS", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_lal_1024", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-24", - "time": "10:00p", - "home_team": "Los Angeles Lakers", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "LAL", - "away_team_abbrev": "MIN", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_por_1024", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-24", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Golden State Warriors", - "home_team_abbrev": "POR", - "away_team_abbrev": "GSW", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_sac_1024", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-24", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Utah Jazz", - "home_team_abbrev": "SAC", - "away_team_abbrev": "UTA", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_lac_1024", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-24", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Phoenix Suns", - "home_team_abbrev": "LAC", - "away_team_abbrev": "PHO", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_orl_1025", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-25", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Chicago Bulls", - "home_team_abbrev": "ORL", - "away_team_abbrev": "CHI", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_atl_1025", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-25", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "ATL", - "away_team_abbrev": "OKC", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_phi_1025", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-25", - "time": "7:30p", - "home_team": "Philadelphia 76ers", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CHO", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_mem_1025", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-25", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Indiana Pacers", - "home_team_abbrev": "MEM", - "away_team_abbrev": "IND", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_den_1025", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-25", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "Phoenix Suns", - "home_team_abbrev": "DEN", - "away_team_abbrev": "PHO", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_sas_1026", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-26", - "time": "2:00p", - "home_team": "San Antonio Spurs", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "SAS", - "away_team_abbrev": "BRK", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_det_1026", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-26", - "time": "3:30p", - "home_team": "Detroit Pistons", - "away_team": "Boston Celtics", - "home_team_abbrev": "DET", - "away_team_abbrev": "BOS", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_was_1026", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-26", - "time": "6:00p", - "home_team": "Washington Wizards", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "WAS", - "away_team_abbrev": "CHO", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_mia_1026", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-26", - "time": "6:00p", - "home_team": "Miami Heat", - "away_team": "New York Knicks", - "home_team_abbrev": "MIA", - "away_team_abbrev": "NYK", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_cle_1026", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-26", - "time": "6:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "CLE", - "away_team_abbrev": "MIL", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_min_1026", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-26", - "time": "7:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Indiana Pacers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "IND", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_dal_1026", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-26", - "time": "7:30p", - "home_team": "Dallas Mavericks", - "away_team": "Toronto Raptors", - "home_team_abbrev": "DAL", - "away_team_abbrev": "TOR", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_sac_1026", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-26", - "time": "9:00p", - "home_team": "Sacramento Kings", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "SAC", - "away_team_abbrev": "LAL", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_lac_1026", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-26", - "time": "9:00p", - "home_team": "Los Angeles Clippers", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "LAC", - "away_team_abbrev": "POR", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_det_1027", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-27", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "DET", - "away_team_abbrev": "CLE", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_phi_1027", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-27", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Orlando Magic", - "home_team_abbrev": "PHI", - "away_team_abbrev": "ORL", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_chi_1027", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-27", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "CHI", - "away_team_abbrev": "ATL", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_hou_1027", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-27", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "HOU", - "away_team_abbrev": "BRK", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_nop_1027", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-27", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Boston Celtics", - "home_team_abbrev": "NOP", - "away_team_abbrev": "BOS", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_sas_1027", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-27", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Toronto Raptors", - "home_team_abbrev": "SAS", - "away_team_abbrev": "TOR", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_dal_1027", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-27", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "DAL", - "away_team_abbrev": "OKC", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_uta_1027", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-27", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Phoenix Suns", - "home_team_abbrev": "UTA", - "away_team_abbrev": "PHO", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_min_1027", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-27", - "time": "9:30p", - "home_team": "Minnesota Timberwolves", - "away_team": "Denver Nuggets", - "home_team_abbrev": "MIN", - "away_team_abbrev": "DEN", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_gsw_1027", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-27", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "GSW", - "away_team_abbrev": "MEM", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_lal_1027", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-27", - "time": "10:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "LAL", - "away_team_abbrev": "POR", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_was_1028", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-28", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "WAS", - "away_team_abbrev": "PHI", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_mia_1028", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-28", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "MIA", - "away_team_abbrev": "CHO", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_mil_1028", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-28", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "New York Knicks", - "home_team_abbrev": "MIL", - "away_team_abbrev": "NYK", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_okc_1028", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-28", - "time": "8:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "Sacramento Kings", - "home_team_abbrev": "OKC", - "away_team_abbrev": "SAC", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_gsw_1028", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-28", - "time": "11:00p", - "home_team": "Golden State Warriors", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "GSW", - "away_team_abbrev": "LAC", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_tor_1029", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-29", - "time": "6:30p", - "home_team": "Toronto Raptors", - "away_team": "Houston Rockets", - "home_team_abbrev": "TOR", - "away_team_abbrev": "HOU", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_bos_1029", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-29", - "time": "7:00p", - "home_team": "Boston Celtics", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "CLE", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_det_1029", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-29", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Orlando Magic", - "home_team_abbrev": "DET", - "away_team_abbrev": "ORL", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_brk_1029", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-29", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "BRK", - "away_team_abbrev": "ATL", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_chi_1029", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-29", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Sacramento Kings", - "home_team_abbrev": "CHI", - "away_team_abbrev": "SAC", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_dal_1029", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-29", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Indiana Pacers", - "home_team_abbrev": "DAL", - "away_team_abbrev": "IND", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_uta_1029", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-29", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "UTA", - "away_team_abbrev": "POR", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_den_1029", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-29", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "DEN", - "away_team_abbrev": "NOP", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_min_1029", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-29", - "time": "9:30p", - "home_team": "Minnesota Timberwolves", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "LAL", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_pho_1029", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-29", - "time": "10:00p", - "home_team": "Phoenix Suns", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "PHO", - "away_team_abbrev": "MEM", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_cho_1030", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-30", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Orlando Magic", - "home_team_abbrev": "CHO", - "away_team_abbrev": "ORL", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_mil_1030", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-30", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Golden State Warriors", - "home_team_abbrev": "MIL", - "away_team_abbrev": "GSW", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_okc_1030", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-30", - "time": "8:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "Washington Wizards", - "home_team_abbrev": "OKC", - "away_team_abbrev": "WAS", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_sas_1030", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-30", - "time": "8:30p", - "home_team": "San Antonio Spurs", - "away_team": "Miami Heat", - "home_team_abbrev": "SAS", - "away_team_abbrev": "MIA", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_ind_1031", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-31", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "IND", - "away_team_abbrev": "ATL", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_phi_1031", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-31", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Boston Celtics", - "home_team_abbrev": "PHI", - "away_team_abbrev": "BOS", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_cle_1031", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-31", - "time": "7:30p", - "home_team": "Cleveland Cavaliers", - "away_team": "Toronto Raptors", - "home_team_abbrev": "CLE", - "away_team_abbrev": "TOR", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_chi_1031", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-31", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "New York Knicks", - "home_team_abbrev": "CHI", - "away_team_abbrev": "NYK", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_mem_1031", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-31", - "time": "9:30p", - "home_team": "Memphis Grizzlies", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "MEM", - "away_team_abbrev": "LAL", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_pho_1031", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-31", - "time": "10:00p", - "home_team": "Phoenix Suns", - "away_team": "Utah Jazz", - "home_team_abbrev": "PHO", - "away_team_abbrev": "UTA", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_por_1031", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-31", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Denver Nuggets", - "home_team_abbrev": "POR", - "away_team_abbrev": "DEN", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_lac_1031", - "sport": "NBA", - "season": "2025-26", - "date": "2025-10-31", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "LAC", - "away_team_abbrev": "NOP", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_mil_1101", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-01", - "time": "5:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Sacramento Kings", - "home_team_abbrev": "MIL", - "away_team_abbrev": "SAC", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_cho_1101", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-01", - "time": "6:00p", - "home_team": "Charlotte Hornets", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "CHO", - "away_team_abbrev": "MIN", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_ind_1101", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-01", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Golden State Warriors", - "home_team_abbrev": "IND", - "away_team_abbrev": "GSW", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_was_1101", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-01", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Orlando Magic", - "home_team_abbrev": "WAS", - "away_team_abbrev": "ORL", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_bos_1101", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-01", - "time": "8:00p", - "home_team": "Boston Celtics", - "away_team": "Houston Rockets", - "home_team_abbrev": "BOS", - "away_team_abbrev": "HOU", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_det_1101", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-01", - "time": "10:00p", - "home_team": "Detroit Pistons", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "DET", - "away_team_abbrev": "DAL", - "venue": "Mexico City Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_okc_1102", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-02", - "time": "3:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "OKC", - "away_team_abbrev": "NOP", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_brk_1102", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-02", - "time": "6:00p", - "home_team": "Brooklyn Nets", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "BRK", - "away_team_abbrev": "PHI", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_cho_1102", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-02", - "time": "6:00p", - "home_team": "Charlotte Hornets", - "away_team": "Utah Jazz", - "home_team_abbrev": "CHO", - "away_team_abbrev": "UTA", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_cle_1102", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-02", - "time": "6:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "CLE", - "away_team_abbrev": "ATL", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_tor_1102", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-02", - "time": "6:00p", - "home_team": "Toronto Raptors", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "TOR", - "away_team_abbrev": "MEM", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_nyk_1102", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-02", - "time": "7:00p", - "home_team": "New York Knicks", - "away_team": "Chicago Bulls", - "home_team_abbrev": "NYK", - "away_team_abbrev": "CHI", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_pho_1102", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-02", - "time": "8:00p", - "home_team": "Phoenix Suns", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "PHO", - "away_team_abbrev": "SAS", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_lal_1102", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-02", - "time": "9:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Miami Heat", - "home_team_abbrev": "LAL", - "away_team_abbrev": "MIA", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_brk_1103", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-03", - "time": "7:00p", - "home_team": "Brooklyn Nets", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "BRK", - "away_team_abbrev": "MIN", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_ind_1103", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-03", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "IND", - "away_team_abbrev": "MIL", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_bos_1103", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-03", - "time": "7:30p", - "home_team": "Boston Celtics", - "away_team": "Utah Jazz", - "home_team_abbrev": "BOS", - "away_team_abbrev": "UTA", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_nyk_1103", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-03", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Washington Wizards", - "home_team_abbrev": "NYK", - "away_team_abbrev": "WAS", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_hou_1103", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-03", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "HOU", - "away_team_abbrev": "DAL", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_mem_1103", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-03", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Detroit Pistons", - "home_team_abbrev": "MEM", - "away_team_abbrev": "DET", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_den_1103", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-03", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "Sacramento Kings", - "home_team_abbrev": "DEN", - "away_team_abbrev": "SAC", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_por_1103", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-03", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "POR", - "away_team_abbrev": "LAL", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_lac_1103", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-03", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Miami Heat", - "home_team_abbrev": "LAC", - "away_team_abbrev": "MIA", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_tor_1104", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-04", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "TOR", - "away_team_abbrev": "MIL", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_atl_1104", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-04", - "time": "8:00p", - "home_team": "Atlanta Hawks", - "away_team": "Orlando Magic", - "home_team_abbrev": "ATL", - "away_team_abbrev": "ORL", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_chi_1104", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-04", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "CHI", - "away_team_abbrev": "PHI", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_nop_1104", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-04", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "NOP", - "away_team_abbrev": "CHO", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_gsw_1104", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-04", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Phoenix Suns", - "home_team_abbrev": "GSW", - "away_team_abbrev": "PHO", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_lac_1104", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-04", - "time": "11:00p", - "home_team": "Los Angeles Clippers", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "LAC", - "away_team_abbrev": "OKC", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_cle_1105", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-05", - "time": "7:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "CLE", - "away_team_abbrev": "PHI", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_det_1105", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-05", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Utah Jazz", - "home_team_abbrev": "DET", - "away_team_abbrev": "UTA", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_ind_1105", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-05", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "IND", - "away_team_abbrev": "BRK", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_bos_1105", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-05", - "time": "7:30p", - "home_team": "Boston Celtics", - "away_team": "Washington Wizards", - "home_team_abbrev": "BOS", - "away_team_abbrev": "WAS", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_nyk_1105", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-05", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "NYK", - "away_team_abbrev": "MIN", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_mem_1105", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-05", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Houston Rockets", - "home_team_abbrev": "MEM", - "away_team_abbrev": "HOU", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_dal_1105", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-05", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "DAL", - "away_team_abbrev": "NOP", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_den_1105", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-05", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "Miami Heat", - "home_team_abbrev": "DEN", - "away_team_abbrev": "MIA", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_lal_1105", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-05", - "time": "10:00p", - "home_team": "Los Angeles Lakers", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "LAL", - "away_team_abbrev": "SAS", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_por_1105", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-05", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "POR", - "away_team_abbrev": "OKC", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_sac_1105", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-05", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Golden State Warriors", - "home_team_abbrev": "SAC", - "away_team_abbrev": "GSW", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_pho_1106", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-06", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "PHO", - "away_team_abbrev": "LAC", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_orl_1107", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-07", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Boston Celtics", - "home_team_abbrev": "ORL", - "away_team_abbrev": "BOS", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_was_1107", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-07", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "WAS", - "away_team_abbrev": "CLE", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_atl_1107", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-07", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Toronto Raptors", - "home_team_abbrev": "ATL", - "away_team_abbrev": "TOR", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_brk_1107", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-07", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Detroit Pistons", - "home_team_abbrev": "BRK", - "away_team_abbrev": "DET", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_sas_1107", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-07", - "time": "7:30p", - "home_team": "San Antonio Spurs", - "away_team": "Houston Rockets", - "home_team_abbrev": "SAS", - "away_team_abbrev": "HOU", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_mem_1107", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-07", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "MEM", - "away_team_abbrev": "DAL", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_mia_1107", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-07", - "time": "8:00p", - "home_team": "Miami Heat", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "MIA", - "away_team_abbrev": "CHO", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_mil_1107", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-07", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Chicago Bulls", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CHI", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_min_1107", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-07", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Utah Jazz", - "home_team_abbrev": "MIN", - "away_team_abbrev": "UTA", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_den_1107", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-07", - "time": "10:00p", - "home_team": "Denver Nuggets", - "away_team": "Golden State Warriors", - "home_team_abbrev": "DEN", - "away_team_abbrev": "GSW", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_sac_1107", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-07", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "SAC", - "away_team_abbrev": "OKC", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_was_1108", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-08", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "WAS", - "away_team_abbrev": "DAL", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_phi_1108", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-08", - "time": "7:30p", - "home_team": "Philadelphia 76ers", - "away_team": "Toronto Raptors", - "home_team_abbrev": "PHI", - "away_team_abbrev": "TOR", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_atl_1108", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-08", - "time": "8:00p", - "home_team": "Atlanta Hawks", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "LAL", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_cle_1108", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-08", - "time": "8:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Chicago Bulls", - "home_team_abbrev": "CLE", - "away_team_abbrev": "CHI", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_mia_1108", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-08", - "time": "8:00p", - "home_team": "Miami Heat", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "MIA", - "away_team_abbrev": "POR", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_sas_1108", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-08", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "SAS", - "away_team_abbrev": "NOP", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_den_1108", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-08", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "Indiana Pacers", - "home_team_abbrev": "DEN", - "away_team_abbrev": "IND", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_lac_1108", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-08", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Phoenix Suns", - "home_team_abbrev": "LAC", - "away_team_abbrev": "PHO", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_mil_1109", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-09", - "time": "3:30p", - "home_team": "Milwaukee Bucks", - "away_team": "Houston Rockets", - "home_team_abbrev": "MIL", - "away_team_abbrev": "HOU", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_mem_1109", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-09", - "time": "6:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "MEM", - "away_team_abbrev": "OKC", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_nyk_1109", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-09", - "time": "6:00p", - "home_team": "New York Knicks", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "NYK", - "away_team_abbrev": "BRK", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_orl_1109", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-09", - "time": "6:00p", - "home_team": "Orlando Magic", - "away_team": "Boston Celtics", - "home_team_abbrev": "ORL", - "away_team_abbrev": "BOS", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_phi_1109", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-09", - "time": "7:30p", - "home_team": "Philadelphia 76ers", - "away_team": "Detroit Pistons", - "home_team_abbrev": "PHI", - "away_team_abbrev": "DET", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_gsw_1109", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-09", - "time": "8:30p", - "home_team": "Golden State Warriors", - "away_team": "Indiana Pacers", - "home_team_abbrev": "GSW", - "away_team_abbrev": "IND", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_sac_1109", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-09", - "time": "9:00p", - "home_team": "Sacramento Kings", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "SAC", - "away_team_abbrev": "MIN", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_cho_1110", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-10", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "CHO", - "away_team_abbrev": "LAL", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_det_1110", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-10", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Washington Wizards", - "home_team_abbrev": "DET", - "away_team_abbrev": "WAS", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_orl_1110", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-10", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "ORL", - "away_team_abbrev": "POR", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_mia_1110", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-10", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "MIA", - "away_team_abbrev": "CLE", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_chi_1110", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-10", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "CHI", - "away_team_abbrev": "SAS", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_dal_1110", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-10", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "DAL", - "away_team_abbrev": "MIL", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_pho_1110", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-10", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "PHO", - "away_team_abbrev": "NOP", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_uta_1110", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-10", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "UTA", - "away_team_abbrev": "MIN", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_lac_1110", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-10", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "LAC", - "away_team_abbrev": "ATL", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_brk_1111", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-11", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Toronto Raptors", - "home_team_abbrev": "BRK", - "away_team_abbrev": "TOR", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_nyk_1111", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-11", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "NYK", - "away_team_abbrev": "MEM", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_okc_1111", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-11", - "time": "8:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "Golden State Warriors", - "home_team_abbrev": "OKC", - "away_team_abbrev": "GSW", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_phi_1111", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-11", - "time": "8:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Boston Celtics", - "home_team_abbrev": "PHI", - "away_team_abbrev": "BOS", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_uta_1111", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-11", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Indiana Pacers", - "home_team_abbrev": "UTA", - "away_team_abbrev": "IND", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_sac_1111", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-11", - "time": "11:00p", - "home_team": "Sacramento Kings", - "away_team": "Denver Nuggets", - "home_team_abbrev": "SAC", - "away_team_abbrev": "DEN", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_cho_1112", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-12", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "CHO", - "away_team_abbrev": "MIL", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_det_1112", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-12", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Chicago Bulls", - "home_team_abbrev": "DET", - "away_team_abbrev": "CHI", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_nyk_1112", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-12", - "time": "7:00p", - "home_team": "New York Knicks", - "away_team": "Orlando Magic", - "home_team_abbrev": "NYK", - "away_team_abbrev": "ORL", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_bos_1112", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-12", - "time": "7:30p", - "home_team": "Boston Celtics", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "BOS", - "away_team_abbrev": "MEM", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_mia_1112", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-12", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "MIA", - "away_team_abbrev": "CLE", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_hou_1112", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-12", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Washington Wizards", - "home_team_abbrev": "HOU", - "away_team_abbrev": "WAS", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_nop_1112", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-12", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "NOP", - "away_team_abbrev": "POR", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_sas_1112", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-12", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Golden State Warriors", - "home_team_abbrev": "SAS", - "away_team_abbrev": "GSW", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_dal_1112", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-12", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Phoenix Suns", - "home_team_abbrev": "DAL", - "away_team_abbrev": "PHO", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_okc_1112", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-12", - "time": "9:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "OKC", - "away_team_abbrev": "LAL", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_sac_1112", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-12", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "SAC", - "away_team_abbrev": "ATL", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_lac_1112", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-12", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Denver Nuggets", - "home_team_abbrev": "LAC", - "away_team_abbrev": "DEN", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_cle_1113", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-13", - "time": "7:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Toronto Raptors", - "home_team_abbrev": "CLE", - "away_team_abbrev": "TOR", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_pho_1113", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-13", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "Indiana Pacers", - "home_team_abbrev": "PHO", - "away_team_abbrev": "IND", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_uta_1113", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-13", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "UTA", - "away_team_abbrev": "ATL", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_nyk_1114", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-14", - "time": "7:00p", - "home_team": "New York Knicks", - "away_team": "Miami Heat", - "home_team_abbrev": "NYK", - "away_team_abbrev": "MIA", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_orl_1114", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-14", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "ORL", - "away_team_abbrev": "BRK", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_det_1114", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-14", - "time": "7:30p", - "home_team": "Detroit Pistons", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "DET", - "away_team_abbrev": "PHI", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_hou_1114", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-14", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "POR", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_mil_1114", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-14", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CHO", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_min_1114", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-14", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Sacramento Kings", - "home_team_abbrev": "MIN", - "away_team_abbrev": "SAC", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_nop_1114", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-14", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "NOP", - "away_team_abbrev": "LAL", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_dal_1114", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-14", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "DAL", - "away_team_abbrev": "LAC", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_sas_1114", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-14", - "time": "9:30p", - "home_team": "San Antonio Spurs", - "away_team": "Golden State Warriors", - "home_team_abbrev": "SAS", - "away_team_abbrev": "GSW", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_cle_1115", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-15", - "time": "5:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "CLE", - "away_team_abbrev": "MEM", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_cho_1115", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-15", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "CHO", - "away_team_abbrev": "OKC", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_ind_1115", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-15", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Toronto Raptors", - "home_team_abbrev": "IND", - "away_team_abbrev": "TOR", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_mil_1115", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-15", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "MIL", - "away_team_abbrev": "LAL", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_min_1115", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-15", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Denver Nuggets", - "home_team_abbrev": "MIN", - "away_team_abbrev": "DEN", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_bos_1116", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-16", - "time": "3:30p", - "home_team": "Boston Celtics", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "LAC", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_sas_1116", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-16", - "time": "4:00p", - "home_team": "San Antonio Spurs", - "away_team": "Sacramento Kings", - "home_team_abbrev": "SAS", - "away_team_abbrev": "SAC", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_was_1116", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-16", - "time": "6:00p", - "home_team": "Washington Wizards", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "WAS", - "away_team_abbrev": "BRK", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_hou_1116", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-16", - "time": "7:00p", - "home_team": "Houston Rockets", - "away_team": "Orlando Magic", - "home_team_abbrev": "HOU", - "away_team_abbrev": "ORL", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_nop_1116", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-16", - "time": "7:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Golden State Warriors", - "home_team_abbrev": "NOP", - "away_team_abbrev": "GSW", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_dal_1116", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-16", - "time": "7:30p", - "home_team": "Dallas Mavericks", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "DAL", - "away_team_abbrev": "POR", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_pho_1116", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-16", - "time": "8:00p", - "home_team": "Phoenix Suns", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "PHO", - "away_team_abbrev": "ATL", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_uta_1116", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-16", - "time": "8:00p", - "home_team": "Utah Jazz", - "away_team": "Chicago Bulls", - "home_team_abbrev": "UTA", - "away_team_abbrev": "CHI", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_cle_1117", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-17", - "time": "7:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "CLE", - "away_team_abbrev": "MIL", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_det_1117", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-17", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Indiana Pacers", - "home_team_abbrev": "DET", - "away_team_abbrev": "IND", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_phi_1117", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-17", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "LAC", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_mia_1117", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-17", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "New York Knicks", - "home_team_abbrev": "MIA", - "away_team_abbrev": "NYK", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_tor_1117", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-17", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "TOR", - "away_team_abbrev": "CHO", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_min_1117", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-17", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "MIN", - "away_team_abbrev": "DAL", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_nop_1117", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-17", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "NOP", - "away_team_abbrev": "OKC", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_den_1117", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-17", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "Chicago Bulls", - "home_team_abbrev": "DEN", - "away_team_abbrev": "CHI", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_orl_1118", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-18", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Golden State Warriors", - "home_team_abbrev": "ORL", - "away_team_abbrev": "GSW", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_atl_1118", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-18", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Detroit Pistons", - "home_team_abbrev": "ATL", - "away_team_abbrev": "DET", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_brk_1118", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-18", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Boston Celtics", - "home_team_abbrev": "BRK", - "away_team_abbrev": "BOS", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_sas_1118", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-18", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "SAS", - "away_team_abbrev": "MEM", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_lal_1118", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-18", - "time": "10:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Utah Jazz", - "home_team_abbrev": "LAL", - "away_team_abbrev": "UTA", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_por_1118", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-18", - "time": "11:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Phoenix Suns", - "home_team_abbrev": "POR", - "away_team_abbrev": "PHO", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_cle_1119", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-19", - "time": "7:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Houston Rockets", - "home_team_abbrev": "CLE", - "away_team_abbrev": "HOU", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_ind_1119", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-19", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "IND", - "away_team_abbrev": "CHO", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_phi_1119", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-19", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Toronto Raptors", - "home_team_abbrev": "PHI", - "away_team_abbrev": "TOR", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_mia_1119", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-19", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Golden State Warriors", - "home_team_abbrev": "MIA", - "away_team_abbrev": "GSW", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_min_1119", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-19", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Washington Wizards", - "home_team_abbrev": "MIN", - "away_team_abbrev": "WAS", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_nop_1119", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-19", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Denver Nuggets", - "home_team_abbrev": "NOP", - "away_team_abbrev": "DEN", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_okc_1119", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-19", - "time": "8:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "Sacramento Kings", - "home_team_abbrev": "OKC", - "away_team_abbrev": "SAC", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_dal_1119", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-19", - "time": "9:30p", - "home_team": "Dallas Mavericks", - "away_team": "New York Knicks", - "home_team_abbrev": "DAL", - "away_team_abbrev": "NYK", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_por_1119", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-19", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Chicago Bulls", - "home_team_abbrev": "POR", - "away_team_abbrev": "CHI", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_orl_1120", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-20", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "ORL", - "away_team_abbrev": "LAC", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_mem_1120", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-20", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Sacramento Kings", - "home_team_abbrev": "MEM", - "away_team_abbrev": "SAC", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_mil_1120", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-20", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "MIL", - "away_team_abbrev": "PHI", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_sas_1120", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-20", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "SAS", - "away_team_abbrev": "ATL", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_cle_1121", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-21", - "time": "7:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Indiana Pacers", - "home_team_abbrev": "CLE", - "away_team_abbrev": "IND", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_bos_1121", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-21", - "time": "7:30p", - "home_team": "Boston Celtics", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "BOS", - "away_team_abbrev": "BRK", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_tor_1121", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-21", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "Washington Wizards", - "home_team_abbrev": "TOR", - "away_team_abbrev": "WAS", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_chi_1121", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-21", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Miami Heat", - "home_team_abbrev": "CHI", - "away_team_abbrev": "MIA", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_dal_1121", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-21", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "DAL", - "away_team_abbrev": "NOP", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_pho_1121", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-21", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "PHO", - "away_team_abbrev": "MIN", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_hou_1121", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-21", - "time": "9:30p", - "home_team": "Houston Rockets", - "away_team": "Denver Nuggets", - "home_team_abbrev": "HOU", - "away_team_abbrev": "DEN", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_gsw_1121", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-21", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "GSW", - "away_team_abbrev": "POR", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_uta_1121", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-21", - "time": "10:00p", - "home_team": "Utah Jazz", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "UTA", - "away_team_abbrev": "OKC", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_cho_1122", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-22", - "time": "1:00p", - "home_team": "Charlotte Hornets", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "CHO", - "away_team_abbrev": "LAC", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_orl_1122", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-22", - "time": "5:00p", - "home_team": "Orlando Magic", - "away_team": "New York Knicks", - "home_team_abbrev": "ORL", - "away_team_abbrev": "NYK", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_nop_1122", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-22", - "time": "7:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "NOP", - "away_team_abbrev": "ATL", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_chi_1122", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-22", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Washington Wizards", - "home_team_abbrev": "CHI", - "away_team_abbrev": "WAS", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_mil_1122", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-22", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Detroit Pistons", - "home_team_abbrev": "MIL", - "away_team_abbrev": "DET", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_dal_1122", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-22", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "DAL", - "away_team_abbrev": "MEM", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_den_1122", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-22", - "time": "10:00p", - "home_team": "Denver Nuggets", - "away_team": "Sacramento Kings", - "home_team_abbrev": "DEN", - "away_team_abbrev": "SAC", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_phi_1123", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-23", - "time": "1:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Miami Heat", - "home_team_abbrev": "PHI", - "away_team_abbrev": "MIA", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_atl_1123", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-23", - "time": "6:00p", - "home_team": "Atlanta Hawks", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "ATL", - "away_team_abbrev": "CHO", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_bos_1123", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-23", - "time": "6:00p", - "home_team": "Boston Celtics", - "away_team": "Orlando Magic", - "home_team_abbrev": "BOS", - "away_team_abbrev": "ORL", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_cle_1123", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-23", - "time": "6:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "CLE", - "away_team_abbrev": "LAC", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_tor_1123", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-23", - "time": "6:00p", - "home_team": "Toronto Raptors", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BRK", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_okc_1123", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-23", - "time": "7:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "OKC", - "away_team_abbrev": "POR", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_pho_1123", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-23", - "time": "8:00p", - "home_team": "Phoenix Suns", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "PHO", - "away_team_abbrev": "SAS", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_uta_1123", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-23", - "time": "8:00p", - "home_team": "Utah Jazz", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "UTA", - "away_team_abbrev": "LAL", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_ind_1124", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-24", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Detroit Pistons", - "home_team_abbrev": "IND", - "away_team_abbrev": "DET", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_tor_1124", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-24", - "time": "7:00p", - "home_team": "Toronto Raptors", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "CLE", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_brk_1124", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-24", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "New York Knicks", - "home_team_abbrev": "BRK", - "away_team_abbrev": "NYK", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_mia_1124", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-24", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "MIA", - "away_team_abbrev": "DAL", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_mem_1124", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-24", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Denver Nuggets", - "home_team_abbrev": "MEM", - "away_team_abbrev": "DEN", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_mil_1124", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-24", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "MIL", - "away_team_abbrev": "POR", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_nop_1124", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-24", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Chicago Bulls", - "home_team_abbrev": "NOP", - "away_team_abbrev": "CHI", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_pho_1124", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-24", - "time": "9:30p", - "home_team": "Phoenix Suns", - "away_team": "Houston Rockets", - "home_team_abbrev": "PHO", - "away_team_abbrev": "HOU", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_gsw_1124", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-24", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Utah Jazz", - "home_team_abbrev": "GSW", - "away_team_abbrev": "UTA", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_sac_1124", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-24", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "SAC", - "away_team_abbrev": "MIN", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_was_1125", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-25", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "WAS", - "away_team_abbrev": "ATL", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_phi_1125", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-25", - "time": "8:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Orlando Magic", - "home_team_abbrev": "PHI", - "away_team_abbrev": "ORL", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_lal_1125", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-25", - "time": "11:00p", - "home_team": "Los Angeles Lakers", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "LAL", - "away_team_abbrev": "LAC", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_bos_1126", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-26", - "time": "5:00p", - "home_team": "Boston Celtics", - "away_team": "Detroit Pistons", - "home_team_abbrev": "BOS", - "away_team_abbrev": "DET", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_cho_1126", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-26", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "New York Knicks", - "home_team_abbrev": "CHO", - "away_team_abbrev": "NYK", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_mia_1126", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-26", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "MIA", - "away_team_abbrev": "MIL", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_okc_1126", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-26", - "time": "7:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "OKC", - "away_team_abbrev": "MIN", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_tor_1126", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-26", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "Indiana Pacers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "IND", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_nop_1126", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-26", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "NOP", - "away_team_abbrev": "MEM", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_gsw_1126", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-26", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Houston Rockets", - "home_team_abbrev": "GSW", - "away_team_abbrev": "HOU", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_por_1126", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-26", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "POR", - "away_team_abbrev": "SAS", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_sac_1126", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-26", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Phoenix Suns", - "home_team_abbrev": "SAC", - "away_team_abbrev": "PHO", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_atl_1128", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-28", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "CLE", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_brk_1128", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-28", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "BRK", - "away_team_abbrev": "PHI", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_cho_1128", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-28", - "time": "7:30p", - "home_team": "Charlotte Hornets", - "away_team": "Chicago Bulls", - "home_team_abbrev": "CHO", - "away_team_abbrev": "CHI", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_det_1128", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-28", - "time": "7:30p", - "home_team": "Detroit Pistons", - "away_team": "Orlando Magic", - "home_team_abbrev": "DET", - "away_team_abbrev": "ORL", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_ind_1128", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-28", - "time": "7:30p", - "home_team": "Indiana Pacers", - "away_team": "Washington Wizards", - "home_team_abbrev": "IND", - "away_team_abbrev": "WAS", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_nyk_1128", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-28", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "NYK", - "away_team_abbrev": "MIL", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_den_1128", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-28", - "time": "9:30p", - "home_team": "Denver Nuggets", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "DEN", - "away_team_abbrev": "SAS", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_okc_1128", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-28", - "time": "9:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "Phoenix Suns", - "home_team_abbrev": "OKC", - "away_team_abbrev": "PHO", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_uta_1128", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-28", - "time": "9:30p", - "home_team": "Utah Jazz", - "away_team": "Sacramento Kings", - "home_team_abbrev": "UTA", - "away_team_abbrev": "SAC", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_lac_1128", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-28", - "time": "10:00p", - "home_team": "Los Angeles Clippers", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "LAC", - "away_team_abbrev": "MEM", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_lal_1128", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-28", - "time": "10:00p", - "home_team": "Los Angeles Lakers", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "LAL", - "away_team_abbrev": "DAL", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_min_1129", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-29", - "time": "5:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Boston Celtics", - "home_team_abbrev": "MIN", - "away_team_abbrev": "BOS", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_cho_1129", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-29", - "time": "6:00p", - "home_team": "Charlotte Hornets", - "away_team": "Toronto Raptors", - "home_team_abbrev": "CHO", - "away_team_abbrev": "TOR", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_ind_1129", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-29", - "time": "7:30p", - "home_team": "Indiana Pacers", - "away_team": "Chicago Bulls", - "home_team_abbrev": "IND", - "away_team_abbrev": "CHI", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_mia_1129", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-29", - "time": "8:00p", - "home_team": "Miami Heat", - "away_team": "Detroit Pistons", - "home_team_abbrev": "MIA", - "away_team_abbrev": "DET", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_mil_1129", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-29", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "MIL", - "away_team_abbrev": "BRK", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_gsw_1129", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-29", - "time": "8:30p", - "home_team": "Golden State Warriors", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "GSW", - "away_team_abbrev": "NOP", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_pho_1129", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-29", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "Denver Nuggets", - "home_team_abbrev": "PHO", - "away_team_abbrev": "DEN", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_lac_1129", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-29", - "time": "10:00p", - "home_team": "Los Angeles Clippers", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "LAC", - "away_team_abbrev": "DAL", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_uta_1130", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-30", - "time": "3:00p", - "home_team": "Utah Jazz", - "away_team": "Houston Rockets", - "home_team_abbrev": "UTA", - "away_team_abbrev": "HOU", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_cle_1130", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-30", - "time": "6:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Boston Celtics", - "home_team_abbrev": "CLE", - "away_team_abbrev": "BOS", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_nyk_1130", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-30", - "time": "6:00p", - "home_team": "New York Knicks", - "away_team": "Toronto Raptors", - "home_team_abbrev": "NYK", - "away_team_abbrev": "TOR", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_phi_1130", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-30", - "time": "6:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "PHI", - "away_team_abbrev": "ATL", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_por_1130", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-30", - "time": "6:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "POR", - "away_team_abbrev": "OKC", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_min_1130", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-30", - "time": "7:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "MIN", - "away_team_abbrev": "SAS", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_sac_1130", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-30", - "time": "9:00p", - "home_team": "Sacramento Kings", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "SAC", - "away_team_abbrev": "MEM", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_lal_1130", - "sport": "NBA", - "season": "2025-26", - "date": "2025-11-30", - "time": "9:30p", - "home_team": "Los Angeles Lakers", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "LAL", - "away_team_abbrev": "NOP", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_det_1201", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-01", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "DET", - "away_team_abbrev": "ATL", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_ind_1201", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-01", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "IND", - "away_team_abbrev": "CLE", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_was_1201", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-01", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "WAS", - "away_team_abbrev": "MIL", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_brk_1201", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-01", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "BRK", - "away_team_abbrev": "CHO", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_mia_1201", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-01", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "MIA", - "away_team_abbrev": "LAC", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_orl_1201", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-01", - "time": "7:30p", - "home_team": "Orlando Magic", - "away_team": "Chicago Bulls", - "home_team_abbrev": "ORL", - "away_team_abbrev": "CHI", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_den_1201", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-01", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "DEN", - "away_team_abbrev": "DAL", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_uta_1201", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-01", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Houston Rockets", - "home_team_abbrev": "UTA", - "away_team_abbrev": "HOU", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_lal_1201", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-01", - "time": "10:00p", - "home_team": "Los Angeles Lakers", - "away_team": "Phoenix Suns", - "home_team_abbrev": "LAL", - "away_team_abbrev": "PHO", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_phi_1202", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-02", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Washington Wizards", - "home_team_abbrev": "PHI", - "away_team_abbrev": "WAS", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_tor_1202", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-02", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "POR", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_bos_1202", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-02", - "time": "8:00p", - "home_team": "Boston Celtics", - "away_team": "New York Knicks", - "home_team_abbrev": "BOS", - "away_team_abbrev": "NYK", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_nop_1202", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-02", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "NOP", - "away_team_abbrev": "MIN", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_sas_1202", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-02", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "SAS", - "away_team_abbrev": "MEM", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_gsw_1202", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-02", - "time": "11:00p", - "home_team": "Golden State Warriors", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "GSW", - "away_team_abbrev": "OKC", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_cle_1203", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-03", - "time": "7:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "CLE", - "away_team_abbrev": "POR", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_ind_1203", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-03", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Denver Nuggets", - "home_team_abbrev": "IND", - "away_team_abbrev": "DEN", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_orl_1203", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-03", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "ORL", - "away_team_abbrev": "SAS", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_atl_1203", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-03", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "LAC", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_nyk_1203", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-03", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "NYK", - "away_team_abbrev": "CHO", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_chi_1203", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-03", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "CHI", - "away_team_abbrev": "BRK", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_hou_1203", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-03", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Sacramento Kings", - "home_team_abbrev": "HOU", - "away_team_abbrev": "SAC", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_mil_1203", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-03", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Detroit Pistons", - "home_team_abbrev": "MIL", - "away_team_abbrev": "DET", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_dal_1203", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-03", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Miami Heat", - "home_team_abbrev": "DAL", - "away_team_abbrev": "MIA", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_phi_1204", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-04", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Golden State Warriors", - "home_team_abbrev": "PHI", - "away_team_abbrev": "GSW", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_was_1204", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-04", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Boston Celtics", - "home_team_abbrev": "WAS", - "away_team_abbrev": "BOS", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_brk_1204", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-04", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Utah Jazz", - "home_team_abbrev": "BRK", - "away_team_abbrev": "UTA", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_tor_1204", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-04", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "LAL", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_nop_1204", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-04", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "NOP", - "away_team_abbrev": "MIN", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_bos_1205", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-05", - "time": "7:00p", - "home_team": "Boston Celtics", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "LAL", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_orl_1205", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-05", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Miami Heat", - "home_team_abbrev": "ORL", - "away_team_abbrev": "MIA", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_atl_1205", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-05", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Denver Nuggets", - "home_team_abbrev": "ATL", - "away_team_abbrev": "DEN", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_cle_1205", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-05", - "time": "7:30p", - "home_team": "Cleveland Cavaliers", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "CLE", - "away_team_abbrev": "SAS", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_det_1205", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-05", - "time": "7:30p", - "home_team": "Detroit Pistons", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "DET", - "away_team_abbrev": "POR", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_nyk_1205", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-05", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Utah Jazz", - "home_team_abbrev": "NYK", - "away_team_abbrev": "UTA", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_tor_1205", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-05", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "TOR", - "away_team_abbrev": "CHO", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_chi_1205", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-05", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Indiana Pacers", - "home_team_abbrev": "CHI", - "away_team_abbrev": "IND", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_hou_1205", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-05", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Phoenix Suns", - "home_team_abbrev": "HOU", - "away_team_abbrev": "PHO", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_mem_1205", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-05", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "MEM", - "away_team_abbrev": "LAC", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_mil_1205", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-05", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "MIL", - "away_team_abbrev": "PHI", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_okc_1205", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-05", - "time": "9:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "OKC", - "away_team_abbrev": "DAL", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_brk_1206", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-06", - "time": "5:00p", - "home_team": "Brooklyn Nets", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "BRK", - "away_team_abbrev": "NOP", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_was_1206", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-06", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "WAS", - "away_team_abbrev": "ATL", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_cle_1206", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-06", - "time": "7:30p", - "home_team": "Cleveland Cavaliers", - "away_team": "Golden State Warriors", - "home_team_abbrev": "CLE", - "away_team_abbrev": "GSW", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_det_1206", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-06", - "time": "7:30p", - "home_team": "Detroit Pistons", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "DET", - "away_team_abbrev": "MIL", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_mia_1206", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-06", - "time": "8:00p", - "home_team": "Miami Heat", - "away_team": "Sacramento Kings", - "home_team_abbrev": "MIA", - "away_team_abbrev": "SAC", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_min_1206", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-06", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "LAC", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_dal_1206", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-06", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Houston Rockets", - "home_team_abbrev": "DAL", - "away_team_abbrev": "HOU", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_nyk_1207", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-07", - "time": "12:00p", - "home_team": "New York Knicks", - "away_team": "Orlando Magic", - "home_team_abbrev": "NYK", - "away_team_abbrev": "ORL", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_tor_1207", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-07", - "time": "3:30p", - "home_team": "Toronto Raptors", - "away_team": "Boston Celtics", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BOS", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_cho_1207", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-07", - "time": "6:00p", - "home_team": "Charlotte Hornets", - "away_team": "Denver Nuggets", - "home_team_abbrev": "CHO", - "away_team_abbrev": "DEN", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_mem_1207", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-07", - "time": "6:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "MEM", - "away_team_abbrev": "POR", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_chi_1207", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-07", - "time": "7:00p", - "home_team": "Chicago Bulls", - "away_team": "Golden State Warriors", - "home_team_abbrev": "CHI", - "away_team_abbrev": "GSW", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_phi_1207", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-07", - "time": "7:30p", - "home_team": "Philadelphia 76ers", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "LAL", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_uta_1207", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-07", - "time": "8:00p", - "home_team": "Utah Jazz", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "UTA", - "away_team_abbrev": "OKC", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_ind_1208", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-08", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Sacramento Kings", - "home_team_abbrev": "IND", - "away_team_abbrev": "SAC", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_min_1208", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-08", - "time": "7:30p", - "home_team": "Minnesota Timberwolves", - "away_team": "Phoenix Suns", - "home_team_abbrev": "MIN", - "away_team_abbrev": "PHO", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_nop_1208", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-08", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "NOP", - "away_team_abbrev": "SAS", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_orl_1209", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-09", - "time": "6:00p", - "home_team": "Orlando Magic", - "away_team": "Miami Heat", - "home_team_abbrev": "ORL", - "away_team_abbrev": "MIA", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_tor_1209", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-09", - "time": "8:30p", - "home_team": "Toronto Raptors", - "away_team": "New York Knicks", - "home_team_abbrev": "TOR", - "away_team_abbrev": "NYK", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_okc_1210", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-10", - "time": "7:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "Phoenix Suns", - "home_team_abbrev": "OKC", - "away_team_abbrev": "PHO", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_lal_1210", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-10", - "time": "10:00p", - "home_team": "Los Angeles Lakers", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "LAL", - "away_team_abbrev": "SAS", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_hou_1211", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-11", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "LAC", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_mil_1211", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-11", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Boston Celtics", - "home_team_abbrev": "MIL", - "away_team_abbrev": "BOS", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_nop_1211", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-11", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "NOP", - "away_team_abbrev": "POR", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_sac_1211", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-11", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Denver Nuggets", - "home_team_abbrev": "SAC", - "away_team_abbrev": "DEN", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_cho_1212", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-12", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Chicago Bulls", - "home_team_abbrev": "CHO", - "away_team_abbrev": "CHI", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_det_1212", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-12", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "DET", - "away_team_abbrev": "ATL", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_phi_1212", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-12", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Indiana Pacers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "IND", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_was_1212", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-12", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "WAS", - "away_team_abbrev": "CLE", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_mem_1212", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-12", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Utah Jazz", - "home_team_abbrev": "MEM", - "away_team_abbrev": "UTA", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_dal_1212", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-12", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "DAL", - "away_team_abbrev": "BRK", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_gsw_1212", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-12", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "GSW", - "away_team_abbrev": "MIN", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_orl_1213", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-13", - "time": "5:30p", - "home_team": "Orlando Magic", - "away_team": "New York Knicks", - "home_team_abbrev": "ORL", - "away_team_abbrev": "NYK", - "venue": "T-Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_okc_1213", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-13", - "time": "9:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "OKC", - "away_team_abbrev": "SAS", - "venue": "T-Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_ind_1214", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-14", - "time": "3:00p", - "home_team": "Indiana Pacers", - "away_team": "Washington Wizards", - "home_team_abbrev": "IND", - "away_team_abbrev": "WAS", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_cle_1214", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-14", - "time": "3:30p", - "home_team": "Cleveland Cavaliers", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "CLE", - "away_team_abbrev": "CHO", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_atl_1214", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-14", - "time": "6:00p", - "home_team": "Atlanta Hawks", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "PHI", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_brk_1214", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-14", - "time": "6:00p", - "home_team": "Brooklyn Nets", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "BRK", - "away_team_abbrev": "MIL", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_chi_1214", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-14", - "time": "7:00p", - "home_team": "Chicago Bulls", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "CHI", - "away_team_abbrev": "NOP", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_min_1214", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-14", - "time": "7:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Sacramento Kings", - "home_team_abbrev": "MIN", - "away_team_abbrev": "SAC", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_pho_1214", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-14", - "time": "8:00p", - "home_team": "Phoenix Suns", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "PHO", - "away_team_abbrev": "LAL", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_por_1214", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-14", - "time": "9:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Golden State Warriors", - "home_team_abbrev": "POR", - "away_team_abbrev": "GSW", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_bos_1215", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-15", - "time": "7:00p", - "home_team": "Boston Celtics", - "away_team": "Detroit Pistons", - "home_team_abbrev": "BOS", - "away_team_abbrev": "DET", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_mia_1215", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-15", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Toronto Raptors", - "home_team_abbrev": "MIA", - "away_team_abbrev": "TOR", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_uta_1215", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-15", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "UTA", - "away_team_abbrev": "DAL", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_den_1215", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-15", - "time": "9:30p", - "home_team": "Denver Nuggets", - "away_team": "Houston Rockets", - "home_team_abbrev": "DEN", - "away_team_abbrev": "HOU", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_lac_1215", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-15", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "LAC", - "away_team_abbrev": "MEM", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_nyk_1216", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-16", - "time": "8:30p", - "home_team": "New York Knicks", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "NYK", - "away_team_abbrev": "SAS", - "venue": "T-Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_chi_1217", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-17", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "CHI", - "away_team_abbrev": "CLE", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_min_1217", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-17", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "MIN", - "away_team_abbrev": "MEM", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_cho_1218", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-18", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "CHO", - "away_team_abbrev": "ATL", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_ind_1218", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-18", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "New York Knicks", - "home_team_abbrev": "IND", - "away_team_abbrev": "NYK", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_brk_1218", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-18", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Miami Heat", - "home_team_abbrev": "BRK", - "away_team_abbrev": "MIA", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_mil_1218", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-18", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Toronto Raptors", - "home_team_abbrev": "MIL", - "away_team_abbrev": "TOR", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_nop_1218", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-18", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Houston Rockets", - "home_team_abbrev": "NOP", - "away_team_abbrev": "HOU", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_okc_1218", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-18", - "time": "8:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "OKC", - "away_team_abbrev": "LAC", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_sas_1218", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-18", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Washington Wizards", - "home_team_abbrev": "SAS", - "away_team_abbrev": "WAS", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_dal_1218", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-18", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Detroit Pistons", - "home_team_abbrev": "DAL", - "away_team_abbrev": "DET", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_den_1218", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-18", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "Orlando Magic", - "home_team_abbrev": "DEN", - "away_team_abbrev": "ORL", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_pho_1218", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-18", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "Golden State Warriors", - "home_team_abbrev": "PHO", - "away_team_abbrev": "GSW", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_uta_1218", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-18", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "UTA", - "away_team_abbrev": "LAL", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_por_1218", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-18", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Sacramento Kings", - "home_team_abbrev": "POR", - "away_team_abbrev": "SAC", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_bos_1219", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-19", - "time": "7:00p", - "home_team": "Boston Celtics", - "away_team": "Miami Heat", - "home_team_abbrev": "BOS", - "away_team_abbrev": "MIA", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_nyk_1219", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-19", - "time": "7:00p", - "home_team": "New York Knicks", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "NYK", - "away_team_abbrev": "PHI", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_atl_1219", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-19", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "ATL", - "away_team_abbrev": "SAS", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_cle_1219", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-19", - "time": "7:30p", - "home_team": "Cleveland Cavaliers", - "away_team": "Chicago Bulls", - "home_team_abbrev": "CLE", - "away_team_abbrev": "CHI", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_min_1219", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-19", - "time": "9:30p", - "home_team": "Minnesota Timberwolves", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "MIN", - "away_team_abbrev": "OKC", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_den_1220", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-20", - "time": "5:00p", - "home_team": "Denver Nuggets", - "away_team": "Houston Rockets", - "home_team_abbrev": "DEN", - "away_team_abbrev": "HOU", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_nop_1220", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-20", - "time": "7:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Indiana Pacers", - "home_team_abbrev": "NOP", - "away_team_abbrev": "IND", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_phi_1220", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-20", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "PHI", - "away_team_abbrev": "DAL", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_tor_1220", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-20", - "time": "7:00p", - "home_team": "Toronto Raptors", - "away_team": "Boston Celtics", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BOS", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_det_1220", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-20", - "time": "7:30p", - "home_team": "Detroit Pistons", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "DET", - "away_team_abbrev": "CHO", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_mem_1220", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-20", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Washington Wizards", - "home_team_abbrev": "MEM", - "away_team_abbrev": "WAS", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_gsw_1220", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-20", - "time": "8:30p", - "home_team": "Golden State Warriors", - "away_team": "Phoenix Suns", - "home_team_abbrev": "GSW", - "away_team_abbrev": "PHO", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_uta_1220", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-20", - "time": "9:30p", - "home_team": "Utah Jazz", - "away_team": "Orlando Magic", - "home_team_abbrev": "UTA", - "away_team_abbrev": "ORL", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_sac_1220", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-20", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "SAC", - "away_team_abbrev": "POR", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_lac_1220", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-20", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "LAC", - "away_team_abbrev": "LAL", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_atl_1221", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-21", - "time": "3:30p", - "home_team": "Atlanta Hawks", - "away_team": "Chicago Bulls", - "home_team_abbrev": "ATL", - "away_team_abbrev": "CHI", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_brk_1221", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-21", - "time": "6:00p", - "home_team": "Brooklyn Nets", - "away_team": "Toronto Raptors", - "home_team_abbrev": "BRK", - "away_team_abbrev": "TOR", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_nyk_1221", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-21", - "time": "6:00p", - "home_team": "New York Knicks", - "away_team": "Miami Heat", - "home_team_abbrev": "NYK", - "away_team_abbrev": "MIA", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_min_1221", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-21", - "time": "7:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "MIN", - "away_team_abbrev": "MIL", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_was_1221", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-21", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "WAS", - "away_team_abbrev": "SAS", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_sac_1221", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-21", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Houston Rockets", - "home_team_abbrev": "SAC", - "away_team_abbrev": "HOU", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_cle_1222", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-22", - "time": "7:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "CLE", - "away_team_abbrev": "CHO", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_bos_1222", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-22", - "time": "7:30p", - "home_team": "Boston Celtics", - "away_team": "Indiana Pacers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "IND", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_nop_1222", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-22", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "NOP", - "away_team_abbrev": "DAL", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_den_1222", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-22", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "Utah Jazz", - "home_team_abbrev": "DEN", - "away_team_abbrev": "UTA", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_okc_1222", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-22", - "time": "9:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "OKC", - "away_team_abbrev": "MEM", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_gsw_1222", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-22", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Orlando Magic", - "home_team_abbrev": "GSW", - "away_team_abbrev": "ORL", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_por_1222", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-22", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Detroit Pistons", - "home_team_abbrev": "POR", - "away_team_abbrev": "DET", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_cho_1223", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-23", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Washington Wizards", - "home_team_abbrev": "CHO", - "away_team_abbrev": "WAS", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_phi_1223", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-23", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "PHI", - "away_team_abbrev": "BRK", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_atl_1223", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-23", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Chicago Bulls", - "home_team_abbrev": "ATL", - "away_team_abbrev": "CHI", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_cle_1223", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-23", - "time": "7:30p", - "home_team": "Cleveland Cavaliers", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "CLE", - "away_team_abbrev": "NOP", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_ind_1223", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-23", - "time": "7:30p", - "home_team": "Indiana Pacers", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "IND", - "away_team_abbrev": "MIL", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_mia_1223", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-23", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Toronto Raptors", - "home_team_abbrev": "MIA", - "away_team_abbrev": "TOR", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_dal_1223", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-23", - "time": "8:00p", - "home_team": "Dallas Mavericks", - "away_team": "Denver Nuggets", - "home_team_abbrev": "DAL", - "away_team_abbrev": "DEN", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_min_1223", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-23", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "New York Knicks", - "home_team_abbrev": "MIN", - "away_team_abbrev": "NYK", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_sas_1223", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-23", - "time": "8:30p", - "home_team": "San Antonio Spurs", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "SAS", - "away_team_abbrev": "OKC", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_pho_1223", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-23", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "PHO", - "away_team_abbrev": "LAL", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_uta_1223", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-23", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "UTA", - "away_team_abbrev": "MEM", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_por_1223", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-23", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Orlando Magic", - "home_team_abbrev": "POR", - "away_team_abbrev": "ORL", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_sac_1223", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-23", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Detroit Pistons", - "home_team_abbrev": "SAC", - "away_team_abbrev": "DET", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_lac_1223", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-23", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Houston Rockets", - "home_team_abbrev": "LAC", - "away_team_abbrev": "HOU", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_nyk_1225", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-25", - "time": "12:00p", - "home_team": "New York Knicks", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "NYK", - "away_team_abbrev": "CLE", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_okc_1225", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-25", - "time": "2:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "OKC", - "away_team_abbrev": "SAS", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_gsw_1225", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-25", - "time": "5:00p", - "home_team": "Golden State Warriors", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "GSW", - "away_team_abbrev": "DAL", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_lal_1225", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-25", - "time": "8:00p", - "home_team": "Los Angeles Lakers", - "away_team": "Houston Rockets", - "home_team_abbrev": "LAL", - "away_team_abbrev": "HOU", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_den_1225", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-25", - "time": "10:30p", - "home_team": "Denver Nuggets", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "DEN", - "away_team_abbrev": "MIN", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_atl_1226", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-26", - "time": "7:00p", - "home_team": "Atlanta Hawks", - "away_team": "Miami Heat", - "home_team_abbrev": "ATL", - "away_team_abbrev": "MIA", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_ind_1226", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-26", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Boston Celtics", - "home_team_abbrev": "IND", - "away_team_abbrev": "BOS", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_orl_1226", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-26", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "ORL", - "away_team_abbrev": "CHO", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_was_1226", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-26", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Toronto Raptors", - "home_team_abbrev": "WAS", - "away_team_abbrev": "TOR", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_chi_1226", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-26", - "time": "7:30p", - "home_team": "Chicago Bulls", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "CHI", - "away_team_abbrev": "PHI", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_mem_1226", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-26", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "MEM", - "away_team_abbrev": "MIL", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_nop_1226", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-26", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Phoenix Suns", - "home_team_abbrev": "NOP", - "away_team_abbrev": "PHO", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_uta_1226", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-26", - "time": "9:30p", - "home_team": "Utah Jazz", - "away_team": "Detroit Pistons", - "home_team_abbrev": "UTA", - "away_team_abbrev": "DET", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_por_1226", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-26", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "POR", - "away_team_abbrev": "LAC", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_sac_1227", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-27", - "time": "5:00p", - "home_team": "Sacramento Kings", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "SAC", - "away_team_abbrev": "DAL", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_nop_1227", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-27", - "time": "7:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Phoenix Suns", - "home_team_abbrev": "NOP", - "away_team_abbrev": "PHO", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_orl_1227", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-27", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Denver Nuggets", - "home_team_abbrev": "ORL", - "away_team_abbrev": "DEN", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_atl_1227", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-27", - "time": "8:00p", - "home_team": "Atlanta Hawks", - "away_team": "New York Knicks", - "home_team_abbrev": "ATL", - "away_team_abbrev": "NYK", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_chi_1227", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-27", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "CHI", - "away_team_abbrev": "MIL", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_hou_1227", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-27", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "CLE", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_mia_1227", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-27", - "time": "8:00p", - "home_team": "Miami Heat", - "away_team": "Indiana Pacers", - "home_team_abbrev": "MIA", - "away_team_abbrev": "IND", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_min_1227", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-27", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "MIN", - "away_team_abbrev": "BRK", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_sas_1227", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-27", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Utah Jazz", - "home_team_abbrev": "SAS", - "away_team_abbrev": "UTA", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_okc_1228", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-28", - "time": "3:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "OKC", - "away_team_abbrev": "PHI", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_tor_1228", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-28", - "time": "3:30p", - "home_team": "Toronto Raptors", - "away_team": "Golden State Warriors", - "home_team_abbrev": "TOR", - "away_team_abbrev": "GSW", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_por_1228", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-28", - "time": "6:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Boston Celtics", - "home_team_abbrev": "POR", - "away_team_abbrev": "BOS", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_was_1228", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-28", - "time": "6:00p", - "home_team": "Washington Wizards", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "WAS", - "away_team_abbrev": "MEM", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_lac_1228", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-28", - "time": "9:00p", - "home_team": "Los Angeles Clippers", - "away_team": "Detroit Pistons", - "home_team_abbrev": "LAC", - "away_team_abbrev": "DET", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_lal_1228", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-28", - "time": "9:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Sacramento Kings", - "home_team_abbrev": "LAL", - "away_team_abbrev": "SAC", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_cho_1229", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-29", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "CHO", - "away_team_abbrev": "MIL", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_was_1229", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-29", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Phoenix Suns", - "home_team_abbrev": "WAS", - "away_team_abbrev": "PHO", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_brk_1229", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-29", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Golden State Warriors", - "home_team_abbrev": "BRK", - "away_team_abbrev": "GSW", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_mia_1229", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-29", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Denver Nuggets", - "home_team_abbrev": "MIA", - "away_team_abbrev": "DEN", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_tor_1229", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-29", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "Orlando Magic", - "home_team_abbrev": "TOR", - "away_team_abbrev": "ORL", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_chi_1229", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-29", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "CHI", - "away_team_abbrev": "MIN", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_hou_1229", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-29", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Indiana Pacers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "IND", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_nop_1229", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-29", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "New York Knicks", - "home_team_abbrev": "NOP", - "away_team_abbrev": "NYK", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_okc_1229", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-29", - "time": "8:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "OKC", - "away_team_abbrev": "ATL", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_sas_1229", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-29", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "SAS", - "away_team_abbrev": "CLE", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_por_1229", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-29", - "time": "10:30p", - "home_team": "Portland Trail Blazers", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "POR", - "away_team_abbrev": "DAL", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_mem_1230", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-30", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "MEM", - "away_team_abbrev": "PHI", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_uta_1230", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-30", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Boston Celtics", - "home_team_abbrev": "UTA", - "away_team_abbrev": "BOS", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_lal_1230", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-30", - "time": "10:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Detroit Pistons", - "home_team_abbrev": "LAL", - "away_team_abbrev": "DET", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_lac_1230", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-30", - "time": "11:00p", - "home_team": "Los Angeles Clippers", - "away_team": "Sacramento Kings", - "home_team_abbrev": "LAC", - "away_team_abbrev": "SAC", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_cho_1231", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-31", - "time": "1:00p", - "home_team": "Charlotte Hornets", - "away_team": "Golden State Warriors", - "home_team_abbrev": "CHO", - "away_team_abbrev": "GSW", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_atl_1231", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-31", - "time": "3:00p", - "home_team": "Atlanta Hawks", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "ATL", - "away_team_abbrev": "MIN", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_ind_1231", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-31", - "time": "3:00p", - "home_team": "Indiana Pacers", - "away_team": "Orlando Magic", - "home_team_abbrev": "IND", - "away_team_abbrev": "ORL", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_cle_1231", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-31", - "time": "3:30p", - "home_team": "Cleveland Cavaliers", - "away_team": "Phoenix Suns", - "home_team_abbrev": "CLE", - "away_team_abbrev": "PHO", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_chi_1231", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-31", - "time": "7:00p", - "home_team": "Chicago Bulls", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "CHI", - "away_team_abbrev": "NOP", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_sas_1231", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-31", - "time": "7:00p", - "home_team": "San Antonio Spurs", - "away_team": "New York Knicks", - "home_team_abbrev": "SAS", - "away_team_abbrev": "NYK", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_tor_1231", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-31", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "Denver Nuggets", - "home_team_abbrev": "TOR", - "away_team_abbrev": "DEN", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_mil_1231", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-31", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Washington Wizards", - "home_team_abbrev": "MIL", - "away_team_abbrev": "WAS", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_okc_1231", - "sport": "NBA", - "season": "2025-26", - "date": "2025-12-31", - "time": "8:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "OKC", - "away_team_abbrev": "POR", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_brk_0101", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-01", - "time": "6:00p", - "home_team": "Brooklyn Nets", - "away_team": "Houston Rockets", - "home_team_abbrev": "BRK", - "away_team_abbrev": "HOU", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_det_0101", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-01", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Miami Heat", - "home_team_abbrev": "DET", - "away_team_abbrev": "MIA", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_dal_0101", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-01", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "DAL", - "away_team_abbrev": "PHI", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_sac_0101", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-01", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Boston Celtics", - "home_team_abbrev": "SAC", - "away_team_abbrev": "BOS", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_lac_0101", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-01", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Utah Jazz", - "home_team_abbrev": "LAC", - "away_team_abbrev": "UTA", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_ind_0102", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-02", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "IND", - "away_team_abbrev": "SAS", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_was_0102", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-02", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "WAS", - "away_team_abbrev": "BRK", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_cle_0102", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-02", - "time": "7:30p", - "home_team": "Cleveland Cavaliers", - "away_team": "Denver Nuggets", - "home_team_abbrev": "CLE", - "away_team_abbrev": "DEN", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_nyk_0102", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-02", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "NYK", - "away_team_abbrev": "ATL", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_chi_0102", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-02", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Orlando Magic", - "home_team_abbrev": "CHI", - "away_team_abbrev": "ORL", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_mil_0102", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-02", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CHO", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_nop_0102", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-02", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "NOP", - "away_team_abbrev": "POR", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_pho_0102", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-02", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "Sacramento Kings", - "home_team_abbrev": "PHO", - "away_team_abbrev": "SAC", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_gsw_0102", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-02", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "GSW", - "away_team_abbrev": "OKC", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_lal_0102", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-02", - "time": "10:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "LAL", - "away_team_abbrev": "MEM", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_mia_0103", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-03", - "time": "5:00p", - "home_team": "Miami Heat", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "MIA", - "away_team_abbrev": "MIN", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_nyk_0103", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-03", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "NYK", - "away_team_abbrev": "PHI", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_tor_0103", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-03", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "TOR", - "away_team_abbrev": "ATL", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_chi_0103", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-03", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "CHI", - "away_team_abbrev": "CHO", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_sas_0103", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-03", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "SAS", - "away_team_abbrev": "POR", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_dal_0103", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-03", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Houston Rockets", - "home_team_abbrev": "DAL", - "away_team_abbrev": "HOU", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_gsw_0103", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-03", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Utah Jazz", - "home_team_abbrev": "GSW", - "away_team_abbrev": "UTA", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_lac_0103", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-03", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Boston Celtics", - "home_team_abbrev": "LAC", - "away_team_abbrev": "BOS", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_cle_0104", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-04", - "time": "2:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Detroit Pistons", - "home_team_abbrev": "CLE", - "away_team_abbrev": "DET", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_orl_0104", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-04", - "time": "3:00p", - "home_team": "Orlando Magic", - "away_team": "Indiana Pacers", - "home_team_abbrev": "ORL", - "away_team_abbrev": "IND", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_brk_0104", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-04", - "time": "3:30p", - "home_team": "Brooklyn Nets", - "away_team": "Denver Nuggets", - "home_team_abbrev": "BRK", - "away_team_abbrev": "DEN", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_mia_0104", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-04", - "time": "6:00p", - "home_team": "Miami Heat", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "MIA", - "away_team_abbrev": "NOP", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_was_0104", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-04", - "time": "6:00p", - "home_team": "Washington Wizards", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "WAS", - "away_team_abbrev": "MIN", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_pho_0104", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-04", - "time": "8:00p", - "home_team": "Phoenix Suns", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "PHO", - "away_team_abbrev": "OKC", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_sac_0104", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-04", - "time": "9:00p", - "home_team": "Sacramento Kings", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "SAC", - "away_team_abbrev": "MIL", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_lal_0104", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-04", - "time": "9:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "LAL", - "away_team_abbrev": "MEM", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_det_0105", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-05", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "New York Knicks", - "home_team_abbrev": "DET", - "away_team_abbrev": "NYK", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_bos_0105", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-05", - "time": "7:30p", - "home_team": "Boston Celtics", - "away_team": "Chicago Bulls", - "home_team_abbrev": "BOS", - "away_team_abbrev": "CHI", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_tor_0105", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-05", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "TOR", - "away_team_abbrev": "ATL", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_hou_0105", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-05", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Phoenix Suns", - "home_team_abbrev": "HOU", - "away_team_abbrev": "PHO", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_okc_0105", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-05", - "time": "8:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "OKC", - "away_team_abbrev": "CHO", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_phi_0105", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-05", - "time": "8:30p", - "home_team": "Philadelphia 76ers", - "away_team": "Denver Nuggets", - "home_team_abbrev": "PHI", - "away_team_abbrev": "DEN", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_lac_0105", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-05", - "time": "10:00p", - "home_team": "Los Angeles Clippers", - "away_team": "Golden State Warriors", - "home_team_abbrev": "LAC", - "away_team_abbrev": "GSW", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_por_0105", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-05", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Utah Jazz", - "home_team_abbrev": "POR", - "away_team_abbrev": "UTA", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_ind_0106", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-06", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "IND", - "away_team_abbrev": "CLE", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_was_0106", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-06", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Orlando Magic", - "home_team_abbrev": "WAS", - "away_team_abbrev": "ORL", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_mem_0106", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-06", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "MEM", - "away_team_abbrev": "SAS", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_min_0106", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-06", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Miami Heat", - "home_team_abbrev": "MIN", - "away_team_abbrev": "MIA", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_nop_0106", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-06", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "NOP", - "away_team_abbrev": "LAL", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_sac_0106", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-06", - "time": "11:00p", - "home_team": "Sacramento Kings", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "SAC", - "away_team_abbrev": "DAL", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_bos_0107", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-07", - "time": "7:00p", - "home_team": "Boston Celtics", - "away_team": "Denver Nuggets", - "home_team_abbrev": "BOS", - "away_team_abbrev": "DEN", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_cho_0107", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-07", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Toronto Raptors", - "home_team_abbrev": "CHO", - "away_team_abbrev": "TOR", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_det_0107", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-07", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Chicago Bulls", - "home_team_abbrev": "DET", - "away_team_abbrev": "CHI", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_phi_0107", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-07", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Washington Wizards", - "home_team_abbrev": "PHI", - "away_team_abbrev": "WAS", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_atl_0107", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-07", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "ATL", - "away_team_abbrev": "NOP", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_brk_0107", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-07", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Orlando Magic", - "home_team_abbrev": "BRK", - "away_team_abbrev": "ORL", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_nyk_0107", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-07", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "NYK", - "away_team_abbrev": "LAC", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_mem_0107", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-07", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Phoenix Suns", - "home_team_abbrev": "MEM", - "away_team_abbrev": "PHO", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_okc_0107", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-07", - "time": "8:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "Utah Jazz", - "home_team_abbrev": "OKC", - "away_team_abbrev": "UTA", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_sas_0107", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-07", - "time": "9:30p", - "home_team": "San Antonio Spurs", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "SAS", - "away_team_abbrev": "LAL", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_gsw_0107", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-07", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "GSW", - "away_team_abbrev": "MIL", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_por_0107", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-07", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Houston Rockets", - "home_team_abbrev": "POR", - "away_team_abbrev": "HOU", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_cho_0108", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-08", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Indiana Pacers", - "home_team_abbrev": "CHO", - "away_team_abbrev": "IND", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_chi_0108", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-08", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Miami Heat", - "home_team_abbrev": "CHI", - "away_team_abbrev": "MIA", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_min_0108", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-08", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CLE", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_uta_0108", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-08", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "UTA", - "away_team_abbrev": "DAL", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_bos_0109", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-09", - "time": "7:00p", - "home_team": "Boston Celtics", - "away_team": "Toronto Raptors", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TOR", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_orl_0109", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-09", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "ORL", - "away_team_abbrev": "PHI", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_was_0109", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-09", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "WAS", - "away_team_abbrev": "NOP", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_brk_0109", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-09", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "BRK", - "away_team_abbrev": "LAC", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_mem_0109", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-09", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "MEM", - "away_team_abbrev": "OKC", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_den_0109", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-09", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "DEN", - "away_team_abbrev": "ATL", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_pho_0109", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-09", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "New York Knicks", - "home_team_abbrev": "PHO", - "away_team_abbrev": "NYK", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_gsw_0109", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-09", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Sacramento Kings", - "home_team_abbrev": "GSW", - "away_team_abbrev": "SAC", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_por_0109", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-09", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Houston Rockets", - "home_team_abbrev": "POR", - "away_team_abbrev": "HOU", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_lal_0109", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-09", - "time": "10:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "LAL", - "away_team_abbrev": "MIL", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_cle_0110", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-10", - "time": "1:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "CLE", - "away_team_abbrev": "MIN", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_ind_0110", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-10", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Miami Heat", - "home_team_abbrev": "IND", - "away_team_abbrev": "MIA", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_det_0110", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-10", - "time": "7:30p", - "home_team": "Detroit Pistons", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "DET", - "away_team_abbrev": "LAC", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_bos_0110", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-10", - "time": "8:00p", - "home_team": "Boston Celtics", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "BOS", - "away_team_abbrev": "SAS", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_chi_0110", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-10", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "CHI", - "away_team_abbrev": "DAL", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_uta_0110", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-10", - "time": "9:30p", - "home_team": "Utah Jazz", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "UTA", - "away_team_abbrev": "CHO", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_orl_0111", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-11", - "time": "3:00p", - "home_team": "Orlando Magic", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "ORL", - "away_team_abbrev": "NOP", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_mem_0111", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-11", - "time": "3:30p", - "home_team": "Memphis Grizzlies", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "MEM", - "away_team_abbrev": "BRK", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_por_0111", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-11", - "time": "6:00p", - "home_team": "Portland Trail Blazers", - "away_team": "New York Knicks", - "home_team_abbrev": "POR", - "away_team_abbrev": "NYK", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_tor_0111", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-11", - "time": "6:00p", - "home_team": "Toronto Raptors", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "PHI", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_min_0111", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-11", - "time": "7:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "MIN", - "away_team_abbrev": "SAS", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_okc_0111", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-11", - "time": "7:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "Miami Heat", - "home_team_abbrev": "OKC", - "away_team_abbrev": "MIA", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_den_0111", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-11", - "time": "8:00p", - "home_team": "Denver Nuggets", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "DEN", - "away_team_abbrev": "MIL", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_pho_0111", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-11", - "time": "8:00p", - "home_team": "Phoenix Suns", - "away_team": "Washington Wizards", - "home_team_abbrev": "PHO", - "away_team_abbrev": "WAS", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_gsw_0111", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-11", - "time": "8:30p", - "home_team": "Golden State Warriors", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "GSW", - "away_team_abbrev": "ATL", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_sac_0111", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-11", - "time": "9:00p", - "home_team": "Sacramento Kings", - "away_team": "Houston Rockets", - "home_team_abbrev": "SAC", - "away_team_abbrev": "HOU", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_cle_0112", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-12", - "time": "7:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Utah Jazz", - "home_team_abbrev": "CLE", - "away_team_abbrev": "UTA", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_ind_0112", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-12", - "time": "7:30p", - "home_team": "Indiana Pacers", - "away_team": "Boston Celtics", - "home_team_abbrev": "IND", - "away_team_abbrev": "BOS", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_tor_0112", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-12", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "PHI", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_dal_0112", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-12", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "DAL", - "away_team_abbrev": "BRK", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_sac_0112", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-12", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "SAC", - "away_team_abbrev": "LAL", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_lac_0112", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-12", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "LAC", - "away_team_abbrev": "CHO", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_mia_0113", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-13", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Phoenix Suns", - "home_team_abbrev": "MIA", - "away_team_abbrev": "PHO", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_hou_0113", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-13", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Chicago Bulls", - "home_team_abbrev": "HOU", - "away_team_abbrev": "CHI", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_mil_0113", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-13", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "MIL", - "away_team_abbrev": "MIN", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_nop_0113", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-13", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Denver Nuggets", - "home_team_abbrev": "NOP", - "away_team_abbrev": "DEN", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_okc_0113", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-13", - "time": "8:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "OKC", - "away_team_abbrev": "SAS", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_lal_0113", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-13", - "time": "10:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "LAL", - "away_team_abbrev": "ATL", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_gsw_0113", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-13", - "time": "11:00p", - "home_team": "Golden State Warriors", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "GSW", - "away_team_abbrev": "POR", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_ind_0114", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-14", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Toronto Raptors", - "home_team_abbrev": "IND", - "away_team_abbrev": "TOR", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_phi_0114", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-14", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CLE", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_chi_0114", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-14", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Utah Jazz", - "home_team_abbrev": "CHI", - "away_team_abbrev": "UTA", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_nop_0114", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-14", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "NOP", - "away_team_abbrev": "BRK", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_dal_0114", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-14", - "time": "9:30p", - "home_team": "Dallas Mavericks", - "away_team": "Denver Nuggets", - "home_team_abbrev": "DAL", - "away_team_abbrev": "DEN", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_sac_0114", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-14", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "New York Knicks", - "home_team_abbrev": "SAC", - "away_team_abbrev": "NYK", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_lac_0114", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-14", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Washington Wizards", - "home_team_abbrev": "LAC", - "away_team_abbrev": "WAS", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_orl_0115", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-15", - "time": "2:00p", - "home_team": "Orlando Magic", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "ORL", - "away_team_abbrev": "MEM", - "venue": "Uber Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_det_0115", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-15", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Phoenix Suns", - "home_team_abbrev": "DET", - "away_team_abbrev": "PHO", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_hou_0115", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-15", - "time": "7:30p", - "home_team": "Houston Rockets", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "HOU", - "away_team_abbrev": "OKC", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_mia_0115", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-15", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Boston Celtics", - "home_team_abbrev": "MIA", - "away_team_abbrev": "BOS", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_sas_0115", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-15", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "SAS", - "away_team_abbrev": "MIL", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_dal_0115", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-15", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Utah Jazz", - "home_team_abbrev": "DAL", - "away_team_abbrev": "UTA", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_gsw_0115", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-15", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "New York Knicks", - "home_team_abbrev": "GSW", - "away_team_abbrev": "NYK", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_por_0115", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-15", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "POR", - "away_team_abbrev": "ATL", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_lal_0115", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-15", - "time": "10:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "LAL", - "away_team_abbrev": "CHO", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_brk_0116", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-16", - "time": "7:00p", - "home_team": "Brooklyn Nets", - "away_team": "Chicago Bulls", - "home_team_abbrev": "BRK", - "away_team_abbrev": "CHI", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_ind_0116", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-16", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "IND", - "away_team_abbrev": "NOP", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_phi_0116", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-16", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CLE", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_tor_0116", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-16", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "LAC", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_hou_0116", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-16", - "time": "9:30p", - "home_team": "Houston Rockets", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "HOU", - "away_team_abbrev": "MIN", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_sac_0116", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-16", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Washington Wizards", - "home_team_abbrev": "SAC", - "away_team_abbrev": "WAS", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_dal_0117", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-17", - "time": "5:00p", - "home_team": "Dallas Mavericks", - "away_team": "Utah Jazz", - "home_team_abbrev": "DAL", - "away_team_abbrev": "UTA", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_atl_0117", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-17", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Boston Celtics", - "home_team_abbrev": "ATL", - "away_team_abbrev": "BOS", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_det_0117", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-17", - "time": "7:30p", - "home_team": "Detroit Pistons", - "away_team": "Indiana Pacers", - "home_team_abbrev": "DET", - "away_team_abbrev": "IND", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_nyk_0117", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-17", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Phoenix Suns", - "home_team_abbrev": "NYK", - "away_team_abbrev": "PHO", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_mia_0117", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-17", - "time": "8:00p", - "home_team": "Miami Heat", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "MIA", - "away_team_abbrev": "OKC", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_sas_0117", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-17", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "SAS", - "away_team_abbrev": "MIN", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_gsw_0117", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-17", - "time": "8:30p", - "home_team": "Golden State Warriors", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "GSW", - "away_team_abbrev": "CHO", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_den_0117", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-17", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "Washington Wizards", - "home_team_abbrev": "DEN", - "away_team_abbrev": "WAS", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_por_0117", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-17", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "POR", - "away_team_abbrev": "LAL", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_mem_0118", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-18", - "time": "12:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Orlando Magic", - "home_team_abbrev": "MEM", - "away_team_abbrev": "ORL", - "venue": "The O2 Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_chi_0118", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-18", - "time": "7:00p", - "home_team": "Chicago Bulls", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "CHI", - "away_team_abbrev": "BRK", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_hou_0118", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-18", - "time": "7:00p", - "home_team": "Houston Rockets", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "HOU", - "away_team_abbrev": "NOP", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_den_0118", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-18", - "time": "8:00p", - "home_team": "Denver Nuggets", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "DEN", - "away_team_abbrev": "CHO", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_sac_0118", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-18", - "time": "9:00p", - "home_team": "Sacramento Kings", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "SAC", - "away_team_abbrev": "POR", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_lal_0118", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-18", - "time": "9:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Toronto Raptors", - "home_team_abbrev": "LAL", - "away_team_abbrev": "TOR", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_atl_0119", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-19", - "time": "1:00p", - "home_team": "Atlanta Hawks", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "ATL", - "away_team_abbrev": "MIL", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_cle_0119", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-19", - "time": "2:30p", - "home_team": "Cleveland Cavaliers", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "CLE", - "away_team_abbrev": "OKC", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_was_0119", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-19", - "time": "3:00p", - "home_team": "Washington Wizards", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "WAS", - "away_team_abbrev": "LAC", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_nyk_0119", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-19", - "time": "5:00p", - "home_team": "New York Knicks", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "NYK", - "away_team_abbrev": "DAL", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_sas_0119", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-19", - "time": "5:00p", - "home_team": "San Antonio Spurs", - "away_team": "Utah Jazz", - "home_team_abbrev": "SAS", - "away_team_abbrev": "UTA", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_phi_0119", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-19", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Indiana Pacers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "IND", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_brk_0119", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-19", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Phoenix Suns", - "home_team_abbrev": "BRK", - "away_team_abbrev": "PHO", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_det_0119", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-19", - "time": "8:00p", - "home_team": "Detroit Pistons", - "away_team": "Boston Celtics", - "home_team_abbrev": "DET", - "away_team_abbrev": "BOS", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_gsw_0119", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-19", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Miami Heat", - "home_team_abbrev": "GSW", - "away_team_abbrev": "MIA", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_phi_0120", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-20", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Phoenix Suns", - "home_team_abbrev": "PHI", - "away_team_abbrev": "PHO", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_chi_0120", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-20", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "CHI", - "away_team_abbrev": "LAC", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_hou_0120", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-20", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "HOU", - "away_team_abbrev": "SAS", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_uta_0120", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-20", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "UTA", - "away_team_abbrev": "MIN", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_den_0120", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-20", - "time": "10:00p", - "home_team": "Denver Nuggets", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "DEN", - "away_team_abbrev": "LAL", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_gsw_0120", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-20", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Toronto Raptors", - "home_team_abbrev": "GSW", - "away_team_abbrev": "TOR", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_sac_0120", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-20", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Miami Heat", - "home_team_abbrev": "SAC", - "away_team_abbrev": "MIA", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_cho_0121", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-21", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "CHO", - "away_team_abbrev": "CLE", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_bos_0121", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-21", - "time": "7:30p", - "home_team": "Boston Celtics", - "away_team": "Indiana Pacers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "IND", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_nyk_0121", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-21", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "NYK", - "away_team_abbrev": "BRK", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_mem_0121", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-21", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "MEM", - "away_team_abbrev": "ATL", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_nop_0121", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-21", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Detroit Pistons", - "home_team_abbrev": "NOP", - "away_team_abbrev": "DET", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_mil_0121", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-21", - "time": "9:30p", - "home_team": "Milwaukee Bucks", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "MIL", - "away_team_abbrev": "OKC", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_sac_0121", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-21", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Toronto Raptors", - "home_team_abbrev": "SAC", - "away_team_abbrev": "TOR", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_orl_0122", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-22", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "ORL", - "away_team_abbrev": "CHO", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_phi_0122", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-22", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Houston Rockets", - "home_team_abbrev": "PHI", - "away_team_abbrev": "HOU", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_was_0122", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-22", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Denver Nuggets", - "home_team_abbrev": "WAS", - "away_team_abbrev": "DEN", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_dal_0122", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-22", - "time": "7:30p", - "home_team": "Dallas Mavericks", - "away_team": "Golden State Warriors", - "home_team_abbrev": "DAL", - "away_team_abbrev": "GSW", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_min_0122", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-22", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Chicago Bulls", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CHI", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_uta_0122", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-22", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "UTA", - "away_team_abbrev": "SAS", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_lac_0122", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-22", - "time": "10:00p", - "home_team": "Los Angeles Clippers", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "LAC", - "away_team_abbrev": "LAL", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_por_0122", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-22", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Miami Heat", - "home_team_abbrev": "POR", - "away_team_abbrev": "MIA", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_det_0123", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-23", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Houston Rockets", - "home_team_abbrev": "DET", - "away_team_abbrev": "HOU", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_atl_0123", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-23", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Phoenix Suns", - "home_team_abbrev": "ATL", - "away_team_abbrev": "PHO", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_brk_0123", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-23", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Boston Celtics", - "home_team_abbrev": "BRK", - "away_team_abbrev": "BOS", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_cle_0123", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-23", - "time": "7:30p", - "home_team": "Cleveland Cavaliers", - "away_team": "Sacramento Kings", - "home_team_abbrev": "CLE", - "away_team_abbrev": "SAC", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_mem_0123", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-23", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "MEM", - "away_team_abbrev": "NOP", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_okc_0123", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-23", - "time": "8:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "Indiana Pacers", - "home_team_abbrev": "OKC", - "away_team_abbrev": "IND", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_mil_0123", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-23", - "time": "9:30p", - "home_team": "Milwaukee Bucks", - "away_team": "Denver Nuggets", - "home_team_abbrev": "MIL", - "away_team_abbrev": "DEN", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_por_0123", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-23", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Toronto Raptors", - "home_team_abbrev": "POR", - "away_team_abbrev": "TOR", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_phi_0124", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-24", - "time": "3:00p", - "home_team": "Philadelphia 76ers", - "away_team": "New York Knicks", - "home_team_abbrev": "PHI", - "away_team_abbrev": "NYK", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_min_0124", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-24", - "time": "5:30p", - "home_team": "Minnesota Timberwolves", - "away_team": "Golden State Warriors", - "home_team_abbrev": "MIN", - "away_team_abbrev": "GSW", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_cho_0124", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-24", - "time": "6:00p", - "home_team": "Charlotte Hornets", - "away_team": "Washington Wizards", - "home_team_abbrev": "CHO", - "away_team_abbrev": "WAS", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_orl_0124", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-24", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "ORL", - "away_team_abbrev": "CLE", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_chi_0124", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-24", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Boston Celtics", - "home_team_abbrev": "CHI", - "away_team_abbrev": "BOS", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_dal_0124", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-24", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "DAL", - "away_team_abbrev": "LAL", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_uta_0124", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-24", - "time": "9:30p", - "home_team": "Utah Jazz", - "away_team": "Miami Heat", - "home_team_abbrev": "UTA", - "away_team_abbrev": "MIA", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_det_0125", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-25", - "time": "3:00p", - "home_team": "Detroit Pistons", - "away_team": "Sacramento Kings", - "home_team_abbrev": "DET", - "away_team_abbrev": "SAC", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_mem_0125", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-25", - "time": "3:30p", - "home_team": "Memphis Grizzlies", - "away_team": "Denver Nuggets", - "home_team_abbrev": "MEM", - "away_team_abbrev": "DEN", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_mil_0125", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-25", - "time": "7:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "MIL", - "away_team_abbrev": "DAL", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_okc_0125", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-25", - "time": "7:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "Toronto Raptors", - "home_team_abbrev": "OKC", - "away_team_abbrev": "TOR", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_sas_0125", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-25", - "time": "7:00p", - "home_team": "San Antonio Spurs", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "SAS", - "away_team_abbrev": "NOP", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_pho_0125", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-25", - "time": "8:00p", - "home_team": "Phoenix Suns", - "away_team": "Miami Heat", - "home_team_abbrev": "PHO", - "away_team_abbrev": "MIA", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_lac_0125", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-25", - "time": "9:00p", - "home_team": "Los Angeles Clippers", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "LAC", - "away_team_abbrev": "BRK", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_cho_0126", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-26", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "CHO", - "away_team_abbrev": "PHI", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_cle_0126", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-26", - "time": "7:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Orlando Magic", - "home_team_abbrev": "CLE", - "away_team_abbrev": "ORL", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_atl_0126", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-26", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Indiana Pacers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "IND", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_bos_0126", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-26", - "time": "8:00p", - "home_team": "Boston Celtics", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "POR", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_chi_0126", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-26", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "CHI", - "away_team_abbrev": "LAL", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_hou_0126", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-26", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "HOU", - "away_team_abbrev": "MEM", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_min_0126", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-26", - "time": "9:30p", - "home_team": "Minnesota Timberwolves", - "away_team": "Golden State Warriors", - "home_team_abbrev": "MIN", - "away_team_abbrev": "GSW", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_was_0127", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-27", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "WAS", - "away_team_abbrev": "POR", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_nyk_0127", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-27", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Sacramento Kings", - "home_team_abbrev": "NYK", - "away_team_abbrev": "SAC", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_okc_0127", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-27", - "time": "8:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "OKC", - "away_team_abbrev": "NOP", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_phi_0127", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-27", - "time": "8:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "PHI", - "away_team_abbrev": "MIL", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_den_0127", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-27", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "Detroit Pistons", - "home_team_abbrev": "DEN", - "away_team_abbrev": "DET", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_pho_0127", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-27", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "PHO", - "away_team_abbrev": "BRK", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_uta_0127", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-27", - "time": "10:00p", - "home_team": "Utah Jazz", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "UTA", - "away_team_abbrev": "LAC", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_cle_0128", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-28", - "time": "7:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "CLE", - "away_team_abbrev": "LAL", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_ind_0128", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-28", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Chicago Bulls", - "home_team_abbrev": "IND", - "away_team_abbrev": "CHI", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_bos_0128", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-28", - "time": "7:30p", - "home_team": "Boston Celtics", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "BOS", - "away_team_abbrev": "ATL", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_mia_0128", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-28", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Orlando Magic", - "home_team_abbrev": "MIA", - "away_team_abbrev": "ORL", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_tor_0128", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-28", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "New York Knicks", - "home_team_abbrev": "TOR", - "away_team_abbrev": "NYK", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_mem_0128", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-28", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "MEM", - "away_team_abbrev": "CHO", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_dal_0128", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-28", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "DAL", - "away_team_abbrev": "MIN", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_uta_0128", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-28", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Golden State Warriors", - "home_team_abbrev": "UTA", - "away_team_abbrev": "GSW", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_hou_0128", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-28", - "time": "9:30p", - "home_team": "Houston Rockets", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "HOU", - "away_team_abbrev": "SAS", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_phi_0129", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-29", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Sacramento Kings", - "home_team_abbrev": "PHI", - "away_team_abbrev": "SAC", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_was_0129", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-29", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "WAS", - "away_team_abbrev": "MIL", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_atl_0129", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-29", - "time": "8:00p", - "home_team": "Atlanta Hawks", - "away_team": "Houston Rockets", - "home_team_abbrev": "ATL", - "away_team_abbrev": "HOU", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_dal_0129", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-29", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "DAL", - "away_team_abbrev": "CHO", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_den_0129", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-29", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "DEN", - "away_team_abbrev": "BRK", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_pho_0129", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-29", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "Detroit Pistons", - "home_team_abbrev": "PHO", - "away_team_abbrev": "DET", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_min_0129", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-29", - "time": "9:30p", - "home_team": "Minnesota Timberwolves", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "MIN", - "away_team_abbrev": "OKC", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_orl_0130", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-30", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Toronto Raptors", - "home_team_abbrev": "ORL", - "away_team_abbrev": "TOR", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_was_0130", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-30", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "WAS", - "away_team_abbrev": "LAL", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_bos_0130", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-30", - "time": "7:30p", - "home_team": "Boston Celtics", - "away_team": "Sacramento Kings", - "home_team_abbrev": "BOS", - "away_team_abbrev": "SAC", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_nop_0130", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-30", - "time": "7:30p", - "home_team": "New Orleans Pelicans", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "NOP", - "away_team_abbrev": "MEM", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_nyk_0130", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-30", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "NYK", - "away_team_abbrev": "POR", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_mia_0130", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-30", - "time": "8:00p", - "home_team": "Miami Heat", - "away_team": "Chicago Bulls", - "home_team_abbrev": "MIA", - "away_team_abbrev": "CHI", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_pho_0130", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-30", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "PHO", - "away_team_abbrev": "CLE", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_uta_0130", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-30", - "time": "9:30p", - "home_team": "Utah Jazz", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "UTA", - "away_team_abbrev": "BRK", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_den_0130", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-30", - "time": "10:00p", - "home_team": "Denver Nuggets", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "DEN", - "away_team_abbrev": "LAC", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_gsw_0130", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-30", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Detroit Pistons", - "home_team_abbrev": "GSW", - "away_team_abbrev": "DET", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_cho_0131", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-31", - "time": "3:00p", - "home_team": "Charlotte Hornets", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "CHO", - "away_team_abbrev": "SAS", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_ind_0131", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-31", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "IND", - "away_team_abbrev": "ATL", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_phi_0131", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-31", - "time": "7:30p", - "home_team": "Philadelphia 76ers", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "PHI", - "away_team_abbrev": "NOP", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_mem_0131", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-31", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "MEM", - "away_team_abbrev": "MIN", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_hou_0131", - "sport": "NBA", - "season": "2025-26", - "date": "2026-01-31", - "time": "8:30p", - "home_team": "Houston Rockets", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "HOU", - "away_team_abbrev": "DAL", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_bos_0201", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-01", - "time": "3:30p", - "home_team": "Boston Celtics", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "BOS", - "away_team_abbrev": "MIL", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_sas_0201", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-01", - "time": "4:00p", - "home_team": "San Antonio Spurs", - "away_team": "Orlando Magic", - "home_team_abbrev": "SAS", - "away_team_abbrev": "ORL", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_det_0201", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-01", - "time": "6:00p", - "home_team": "Detroit Pistons", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "DET", - "away_team_abbrev": "BRK", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_mia_0201", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-01", - "time": "6:00p", - "home_team": "Miami Heat", - "away_team": "Chicago Bulls", - "home_team_abbrev": "MIA", - "away_team_abbrev": "CHI", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_tor_0201", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-01", - "time": "6:00p", - "home_team": "Toronto Raptors", - "away_team": "Utah Jazz", - "home_team_abbrev": "TOR", - "away_team_abbrev": "UTA", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_was_0201", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-01", - "time": "6:00p", - "home_team": "Washington Wizards", - "away_team": "Sacramento Kings", - "home_team_abbrev": "WAS", - "away_team_abbrev": "SAC", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_nyk_0201", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-01", - "time": "7:00p", - "home_team": "New York Knicks", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "NYK", - "away_team_abbrev": "LAL", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_pho_0201", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-01", - "time": "8:00p", - "home_team": "Phoenix Suns", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "PHO", - "away_team_abbrev": "LAC", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_por_0201", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-01", - "time": "9:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "POR", - "away_team_abbrev": "CLE", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_den_0201", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-01", - "time": "9:30p", - "home_team": "Denver Nuggets", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "DEN", - "away_team_abbrev": "OKC", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_cho_0202", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-02", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "CHO", - "away_team_abbrev": "NOP", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_ind_0202", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-02", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Houston Rockets", - "home_team_abbrev": "IND", - "away_team_abbrev": "HOU", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_mem_0202", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-02", - "time": "7:30p", - "home_team": "Memphis Grizzlies", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "MEM", - "away_team_abbrev": "MIN", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_lac_0202", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-02", - "time": "10:00p", - "home_team": "Los Angeles Clippers", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "LAC", - "away_team_abbrev": "PHI", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_det_0203", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-03", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Denver Nuggets", - "home_team_abbrev": "DET", - "away_team_abbrev": "DEN", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_ind_0203", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-03", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Utah Jazz", - "home_team_abbrev": "IND", - "away_team_abbrev": "UTA", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_was_0203", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-03", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "New York Knicks", - "home_team_abbrev": "WAS", - "away_team_abbrev": "NYK", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_brk_0203", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-03", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "BRK", - "away_team_abbrev": "LAL", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_mia_0203", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-03", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "MIA", - "away_team_abbrev": "ATL", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_dal_0203", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-03", - "time": "8:00p", - "home_team": "Dallas Mavericks", - "away_team": "Boston Celtics", - "home_team_abbrev": "DAL", - "away_team_abbrev": "BOS", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_mil_0203", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-03", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Chicago Bulls", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CHI", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_okc_0203", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-03", - "time": "8:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "Orlando Magic", - "home_team_abbrev": "OKC", - "away_team_abbrev": "ORL", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_gsw_0203", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-03", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "GSW", - "away_team_abbrev": "PHI", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_por_0203", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-03", - "time": "11:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Phoenix Suns", - "home_team_abbrev": "POR", - "away_team_abbrev": "PHO", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_nyk_0204", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-04", - "time": "7:00p", - "home_team": "New York Knicks", - "away_team": "Denver Nuggets", - "home_team_abbrev": "NYK", - "away_team_abbrev": "DEN", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_tor_0204", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-04", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "TOR", - "away_team_abbrev": "MIN", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_hou_0204", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-04", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Boston Celtics", - "home_team_abbrev": "HOU", - "away_team_abbrev": "BOS", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_mil_0204", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-04", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "MIL", - "away_team_abbrev": "NOP", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_sas_0204", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-04", - "time": "9:30p", - "home_team": "San Antonio Spurs", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "SAS", - "away_team_abbrev": "OKC", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_sac_0204", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-04", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "SAC", - "away_team_abbrev": "MEM", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_lac_0204", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-04", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "LAC", - "away_team_abbrev": "CLE", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_det_0205", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-05", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Washington Wizards", - "home_team_abbrev": "DET", - "away_team_abbrev": "WAS", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_orl_0205", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-05", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "ORL", - "away_team_abbrev": "BRK", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_atl_0205", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-05", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Utah Jazz", - "home_team_abbrev": "ATL", - "away_team_abbrev": "UTA", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_tor_0205", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-05", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "Chicago Bulls", - "home_team_abbrev": "TOR", - "away_team_abbrev": "CHI", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_hou_0205", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-05", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "HOU", - "away_team_abbrev": "CHO", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_dal_0205", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-05", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "DAL", - "away_team_abbrev": "SAS", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_pho_0205", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-05", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "Golden State Warriors", - "home_team_abbrev": "PHO", - "away_team_abbrev": "GSW", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_lal_0205", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-05", - "time": "10:00p", - "home_team": "Los Angeles Lakers", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "LAL", - "away_team_abbrev": "PHI", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_bos_0206", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-06", - "time": "7:30p", - "home_team": "Boston Celtics", - "away_team": "Miami Heat", - "home_team_abbrev": "BOS", - "away_team_abbrev": "MIA", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_det_0206", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-06", - "time": "7:30p", - "home_team": "Detroit Pistons", - "away_team": "New York Knicks", - "home_team_abbrev": "DET", - "away_team_abbrev": "NYK", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_mil_0206", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-06", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Indiana Pacers", - "home_team_abbrev": "MIL", - "away_team_abbrev": "IND", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_min_0206", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-06", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "MIN", - "away_team_abbrev": "NOP", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_por_0206", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-06", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "POR", - "away_team_abbrev": "MEM", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_sac_0206", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-06", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "SAC", - "away_team_abbrev": "LAC", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_brk_0207", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-07", - "time": "3:00p", - "home_team": "Brooklyn Nets", - "away_team": "Washington Wizards", - "home_team_abbrev": "BRK", - "away_team_abbrev": "WAS", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_okc_0207", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-07", - "time": "3:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "Houston Rockets", - "home_team_abbrev": "OKC", - "away_team_abbrev": "HOU", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_sas_0207", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-07", - "time": "6:00p", - "home_team": "San Antonio Spurs", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "SAS", - "away_team_abbrev": "DAL", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_orl_0207", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-07", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Utah Jazz", - "home_team_abbrev": "ORL", - "away_team_abbrev": "UTA", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_atl_0207", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-07", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "ATL", - "away_team_abbrev": "CHO", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_chi_0207", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-07", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Denver Nuggets", - "home_team_abbrev": "CHI", - "away_team_abbrev": "DEN", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_lal_0207", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-07", - "time": "8:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Golden State Warriors", - "home_team_abbrev": "LAL", - "away_team_abbrev": "GSW", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_pho_0207", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-07", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "PHO", - "away_team_abbrev": "PHI", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_por_0207", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-07", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "POR", - "away_team_abbrev": "MEM", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_sac_0207", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-07", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "SAC", - "away_team_abbrev": "CLE", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_bos_0208", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-08", - "time": "12:30p", - "home_team": "Boston Celtics", - "away_team": "New York Knicks", - "home_team_abbrev": "BOS", - "away_team_abbrev": "NYK", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_was_0208", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-08", - "time": "2:00p", - "home_team": "Washington Wizards", - "away_team": "Miami Heat", - "home_team_abbrev": "WAS", - "away_team_abbrev": "MIA", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_min_0208", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-08", - "time": "3:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "LAC", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_tor_0208", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-08", - "time": "3:00p", - "home_team": "Toronto Raptors", - "away_team": "Indiana Pacers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "IND", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_cho_0209", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-09", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Detroit Pistons", - "home_team_abbrev": "CHO", - "away_team_abbrev": "DET", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_brk_0209", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-09", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Chicago Bulls", - "home_team_abbrev": "BRK", - "away_team_abbrev": "CHI", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_mia_0209", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-09", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Utah Jazz", - "home_team_abbrev": "MIA", - "away_team_abbrev": "UTA", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_orl_0209", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-09", - "time": "7:30p", - "home_team": "Orlando Magic", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "ORL", - "away_team_abbrev": "MIL", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_min_0209", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-09", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "MIN", - "away_team_abbrev": "ATL", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_nop_0209", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-09", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Sacramento Kings", - "home_team_abbrev": "NOP", - "away_team_abbrev": "SAC", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_den_0209", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-09", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "DEN", - "away_team_abbrev": "CLE", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_gsw_0209", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-09", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "GSW", - "away_team_abbrev": "MEM", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_lal_0209", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-09", - "time": "10:00p", - "home_team": "Los Angeles Lakers", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "LAL", - "away_team_abbrev": "OKC", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_por_0209", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-09", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "POR", - "away_team_abbrev": "PHI", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_nyk_0210", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-10", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Indiana Pacers", - "home_team_abbrev": "NYK", - "away_team_abbrev": "IND", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_hou_0210", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-10", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "LAC", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_pho_0210", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-10", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "PHO", - "away_team_abbrev": "DAL", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_lal_0210", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-10", - "time": "10:30p", - "home_team": "Los Angeles Lakers", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "LAL", - "away_team_abbrev": "SAS", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_cho_0211", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-11", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "CHO", - "away_team_abbrev": "ATL", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_cle_0211", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-11", - "time": "7:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Washington Wizards", - "home_team_abbrev": "CLE", - "away_team_abbrev": "WAS", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_orl_0211", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-11", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "ORL", - "away_team_abbrev": "MIL", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_bos_0211", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-11", - "time": "7:30p", - "home_team": "Boston Celtics", - "away_team": "Chicago Bulls", - "home_team_abbrev": "BOS", - "away_team_abbrev": "CHI", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_brk_0211", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-11", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Indiana Pacers", - "home_team_abbrev": "BRK", - "away_team_abbrev": "IND", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_phi_0211", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-11", - "time": "7:30p", - "home_team": "Philadelphia 76ers", - "away_team": "New York Knicks", - "home_team_abbrev": "PHI", - "away_team_abbrev": "NYK", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_tor_0211", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-11", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "Detroit Pistons", - "home_team_abbrev": "TOR", - "away_team_abbrev": "DET", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_hou_0211", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-11", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "LAC", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_min_0211", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-11", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "POR", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_nop_0211", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-11", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Miami Heat", - "home_team_abbrev": "NOP", - "away_team_abbrev": "MIA", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_pho_0211", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-11", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "PHO", - "away_team_abbrev": "OKC", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_uta_0211", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-11", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Sacramento Kings", - "home_team_abbrev": "UTA", - "away_team_abbrev": "SAC", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_den_0211", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-11", - "time": "10:00p", - "home_team": "Denver Nuggets", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "DEN", - "away_team_abbrev": "MEM", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_gsw_0211", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-11", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "GSW", - "away_team_abbrev": "SAS", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_okc_0212", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-12", - "time": "7:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "OKC", - "away_team_abbrev": "MIL", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_uta_0212", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-12", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "UTA", - "away_team_abbrev": "POR", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_lal_0212", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-12", - "time": "10:00p", - "home_team": "Los Angeles Lakers", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "LAL", - "away_team_abbrev": "DAL", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_cho_0219", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-19", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Houston Rockets", - "home_team_abbrev": "CHO", - "away_team_abbrev": "HOU", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_cle_0219", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-19", - "time": "7:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "CLE", - "away_team_abbrev": "BRK", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_phi_0219", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-19", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "PHI", - "away_team_abbrev": "ATL", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_was_0219", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-19", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Indiana Pacers", - "home_team_abbrev": "WAS", - "away_team_abbrev": "IND", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_nyk_0219", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-19", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Detroit Pistons", - "home_team_abbrev": "NYK", - "away_team_abbrev": "DET", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_chi_0219", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-19", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Toronto Raptors", - "home_team_abbrev": "CHI", - "away_team_abbrev": "TOR", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_sas_0219", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-19", - "time": "8:30p", - "home_team": "San Antonio Spurs", - "away_team": "Phoenix Suns", - "home_team_abbrev": "SAS", - "away_team_abbrev": "PHO", - "venue": "Moody Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_gsw_0219", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-19", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Boston Celtics", - "home_team_abbrev": "GSW", - "away_team_abbrev": "BOS", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_sac_0219", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-19", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Orlando Magic", - "home_team_abbrev": "SAC", - "away_team_abbrev": "ORL", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_lac_0219", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-19", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Denver Nuggets", - "home_team_abbrev": "LAC", - "away_team_abbrev": "DEN", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_cho_0220", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-20", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "CHO", - "away_team_abbrev": "CLE", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_mem_0220", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-20", - "time": "7:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Utah Jazz", - "home_team_abbrev": "MEM", - "away_team_abbrev": "UTA", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_was_0220", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-20", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Indiana Pacers", - "home_team_abbrev": "WAS", - "away_team_abbrev": "IND", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_atl_0220", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-20", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Miami Heat", - "home_team_abbrev": "ATL", - "away_team_abbrev": "MIA", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_min_0220", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-20", - "time": "7:30p", - "home_team": "Minnesota Timberwolves", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "MIN", - "away_team_abbrev": "DAL", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_nop_0220", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-20", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "NOP", - "away_team_abbrev": "MIL", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_okc_0220", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-20", - "time": "8:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "OKC", - "away_team_abbrev": "BRK", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_lal_0220", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-20", - "time": "10:00p", - "home_team": "Los Angeles Lakers", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "LAL", - "away_team_abbrev": "LAC", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_por_0220", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-20", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Denver Nuggets", - "home_team_abbrev": "POR", - "away_team_abbrev": "DEN", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_pho_0221", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-21", - "time": "5:00p", - "home_team": "Phoenix Suns", - "away_team": "Orlando Magic", - "home_team_abbrev": "PHO", - "away_team_abbrev": "ORL", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_nop_0221", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-21", - "time": "7:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "NOP", - "away_team_abbrev": "PHI", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_chi_0221", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-21", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Detroit Pistons", - "home_team_abbrev": "CHI", - "away_team_abbrev": "DET", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_mia_0221", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-21", - "time": "8:00p", - "home_team": "Miami Heat", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "MIA", - "away_team_abbrev": "MEM", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_sas_0221", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-21", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Sacramento Kings", - "home_team_abbrev": "SAS", - "away_team_abbrev": "SAC", - "venue": "Moody Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_nyk_0221", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-21", - "time": "8:30p", - "home_team": "New York Knicks", - "away_team": "Houston Rockets", - "home_team_abbrev": "NYK", - "away_team_abbrev": "HOU", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_okc_0222", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-22", - "time": "1:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "OKC", - "away_team_abbrev": "CLE", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_atl_0222", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-22", - "time": "3:30p", - "home_team": "Atlanta Hawks", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "ATL", - "away_team_abbrev": "BRK", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_gsw_0222", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-22", - "time": "3:30p", - "home_team": "Golden State Warriors", - "away_team": "Denver Nuggets", - "home_team_abbrev": "GSW", - "away_team_abbrev": "DEN", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_mil_0222", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-22", - "time": "3:30p", - "home_team": "Milwaukee Bucks", - "away_team": "Toronto Raptors", - "home_team_abbrev": "MIL", - "away_team_abbrev": "TOR", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_ind_0222", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-22", - "time": "5:00p", - "home_team": "Indiana Pacers", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "IND", - "away_team_abbrev": "DAL", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_was_0222", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-22", - "time": "6:00p", - "home_team": "Washington Wizards", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "WAS", - "away_team_abbrev": "CHO", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_lal_0222", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-22", - "time": "6:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Boston Celtics", - "home_team_abbrev": "LAL", - "away_team_abbrev": "BOS", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_min_0222", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-22", - "time": "7:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "PHI", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_chi_0222", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-22", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "New York Knicks", - "home_team_abbrev": "CHI", - "away_team_abbrev": "NYK", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_pho_0222", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-22", - "time": "8:00p", - "home_team": "Phoenix Suns", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "PHO", - "away_team_abbrev": "POR", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_lac_0222", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-22", - "time": "9:00p", - "home_team": "Los Angeles Clippers", - "away_team": "Orlando Magic", - "home_team_abbrev": "LAC", - "away_team_abbrev": "ORL", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_det_0223", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-23", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "DET", - "away_team_abbrev": "SAS", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_mem_0223", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-23", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Sacramento Kings", - "home_team_abbrev": "MEM", - "away_team_abbrev": "SAC", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_hou_0223", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-23", - "time": "9:30p", - "home_team": "Houston Rockets", - "away_team": "Utah Jazz", - "home_team_abbrev": "HOU", - "away_team_abbrev": "UTA", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_ind_0224", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-24", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "IND", - "away_team_abbrev": "PHI", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_atl_0224", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-24", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Washington Wizards", - "home_team_abbrev": "ATL", - "away_team_abbrev": "WAS", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_brk_0224", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-24", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "BRK", - "away_team_abbrev": "DAL", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_tor_0224", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-24", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "TOR", - "away_team_abbrev": "OKC", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_chi_0224", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-24", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "CHI", - "away_team_abbrev": "CHO", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_cle_0224", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-24", - "time": "8:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "New York Knicks", - "home_team_abbrev": "CLE", - "away_team_abbrev": "NYK", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_mil_0224", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-24", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Miami Heat", - "home_team_abbrev": "MIL", - "away_team_abbrev": "MIA", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_nop_0224", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-24", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Golden State Warriors", - "home_team_abbrev": "NOP", - "away_team_abbrev": "GSW", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_pho_0224", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-24", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "Boston Celtics", - "home_team_abbrev": "PHO", - "away_team_abbrev": "BOS", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_lal_0224", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-24", - "time": "10:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Orlando Magic", - "home_team_abbrev": "LAL", - "away_team_abbrev": "ORL", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_por_0224", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-24", - "time": "11:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "POR", - "away_team_abbrev": "MIN", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_det_0225", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-25", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "DET", - "away_team_abbrev": "OKC", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_mem_0225", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-25", - "time": "7:30p", - "home_team": "Memphis Grizzlies", - "away_team": "Golden State Warriors", - "home_team_abbrev": "MEM", - "away_team_abbrev": "GSW", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_tor_0225", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-25", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "TOR", - "away_team_abbrev": "SAS", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_hou_0225", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-25", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Sacramento Kings", - "home_team_abbrev": "HOU", - "away_team_abbrev": "SAC", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_mil_0225", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-25", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CLE", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_den_0225", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-25", - "time": "10:00p", - "home_team": "Denver Nuggets", - "away_team": "Boston Celtics", - "home_team_abbrev": "DEN", - "away_team_abbrev": "BOS", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_ind_0226", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-26", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "IND", - "away_team_abbrev": "CHO", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_phi_0226", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-26", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Miami Heat", - "home_team_abbrev": "PHI", - "away_team_abbrev": "MIA", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_atl_0226", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-26", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Washington Wizards", - "home_team_abbrev": "ATL", - "away_team_abbrev": "WAS", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_brk_0226", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-26", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "BRK", - "away_team_abbrev": "SAS", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_orl_0226", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-26", - "time": "7:30p", - "home_team": "Orlando Magic", - "away_team": "Houston Rockets", - "home_team_abbrev": "ORL", - "away_team_abbrev": "HOU", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_chi_0226", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-26", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "CHI", - "away_team_abbrev": "POR", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_dal_0226", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-26", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Sacramento Kings", - "home_team_abbrev": "DAL", - "away_team_abbrev": "SAC", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_pho_0226", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-26", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "PHO", - "away_team_abbrev": "LAL", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_uta_0226", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-26", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "UTA", - "away_team_abbrev": "NOP", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_lac_0226", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-26", - "time": "10:00p", - "home_team": "Los Angeles Clippers", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "LAC", - "away_team_abbrev": "MIN", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_det_0227", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-27", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "DET", - "away_team_abbrev": "CLE", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_bos_0227", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-27", - "time": "7:30p", - "home_team": "Boston Celtics", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "BOS", - "away_team_abbrev": "BRK", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_mil_0227", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-27", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "New York Knicks", - "home_team_abbrev": "MIL", - "away_team_abbrev": "NYK", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_dal_0227", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-27", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "DAL", - "away_team_abbrev": "MEM", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_okc_0227", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-27", - "time": "9:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "Denver Nuggets", - "home_team_abbrev": "OKC", - "away_team_abbrev": "DEN", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_cho_0228", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-28", - "time": "1:00p", - "home_team": "Charlotte Hornets", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "CHO", - "away_team_abbrev": "POR", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_mia_0228", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-28", - "time": "3:00p", - "home_team": "Miami Heat", - "away_team": "Houston Rockets", - "home_team_abbrev": "MIA", - "away_team_abbrev": "HOU", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_was_0228", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-28", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Toronto Raptors", - "home_team_abbrev": "WAS", - "away_team_abbrev": "TOR", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_gsw_0228", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-28", - "time": "8:30p", - "home_team": "Golden State Warriors", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "GSW", - "away_team_abbrev": "LAL", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_uta_0228", - "sport": "NBA", - "season": "2025-26", - "date": "2026-02-28", - "time": "9:30p", - "home_team": "Utah Jazz", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "UTA", - "away_team_abbrev": "NOP", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_nyk_0301", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-01", - "time": "1:00p", - "home_team": "New York Knicks", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "NYK", - "away_team_abbrev": "SAS", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_brk_0301", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-01", - "time": "3:30p", - "home_team": "Brooklyn Nets", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "BRK", - "away_team_abbrev": "CLE", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_chi_0301", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-01", - "time": "3:30p", - "home_team": "Chicago Bulls", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "CHI", - "away_team_abbrev": "MIL", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_den_0301", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-01", - "time": "3:30p", - "home_team": "Denver Nuggets", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "DEN", - "away_team_abbrev": "MIN", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_ind_0301", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-01", - "time": "5:00p", - "home_team": "Indiana Pacers", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "IND", - "away_team_abbrev": "MEM", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_atl_0301", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-01", - "time": "6:00p", - "home_team": "Atlanta Hawks", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "POR", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_bos_0301", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-01", - "time": "6:00p", - "home_team": "Boston Celtics", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "PHI", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_orl_0301", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-01", - "time": "6:00p", - "home_team": "Orlando Magic", - "away_team": "Detroit Pistons", - "home_team_abbrev": "ORL", - "away_team_abbrev": "DET", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_dal_0301", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-01", - "time": "8:00p", - "home_team": "Dallas Mavericks", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "DAL", - "away_team_abbrev": "OKC", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_lac_0301", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-01", - "time": "9:00p", - "home_team": "Los Angeles Clippers", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "LAC", - "away_team_abbrev": "NOP", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_lal_0301", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-01", - "time": "9:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Sacramento Kings", - "home_team_abbrev": "LAL", - "away_team_abbrev": "SAC", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_was_0302", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-02", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Houston Rockets", - "home_team_abbrev": "WAS", - "away_team_abbrev": "HOU", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_mil_0302", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-02", - "time": "7:30p", - "home_team": "Milwaukee Bucks", - "away_team": "Boston Celtics", - "home_team_abbrev": "MIL", - "away_team_abbrev": "BOS", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_uta_0302", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-02", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Denver Nuggets", - "home_team_abbrev": "UTA", - "away_team_abbrev": "DEN", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_gsw_0302", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-02", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "GSW", - "away_team_abbrev": "LAC", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_cho_0303", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-03", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "CHO", - "away_team_abbrev": "DAL", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_cle_0303", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-03", - "time": "7:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Detroit Pistons", - "home_team_abbrev": "CLE", - "away_team_abbrev": "DET", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_orl_0303", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-03", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Washington Wizards", - "home_team_abbrev": "ORL", - "away_team_abbrev": "WAS", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_mia_0303", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-03", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "MIA", - "away_team_abbrev": "BRK", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_tor_0303", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-03", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "New York Knicks", - "home_team_abbrev": "TOR", - "away_team_abbrev": "NYK", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_chi_0303", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-03", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "CHI", - "away_team_abbrev": "OKC", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_min_0303", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-03", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "MIN", - "away_team_abbrev": "MEM", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_phi_0303", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-03", - "time": "8:00p", - "home_team": "Philadelphia 76ers", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "PHI", - "away_team_abbrev": "SAS", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_lal_0303", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-03", - "time": "10:30p", - "home_team": "Los Angeles Lakers", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "LAL", - "away_team_abbrev": "NOP", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_sac_0303", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-03", - "time": "11:00p", - "home_team": "Sacramento Kings", - "away_team": "Phoenix Suns", - "home_team_abbrev": "SAC", - "away_team_abbrev": "PHO", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_nyk_0304", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-04", - "time": "7:00p", - "home_team": "New York Knicks", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "NYK", - "away_team_abbrev": "OKC", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_bos_0304", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-04", - "time": "7:30p", - "home_team": "Boston Celtics", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "BOS", - "away_team_abbrev": "CHO", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_phi_0304", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-04", - "time": "7:30p", - "home_team": "Philadelphia 76ers", - "away_team": "Utah Jazz", - "home_team_abbrev": "PHI", - "away_team_abbrev": "UTA", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_mem_0304", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-04", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "MEM", - "away_team_abbrev": "POR", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_mil_0304", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-04", - "time": "9:30p", - "home_team": "Milwaukee Bucks", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "MIL", - "away_team_abbrev": "ATL", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_lac_0304", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-04", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Indiana Pacers", - "home_team_abbrev": "LAC", - "away_team_abbrev": "IND", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_orl_0305", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-05", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "ORL", - "away_team_abbrev": "DAL", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_was_0305", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-05", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Utah Jazz", - "home_team_abbrev": "WAS", - "away_team_abbrev": "UTA", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_hou_0305", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-05", - "time": "7:30p", - "home_team": "Houston Rockets", - "away_team": "Golden State Warriors", - "home_team_abbrev": "HOU", - "away_team_abbrev": "GSW", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_mia_0305", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-05", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "MIA", - "away_team_abbrev": "BRK", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_min_0305", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-05", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Toronto Raptors", - "home_team_abbrev": "MIN", - "away_team_abbrev": "TOR", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_sas_0305", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-05", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Detroit Pistons", - "home_team_abbrev": "SAS", - "away_team_abbrev": "DET", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_pho_0305", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-05", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "Chicago Bulls", - "home_team_abbrev": "PHO", - "away_team_abbrev": "CHI", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_den_0305", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-05", - "time": "10:00p", - "home_team": "Denver Nuggets", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "DEN", - "away_team_abbrev": "LAL", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_sac_0305", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-05", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "SAC", - "away_team_abbrev": "NOP", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_bos_0306", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-06", - "time": "7:00p", - "home_team": "Boston Celtics", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "BOS", - "away_team_abbrev": "DAL", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_cho_0306", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-06", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Miami Heat", - "home_team_abbrev": "CHO", - "away_team_abbrev": "MIA", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_hou_0306", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-06", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "POR", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_den_0306", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-06", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "New York Knicks", - "home_team_abbrev": "DEN", - "away_team_abbrev": "NYK", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_pho_0306", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-06", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "PHO", - "away_team_abbrev": "NOP", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_sas_0306", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-06", - "time": "9:30p", - "home_team": "San Antonio Spurs", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "SAS", - "away_team_abbrev": "LAC", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_lal_0306", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-06", - "time": "10:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Indiana Pacers", - "home_team_abbrev": "LAL", - "away_team_abbrev": "IND", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_min_0307", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-07", - "time": "3:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Orlando Magic", - "home_team_abbrev": "MIN", - "away_team_abbrev": "ORL", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_det_0307", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-07", - "time": "6:00p", - "home_team": "Detroit Pistons", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "DET", - "away_team_abbrev": "BRK", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_atl_0307", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-07", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "PHI", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_mem_0307", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-07", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "MEM", - "away_team_abbrev": "LAC", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_mil_0307", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-07", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Utah Jazz", - "home_team_abbrev": "MIL", - "away_team_abbrev": "UTA", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_okc_0307", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-07", - "time": "8:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "Golden State Warriors", - "home_team_abbrev": "OKC", - "away_team_abbrev": "GSW", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_cle_0308", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-08", - "time": "1:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Boston Celtics", - "home_team_abbrev": "CLE", - "away_team_abbrev": "BOS", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_lal_0308", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-08", - "time": "3:30p", - "home_team": "Los Angeles Lakers", - "away_team": "New York Knicks", - "home_team_abbrev": "LAL", - "away_team_abbrev": "NYK", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_mia_0308", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-08", - "time": "6:00p", - "home_team": "Miami Heat", - "away_team": "Detroit Pistons", - "home_team_abbrev": "MIA", - "away_team_abbrev": "DET", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_tor_0308", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-08", - "time": "6:00p", - "home_team": "Toronto Raptors", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "TOR", - "away_team_abbrev": "DAL", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_nop_0308", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-08", - "time": "7:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Washington Wizards", - "home_team_abbrev": "NOP", - "away_team_abbrev": "WAS", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_mil_0308", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-08", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Orlando Magic", - "home_team_abbrev": "MIL", - "away_team_abbrev": "ORL", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_sas_0308", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-08", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Houston Rockets", - "home_team_abbrev": "SAS", - "away_team_abbrev": "HOU", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_pho_0308", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-08", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "PHO", - "away_team_abbrev": "CHO", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_por_0308", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-08", - "time": "9:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Indiana Pacers", - "home_team_abbrev": "POR", - "away_team_abbrev": "IND", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_sac_0308", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-08", - "time": "9:00p", - "home_team": "Sacramento Kings", - "away_team": "Chicago Bulls", - "home_team_abbrev": "SAC", - "away_team_abbrev": "CHI", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_cle_0309", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-09", - "time": "7:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "CLE", - "away_team_abbrev": "PHI", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_brk_0309", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-09", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "BRK", - "away_team_abbrev": "MEM", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_okc_0309", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-09", - "time": "7:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "Denver Nuggets", - "home_team_abbrev": "OKC", - "away_team_abbrev": "DEN", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_uta_0309", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-09", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Golden State Warriors", - "home_team_abbrev": "UTA", - "away_team_abbrev": "GSW", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_lac_0309", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-09", - "time": "10:00p", - "home_team": "Los Angeles Clippers", - "away_team": "New York Knicks", - "home_team_abbrev": "LAC", - "away_team_abbrev": "NYK", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_phi_0310", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-10", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "PHI", - "away_team_abbrev": "MEM", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_brk_0310", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-10", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Detroit Pistons", - "home_team_abbrev": "BRK", - "away_team_abbrev": "DET", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_mia_0310", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-10", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Washington Wizards", - "home_team_abbrev": "MIA", - "away_team_abbrev": "WAS", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_atl_0310", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-10", - "time": "8:00p", - "home_team": "Atlanta Hawks", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "ATL", - "away_team_abbrev": "DAL", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_hou_0310", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-10", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Toronto Raptors", - "home_team_abbrev": "HOU", - "away_team_abbrev": "TOR", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_mil_0310", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-10", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Phoenix Suns", - "home_team_abbrev": "MIL", - "away_team_abbrev": "PHO", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_sas_0310", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-10", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Boston Celtics", - "home_team_abbrev": "SAS", - "away_team_abbrev": "BOS", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_gsw_0310", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-10", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Chicago Bulls", - "home_team_abbrev": "GSW", - "away_team_abbrev": "CHI", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_por_0310", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-10", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "POR", - "away_team_abbrev": "CHO", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_sac_0310", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-10", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Indiana Pacers", - "home_team_abbrev": "SAC", - "away_team_abbrev": "IND", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_lal_0310", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-10", - "time": "11:00p", - "home_team": "Los Angeles Lakers", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "LAL", - "away_team_abbrev": "MIN", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_orl_0311", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-11", - "time": "7:30p", - "home_team": "Orlando Magic", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "ORL", - "away_team_abbrev": "CLE", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_nop_0311", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-11", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Toronto Raptors", - "home_team_abbrev": "NOP", - "away_team_abbrev": "TOR", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_uta_0311", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-11", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "New York Knicks", - "home_team_abbrev": "UTA", - "away_team_abbrev": "NYK", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_den_0311", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-11", - "time": "10:00p", - "home_team": "Denver Nuggets", - "away_team": "Houston Rockets", - "home_team_abbrev": "DEN", - "away_team_abbrev": "HOU", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_sac_0311", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-11", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "SAC", - "away_team_abbrev": "CHO", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_lac_0311", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-11", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "LAC", - "away_team_abbrev": "MIN", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_det_0312", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-12", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "DET", - "away_team_abbrev": "PHI", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_ind_0312", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-12", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Phoenix Suns", - "home_team_abbrev": "IND", - "away_team_abbrev": "PHO", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_orl_0312", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-12", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Washington Wizards", - "home_team_abbrev": "ORL", - "away_team_abbrev": "WAS", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_atl_0312", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-12", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "ATL", - "away_team_abbrev": "BRK", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_mia_0312", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-12", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "MIA", - "away_team_abbrev": "MIL", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_sas_0312", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-12", - "time": "9:00p", - "home_team": "San Antonio Spurs", - "away_team": "Denver Nuggets", - "home_team_abbrev": "SAS", - "away_team_abbrev": "DEN", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_okc_0312", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-12", - "time": "9:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "Boston Celtics", - "home_team_abbrev": "OKC", - "away_team_abbrev": "BOS", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_lal_0312", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-12", - "time": "10:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Chicago Bulls", - "home_team_abbrev": "LAL", - "away_team_abbrev": "CHI", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_det_0313", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-13", - "time": "7:30p", - "home_team": "Detroit Pistons", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "DET", - "away_team_abbrev": "MEM", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_ind_0313", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-13", - "time": "7:30p", - "home_team": "Indiana Pacers", - "away_team": "New York Knicks", - "home_team_abbrev": "IND", - "away_team_abbrev": "NYK", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_tor_0313", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-13", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "Phoenix Suns", - "home_team_abbrev": "TOR", - "away_team_abbrev": "PHO", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_hou_0313", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-13", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "HOU", - "away_team_abbrev": "NOP", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_dal_0313", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-13", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "DAL", - "away_team_abbrev": "CLE", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_gsw_0313", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-13", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "GSW", - "away_team_abbrev": "MIN", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_por_0313", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-13", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Utah Jazz", - "home_team_abbrev": "POR", - "away_team_abbrev": "UTA", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_lac_0313", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-13", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Chicago Bulls", - "home_team_abbrev": "LAC", - "away_team_abbrev": "CHI", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_phi_0314", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-14", - "time": "1:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "PHI", - "away_team_abbrev": "BRK", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_atl_0314", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-14", - "time": "3:00p", - "home_team": "Atlanta Hawks", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "ATL", - "away_team_abbrev": "MIL", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_bos_0314", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-14", - "time": "6:00p", - "home_team": "Boston Celtics", - "away_team": "Washington Wizards", - "home_team_abbrev": "BOS", - "away_team_abbrev": "WAS", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_mia_0314", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-14", - "time": "8:00p", - "home_team": "Miami Heat", - "away_team": "Orlando Magic", - "home_team_abbrev": "MIA", - "away_team_abbrev": "ORL", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_sas_0314", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-14", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "SAS", - "away_team_abbrev": "CHO", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_lal_0314", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-14", - "time": "8:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Denver Nuggets", - "home_team_abbrev": "LAL", - "away_team_abbrev": "DEN", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_lac_0314", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-14", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Sacramento Kings", - "home_team_abbrev": "LAC", - "away_team_abbrev": "SAC", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_okc_0315", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-15", - "time": "1:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "OKC", - "away_team_abbrev": "MIN", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_cle_0315", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-15", - "time": "3:30p", - "home_team": "Cleveland Cavaliers", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "CLE", - "away_team_abbrev": "DAL", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_mil_0315", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-15", - "time": "3:30p", - "home_team": "Milwaukee Bucks", - "away_team": "Indiana Pacers", - "home_team_abbrev": "MIL", - "away_team_abbrev": "IND", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_tor_0315", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-15", - "time": "3:30p", - "home_team": "Toronto Raptors", - "away_team": "Detroit Pistons", - "home_team_abbrev": "TOR", - "away_team_abbrev": "DET", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_phi_0315", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-15", - "time": "6:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "POR", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_nyk_0315", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-15", - "time": "8:00p", - "home_team": "New York Knicks", - "away_team": "Golden State Warriors", - "home_team_abbrev": "NYK", - "away_team_abbrev": "GSW", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_sac_0315", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-15", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Utah Jazz", - "home_team_abbrev": "SAC", - "away_team_abbrev": "UTA", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_atl_0316", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-16", - "time": "7:00p", - "home_team": "Atlanta Hawks", - "away_team": "Orlando Magic", - "home_team_abbrev": "ATL", - "away_team_abbrev": "ORL", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_was_0316", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-16", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Golden State Warriors", - "home_team_abbrev": "WAS", - "away_team_abbrev": "GSW", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_brk_0316", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-16", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "BRK", - "away_team_abbrev": "POR", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_bos_0316", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-16", - "time": "8:00p", - "home_team": "Boston Celtics", - "away_team": "Phoenix Suns", - "home_team_abbrev": "BOS", - "away_team_abbrev": "PHO", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_chi_0316", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-16", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "CHI", - "away_team_abbrev": "MEM", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_nop_0316", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-16", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "NOP", - "away_team_abbrev": "DAL", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_hou_0316", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-16", - "time": "9:00p", - "home_team": "Houston Rockets", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "LAL", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_lac_0316", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-16", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "LAC", - "away_team_abbrev": "SAS", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_cho_0317", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-17", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Miami Heat", - "home_team_abbrev": "CHO", - "away_team_abbrev": "MIA", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_orl_0317", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-17", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "ORL", - "away_team_abbrev": "OKC", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_was_0317", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-17", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Detroit Pistons", - "home_team_abbrev": "WAS", - "away_team_abbrev": "DET", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_nyk_0317", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-17", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Indiana Pacers", - "home_team_abbrev": "NYK", - "away_team_abbrev": "IND", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_mil_0317", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-17", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CLE", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_min_0317", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-17", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Phoenix Suns", - "home_team_abbrev": "MIN", - "away_team_abbrev": "PHO", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_den_0317", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-17", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "DEN", - "away_team_abbrev": "PHI", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_sac_0317", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-17", - "time": "11:00p", - "home_team": "Sacramento Kings", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "SAC", - "away_team_abbrev": "SAS", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_bos_0318", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-18", - "time": "7:00p", - "home_team": "Boston Celtics", - "away_team": "Golden State Warriors", - "home_team_abbrev": "BOS", - "away_team_abbrev": "GSW", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_brk_0318", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-18", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "BRK", - "away_team_abbrev": "OKC", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_ind_0318", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-18", - "time": "7:30p", - "home_team": "Indiana Pacers", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "IND", - "away_team_abbrev": "POR", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_chi_0318", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-18", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Toronto Raptors", - "home_team_abbrev": "CHI", - "away_team_abbrev": "TOR", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_mem_0318", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-18", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "New York Knicks", - "home_team_abbrev": "MEM", - "away_team_abbrev": "NYK", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_min_0318", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-18", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Utah Jazz", - "home_team_abbrev": "MIN", - "away_team_abbrev": "UTA", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_nop_0318", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-18", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "NOP", - "away_team_abbrev": "LAC", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_dal_0318", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-18", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "DAL", - "away_team_abbrev": "ATL", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_hou_0318", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-18", - "time": "9:30p", - "home_team": "Houston Rockets", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "LAL", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_cho_0319", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-19", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Orlando Magic", - "home_team_abbrev": "CHO", - "away_team_abbrev": "ORL", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_was_0319", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-19", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Detroit Pistons", - "home_team_abbrev": "WAS", - "away_team_abbrev": "DET", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_chi_0319", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-19", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "CHI", - "away_team_abbrev": "CLE", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_mia_0319", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-19", - "time": "8:00p", - "home_team": "Miami Heat", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "MIA", - "away_team_abbrev": "LAL", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_nop_0319", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-19", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "NOP", - "away_team_abbrev": "LAC", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_sas_0319", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-19", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Phoenix Suns", - "home_team_abbrev": "SAS", - "away_team_abbrev": "PHO", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_uta_0319", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-19", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "UTA", - "away_team_abbrev": "MIL", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_sac_0319", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-19", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "SAC", - "away_team_abbrev": "PHI", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_brk_0320", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-20", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "New York Knicks", - "home_team_abbrev": "BRK", - "away_team_abbrev": "NYK", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_det_0320", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-20", - "time": "7:30p", - "home_team": "Detroit Pistons", - "away_team": "Golden State Warriors", - "home_team_abbrev": "DET", - "away_team_abbrev": "GSW", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_hou_0320", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-20", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "HOU", - "away_team_abbrev": "ATL", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_mem_0320", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-20", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Boston Celtics", - "home_team_abbrev": "MEM", - "away_team_abbrev": "BOS", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_min_0320", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-20", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "POR", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_den_0320", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-20", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "Toronto Raptors", - "home_team_abbrev": "DEN", - "away_team_abbrev": "TOR", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_was_0321", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-21", - "time": "5:00p", - "home_team": "Washington Wizards", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "WAS", - "away_team_abbrev": "OKC", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_cho_0321", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-21", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "CHO", - "away_team_abbrev": "MEM", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_nop_0321", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-21", - "time": "7:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "NOP", - "away_team_abbrev": "CLE", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_orl_0321", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-21", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "ORL", - "away_team_abbrev": "LAL", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_atl_0321", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-21", - "time": "8:00p", - "home_team": "Atlanta Hawks", - "away_team": "Golden State Warriors", - "home_team_abbrev": "ATL", - "away_team_abbrev": "GSW", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_hou_0321", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-21", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Miami Heat", - "home_team_abbrev": "HOU", - "away_team_abbrev": "MIA", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_sas_0321", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-21", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Indiana Pacers", - "home_team_abbrev": "SAS", - "away_team_abbrev": "IND", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_dal_0321", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-21", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "DAL", - "away_team_abbrev": "LAC", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_uta_0321", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-21", - "time": "9:30p", - "home_team": "Utah Jazz", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "UTA", - "away_team_abbrev": "PHI", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_pho_0321", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-21", - "time": "10:00p", - "home_team": "Phoenix Suns", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "PHO", - "away_team_abbrev": "MIL", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_den_0322", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-22", - "time": "5:00p", - "home_team": "Denver Nuggets", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "DEN", - "away_team_abbrev": "POR", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_sac_0322", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-22", - "time": "6:00p", - "home_team": "Sacramento Kings", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "SAC", - "away_team_abbrev": "BRK", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_nyk_0322", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-22", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Washington Wizards", - "home_team_abbrev": "NYK", - "away_team_abbrev": "WAS", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_bos_0322", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-22", - "time": "8:00p", - "home_team": "Boston Celtics", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "BOS", - "away_team_abbrev": "MIN", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_pho_0322", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-22", - "time": "9:00p", - "home_team": "Phoenix Suns", - "away_team": "Toronto Raptors", - "home_team_abbrev": "PHO", - "away_team_abbrev": "TOR", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_atl_0323", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-23", - "time": "7:00p", - "home_team": "Atlanta Hawks", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "ATL", - "away_team_abbrev": "MEM", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_det_0323", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-23", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "DET", - "away_team_abbrev": "LAL", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_orl_0323", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-23", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Indiana Pacers", - "home_team_abbrev": "ORL", - "away_team_abbrev": "IND", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_phi_0323", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-23", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "PHI", - "away_team_abbrev": "OKC", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_mia_0323", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-23", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "MIA", - "away_team_abbrev": "SAS", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_chi_0323", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-23", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Houston Rockets", - "home_team_abbrev": "CHI", - "away_team_abbrev": "HOU", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_uta_0323", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-23", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Toronto Raptors", - "home_team_abbrev": "UTA", - "away_team_abbrev": "TOR", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_dal_0323", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-23", - "time": "9:30p", - "home_team": "Dallas Mavericks", - "away_team": "Golden State Warriors", - "home_team_abbrev": "DAL", - "away_team_abbrev": "GSW", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_por_0323", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-23", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "POR", - "away_team_abbrev": "BRK", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_lac_0323", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-23", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "LAC", - "away_team_abbrev": "MIL", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_cho_0324", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-24", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Sacramento Kings", - "home_team_abbrev": "CHO", - "away_team_abbrev": "SAC", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_nyk_0324", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-24", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "NYK", - "away_team_abbrev": "NOP", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_cle_0324", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-24", - "time": "8:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Orlando Magic", - "home_team_abbrev": "CLE", - "away_team_abbrev": "ORL", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_pho_0324", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-24", - "time": "11:00p", - "home_team": "Phoenix Suns", - "away_team": "Denver Nuggets", - "home_team_abbrev": "PHO", - "away_team_abbrev": "DEN", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_det_0325", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-25", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "DET", - "away_team_abbrev": "ATL", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_ind_0325", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-25", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "IND", - "away_team_abbrev": "LAL", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_phi_0325", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-25", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Chicago Bulls", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CHI", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_bos_0325", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-25", - "time": "7:30p", - "home_team": "Boston Celtics", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "BOS", - "away_team_abbrev": "OKC", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_cle_0325", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-25", - "time": "7:30p", - "home_team": "Cleveland Cavaliers", - "away_team": "Miami Heat", - "home_team_abbrev": "CLE", - "away_team_abbrev": "MIA", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_mem_0325", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-25", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "MEM", - "away_team_abbrev": "SAS", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_uta_0325", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-25", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Washington Wizards", - "home_team_abbrev": "UTA", - "away_team_abbrev": "WAS", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_min_0325", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-25", - "time": "9:30p", - "home_team": "Minnesota Timberwolves", - "away_team": "Houston Rockets", - "home_team_abbrev": "MIN", - "away_team_abbrev": "HOU", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_den_0325", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-25", - "time": "10:00p", - "home_team": "Denver Nuggets", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "DEN", - "away_team_abbrev": "DAL", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_gsw_0325", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-25", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "GSW", - "away_team_abbrev": "BRK", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_por_0325", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-25", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "POR", - "away_team_abbrev": "MIL", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_lac_0325", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-25", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Toronto Raptors", - "home_team_abbrev": "LAC", - "away_team_abbrev": "TOR", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_cho_0326", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-26", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "New York Knicks", - "home_team_abbrev": "CHO", - "away_team_abbrev": "NYK", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_det_0326", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-26", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "DET", - "away_team_abbrev": "NOP", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_orl_0326", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-26", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Sacramento Kings", - "home_team_abbrev": "ORL", - "away_team_abbrev": "SAC", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_ind_0327", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-27", - "time": "7:00p", - "home_team": "Indiana Pacers", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "IND", - "away_team_abbrev": "LAC", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_bos_0327", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-27", - "time": "7:30p", - "home_team": "Boston Celtics", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "BOS", - "away_team_abbrev": "ATL", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_cle_0327", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-27", - "time": "7:30p", - "home_team": "Cleveland Cavaliers", - "away_team": "Miami Heat", - "home_team_abbrev": "CLE", - "away_team_abbrev": "MIA", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_mem_0327", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-27", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Houston Rockets", - "home_team_abbrev": "MEM", - "away_team_abbrev": "HOU", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_okc_0327", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-27", - "time": "8:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "Chicago Bulls", - "home_team_abbrev": "OKC", - "away_team_abbrev": "CHI", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_tor_0327", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-27", - "time": "8:30p", - "home_team": "Toronto Raptors", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "TOR", - "away_team_abbrev": "NOP", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_den_0327", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-27", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "Utah Jazz", - "home_team_abbrev": "DEN", - "away_team_abbrev": "UTA", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_gsw_0327", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-27", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Washington Wizards", - "home_team_abbrev": "GSW", - "away_team_abbrev": "WAS", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_por_0327", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-27", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "POR", - "away_team_abbrev": "DAL", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_lal_0327", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-27", - "time": "10:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "LAL", - "away_team_abbrev": "BRK", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_mil_0328", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-28", - "time": "3:00p", - "home_team": "Milwaukee Bucks", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "MIL", - "away_team_abbrev": "SAS", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_cho_0328", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-28", - "time": "6:00p", - "home_team": "Charlotte Hornets", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "CHO", - "away_team_abbrev": "PHI", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_atl_0328", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-28", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Sacramento Kings", - "home_team_abbrev": "ATL", - "away_team_abbrev": "SAC", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_mem_0328", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-28", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Chicago Bulls", - "home_team_abbrev": "MEM", - "away_team_abbrev": "CHI", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_min_0328", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-28", - "time": "8:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Detroit Pistons", - "home_team_abbrev": "MIN", - "away_team_abbrev": "DET", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_pho_0328", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-28", - "time": "10:00p", - "home_team": "Phoenix Suns", - "away_team": "Utah Jazz", - "home_team_abbrev": "PHO", - "away_team_abbrev": "UTA", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_mil_0329", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-29", - "time": "3:30p", - "home_team": "Milwaukee Bucks", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "MIL", - "away_team_abbrev": "LAC", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_ind_0329", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-29", - "time": "5:00p", - "home_team": "Indiana Pacers", - "away_team": "Miami Heat", - "home_team_abbrev": "IND", - "away_team_abbrev": "MIA", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_brk_0329", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-29", - "time": "6:00p", - "home_team": "Brooklyn Nets", - "away_team": "Sacramento Kings", - "home_team_abbrev": "BRK", - "away_team_abbrev": "SAC", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_cho_0329", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-29", - "time": "6:00p", - "home_team": "Charlotte Hornets", - "away_team": "Boston Celtics", - "home_team_abbrev": "CHO", - "away_team_abbrev": "BOS", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_por_0329", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-29", - "time": "6:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Washington Wizards", - "home_team_abbrev": "POR", - "away_team_abbrev": "WAS", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_tor_0329", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-29", - "time": "6:00p", - "home_team": "Toronto Raptors", - "away_team": "Orlando Magic", - "home_team_abbrev": "TOR", - "away_team_abbrev": "ORL", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_nop_0329", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-29", - "time": "7:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Houston Rockets", - "home_team_abbrev": "NOP", - "away_team_abbrev": "HOU", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_okc_0329", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-29", - "time": "7:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "New York Knicks", - "home_team_abbrev": "OKC", - "away_team_abbrev": "NYK", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_den_0329", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-29", - "time": "10:00p", - "home_team": "Denver Nuggets", - "away_team": "Golden State Warriors", - "home_team_abbrev": "DEN", - "away_team_abbrev": "GSW", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_mia_0330", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-30", - "time": "7:00p", - "home_team": "Miami Heat", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "MIA", - "away_team_abbrev": "PHI", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_atl_0330", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-30", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Boston Celtics", - "home_team_abbrev": "ATL", - "away_team_abbrev": "BOS", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_mem_0330", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-30", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Phoenix Suns", - "home_team_abbrev": "MEM", - "away_team_abbrev": "PHO", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_sas_0330", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-30", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Chicago Bulls", - "home_team_abbrev": "SAS", - "away_team_abbrev": "CHI", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_dal_0330", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-30", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "DAL", - "away_team_abbrev": "MIN", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_uta_0330", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-30", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "UTA", - "away_team_abbrev": "CLE", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_okc_0330", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-30", - "time": "9:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "Detroit Pistons", - "home_team_abbrev": "OKC", - "away_team_abbrev": "DET", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_lal_0330", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-30", - "time": "10:00p", - "home_team": "Los Angeles Lakers", - "away_team": "Washington Wizards", - "home_team_abbrev": "LAL", - "away_team_abbrev": "WAS", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_orl_0331", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-31", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Phoenix Suns", - "home_team_abbrev": "ORL", - "away_team_abbrev": "PHO", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_brk_0331", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-31", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "BRK", - "away_team_abbrev": "CHO", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_det_0331", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-31", - "time": "8:00p", - "home_team": "Detroit Pistons", - "away_team": "Toronto Raptors", - "home_team_abbrev": "DET", - "away_team_abbrev": "TOR", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_hou_0331", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-31", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "New York Knicks", - "home_team_abbrev": "HOU", - "away_team_abbrev": "NYK", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_lal_0331", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-31", - "time": "10:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "LAL", - "away_team_abbrev": "CLE", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_lac_0331", - "sport": "NBA", - "season": "2025-26", - "date": "2026-03-31", - "time": "11:00p", - "home_team": "Los Angeles Clippers", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "LAC", - "away_team_abbrev": "POR", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_was_0401", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-01", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "WAS", - "away_team_abbrev": "PHI", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_mia_0401", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-01", - "time": "7:30p", - "home_team": "Miami Heat", - "away_team": "Boston Celtics", - "home_team_abbrev": "MIA", - "away_team_abbrev": "BOS", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_orl_0401", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-01", - "time": "7:30p", - "home_team": "Orlando Magic", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "ORL", - "away_team_abbrev": "ATL", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_chi_0401", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-01", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Indiana Pacers", - "home_team_abbrev": "CHI", - "away_team_abbrev": "IND", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_hou_0401", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-01", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "HOU", - "away_team_abbrev": "MIL", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_mem_0401", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-01", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "MEM", - "away_team_abbrev": "DAL", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_tor_0401", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-01", - "time": "8:00p", - "home_team": "Toronto Raptors", - "away_team": "Sacramento Kings", - "home_team_abbrev": "TOR", - "away_team_abbrev": "SAC", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_uta_0401", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-01", - "time": "9:00p", - "home_team": "Utah Jazz", - "away_team": "Denver Nuggets", - "home_team_abbrev": "UTA", - "away_team_abbrev": "DEN", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_gsw_0401", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-01", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "GSW", - "away_team_abbrev": "SAS", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_cho_0402", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-02", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Phoenix Suns", - "home_team_abbrev": "CHO", - "away_team_abbrev": "PHO", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_det_0402", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-02", - "time": "7:00p", - "home_team": "Detroit Pistons", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "DET", - "away_team_abbrev": "MIN", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_okc_0402", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-02", - "time": "7:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "OKC", - "away_team_abbrev": "LAL", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_gsw_0402", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-02", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "GSW", - "away_team_abbrev": "CLE", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_por_0402", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-02", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "POR", - "away_team_abbrev": "NOP", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_lac_0402", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-02", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "LAC", - "away_team_abbrev": "SAS", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_cho_0403", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-03", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Indiana Pacers", - "home_team_abbrev": "CHO", - "away_team_abbrev": "IND", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_phi_0403", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-03", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "PHI", - "away_team_abbrev": "MIN", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_brk_0403", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-03", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "BRK", - "away_team_abbrev": "ATL", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_nyk_0403", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-03", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Chicago Bulls", - "home_team_abbrev": "NYK", - "away_team_abbrev": "CHI", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_hou_0403", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-03", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Utah Jazz", - "home_team_abbrev": "HOU", - "away_team_abbrev": "UTA", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_mem_0403", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-03", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Toronto Raptors", - "home_team_abbrev": "MEM", - "away_team_abbrev": "TOR", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_mil_0403", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-03", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Boston Celtics", - "home_team_abbrev": "MIL", - "away_team_abbrev": "BOS", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_dal_0403", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-03", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Orlando Magic", - "home_team_abbrev": "DAL", - "away_team_abbrev": "ORL", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_sac_0403", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-03", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "SAC", - "away_team_abbrev": "NOP", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_mia_0404", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-04", - "time": "3:00p", - "home_team": "Miami Heat", - "away_team": "Washington Wizards", - "home_team_abbrev": "MIA", - "away_team_abbrev": "WAS", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sas_den_0404", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-04", - "time": "3:00p", - "home_team": "Denver Nuggets", - "away_team": "San Antonio Spurs", - "home_team_abbrev": "DEN", - "away_team_abbrev": "SAS", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_phi_0404", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-04", - "time": "7:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Detroit Pistons", - "home_team_abbrev": "PHI", - "away_team_abbrev": "DET", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_bos_0405", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-05", - "time": "3:30p", - "home_team": "Boston Celtics", - "away_team": "Toronto Raptors", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TOR", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_brk_0405", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-05", - "time": "3:30p", - "home_team": "Brooklyn Nets", - "away_team": "Washington Wizards", - "home_team_abbrev": "BRK", - "away_team_abbrev": "WAS", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_chi_0405", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-05", - "time": "3:30p", - "home_team": "Chicago Bulls", - "away_team": "Phoenix Suns", - "home_team_abbrev": "CHI", - "away_team_abbrev": "PHO", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_mil_0405", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-05", - "time": "3:30p", - "home_team": "Milwaukee Bucks", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "MIL", - "away_team_abbrev": "MEM", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_cle_0405", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-05", - "time": "6:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Indiana Pacers", - "home_team_abbrev": "CLE", - "away_team_abbrev": "IND", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_min_0405", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-05", - "time": "7:00p", - "home_team": "Minnesota Timberwolves", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CHO", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_nop_0405", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-05", - "time": "7:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Orlando Magic", - "home_team_abbrev": "NOP", - "away_team_abbrev": "ORL", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_okc_0405", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-05", - "time": "7:00p", - "home_team": "Oklahoma City Thunder", - "away_team": "Utah Jazz", - "home_team_abbrev": "OKC", - "away_team_abbrev": "UTA", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_dal_0405", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-05", - "time": "7:30p", - "home_team": "Dallas Mavericks", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "DAL", - "away_team_abbrev": "LAL", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_sac_0405", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-05", - "time": "9:00p", - "home_team": "Sacramento Kings", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "SAC", - "away_team_abbrev": "LAC", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_gsw_0405", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-05", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Houston Rockets", - "home_team_abbrev": "GSW", - "away_team_abbrev": "HOU", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nyk_atl_0406", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-06", - "time": "7:00p", - "home_team": "Atlanta Hawks", - "away_team": "New York Knicks", - "home_team_abbrev": "ATL", - "away_team_abbrev": "NYK", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_orl_0406", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-06", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Detroit Pistons", - "home_team_abbrev": "ORL", - "away_team_abbrev": "DET", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_mem_0406", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-06", - "time": "8:00p", - "home_team": "Memphis Grizzlies", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "MEM", - "away_team_abbrev": "CLE", - "venue": "FedExForum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_sas_0406", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-06", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "SAS", - "away_team_abbrev": "PHI", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_den_0406", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-06", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "DEN", - "away_team_abbrev": "POR", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_was_0407", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-07", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Chicago Bulls", - "home_team_abbrev": "WAS", - "away_team_abbrev": "CHI", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_bos_0407", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-07", - "time": "7:30p", - "home_team": "Boston Celtics", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "BOS", - "away_team_abbrev": "CHO", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_brk_0407", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-07", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "BRK", - "away_team_abbrev": "MIL", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_tor_0407", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-07", - "time": "7:30p", - "home_team": "Toronto Raptors", - "away_team": "Miami Heat", - "home_team_abbrev": "TOR", - "away_team_abbrev": "MIA", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_ind_0407", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-07", - "time": "8:00p", - "home_team": "Indiana Pacers", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "IND", - "away_team_abbrev": "MIN", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_nop_0407", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-07", - "time": "8:00p", - "home_team": "New Orleans Pelicans", - "away_team": "Utah Jazz", - "home_team_abbrev": "NOP", - "away_team_abbrev": "UTA", - "venue": "Smoothie King Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_gsw_0407", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-07", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Sacramento Kings", - "home_team_abbrev": "GSW", - "away_team_abbrev": "SAC", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_lal_0407", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-07", - "time": "10:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "LAL", - "away_team_abbrev": "OKC", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_lac_0407", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-07", - "time": "10:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "LAC", - "away_team_abbrev": "DAL", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_hou_pho_0407", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-07", - "time": "11:00p", - "home_team": "Phoenix Suns", - "away_team": "Houston Rockets", - "home_team_abbrev": "PHO", - "away_team_abbrev": "HOU", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_cle_0408", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-08", - "time": "7:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "CLE", - "away_team_abbrev": "ATL", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_orl_0408", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-08", - "time": "7:00p", - "home_team": "Orlando Magic", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "ORL", - "away_team_abbrev": "MIN", - "venue": "Kia Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_det_0408", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-08", - "time": "7:30p", - "home_team": "Detroit Pistons", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "DET", - "away_team_abbrev": "MIL", - "venue": "Little Caesars Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_por_sas_0408", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-08", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Portland Trail Blazers", - "home_team_abbrev": "SAS", - "away_team_abbrev": "POR", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_den_0408", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-08", - "time": "9:00p", - "home_team": "Denver Nuggets", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "DEN", - "away_team_abbrev": "MEM", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_lac_0408", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-08", - "time": "10:00p", - "home_team": "Los Angeles Clippers", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "LAC", - "away_team_abbrev": "OKC", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_pho_0408", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-08", - "time": "10:00p", - "home_team": "Phoenix Suns", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "PHO", - "away_team_abbrev": "DAL", - "venue": "Mortgage Matchup Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_tor_0409", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-09", - "time": "7:00p", - "home_team": "Toronto Raptors", - "away_team": "Miami Heat", - "home_team_abbrev": "TOR", - "away_team_abbrev": "MIA", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_was_0409", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-09", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Chicago Bulls", - "home_team_abbrev": "WAS", - "away_team_abbrev": "CHI", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_ind_brk_0409", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-09", - "time": "7:30p", - "home_team": "Brooklyn Nets", - "away_team": "Indiana Pacers", - "home_team_abbrev": "BRK", - "away_team_abbrev": "IND", - "venue": "Barclays Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_bos_nyk_0409", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-09", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Boston Celtics", - "home_team_abbrev": "NYK", - "away_team_abbrev": "BOS", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_hou_0409", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-09", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "PHI", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lal_gsw_0409", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-09", - "time": "10:00p", - "home_team": "Golden State Warriors", - "away_team": "Los Angeles Lakers", - "home_team_abbrev": "GSW", - "away_team_abbrev": "LAL", - "venue": "Chase Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mia_was_0410", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-10", - "time": "7:00p", - "home_team": "Washington Wizards", - "away_team": "Miami Heat", - "home_team_abbrev": "WAS", - "away_team_abbrev": "MIA", - "venue": "Capital One Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_cho_0410", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-10", - "time": "7:00p", - "home_team": "Charlotte Hornets", - "away_team": "Detroit Pistons", - "home_team_abbrev": "CHO", - "away_team_abbrev": "DET", - "venue": "Spectrum Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_bos_0410", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-10", - "time": "7:30p", - "home_team": "Boston Celtics", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "BOS", - "away_team_abbrev": "NOP", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_phi_ind_0410", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-10", - "time": "7:30p", - "home_team": "Indiana Pacers", - "away_team": "Philadelphia 76ers", - "home_team_abbrev": "IND", - "away_team_abbrev": "PHI", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cle_atl_0410", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-10", - "time": "7:30p", - "home_team": "Atlanta Hawks", - "away_team": "Cleveland Cavaliers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "CLE", - "venue": "State Farm Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_tor_nyk_0410", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-10", - "time": "7:30p", - "home_team": "New York Knicks", - "away_team": "Toronto Raptors", - "home_team_abbrev": "NYK", - "away_team_abbrev": "TOR", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_chi_0410", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-10", - "time": "8:00p", - "home_team": "Chicago Bulls", - "away_team": "Orlando Magic", - "home_team_abbrev": "CHI", - "away_team_abbrev": "ORL", - "venue": "United Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_min_hou_0410", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-10", - "time": "8:00p", - "home_team": "Houston Rockets", - "away_team": "Minnesota Timberwolves", - "home_team_abbrev": "HOU", - "away_team_abbrev": "MIN", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_mil_0410", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-10", - "time": "8:00p", - "home_team": "Milwaukee Bucks", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "MIL", - "away_team_abbrev": "BRK", - "venue": "Fiserv Forum", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_dal_sas_0410", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-10", - "time": "8:00p", - "home_team": "San Antonio Spurs", - "away_team": "Dallas Mavericks", - "home_team_abbrev": "SAS", - "away_team_abbrev": "DAL", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_uta_0410", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-10", - "time": "9:30p", - "home_team": "Utah Jazz", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "UTA", - "away_team_abbrev": "MEM", - "venue": "Delta Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_okc_den_0410", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-10", - "time": "10:00p", - "home_team": "Denver Nuggets", - "away_team": "Oklahoma City Thunder", - "home_team_abbrev": "DEN", - "away_team_abbrev": "OKC", - "venue": "Ball Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_lac_por_0410", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-10", - "time": "10:00p", - "home_team": "Portland Trail Blazers", - "away_team": "Los Angeles Clippers", - "home_team_abbrev": "POR", - "away_team_abbrev": "LAC", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_sac_0410", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-10", - "time": "10:00p", - "home_team": "Sacramento Kings", - "away_team": "Golden State Warriors", - "home_team_abbrev": "SAC", - "away_team_abbrev": "GSW", - "venue": "Golden 1 Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_lal_0410", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-10", - "time": "10:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Phoenix Suns", - "home_team_abbrev": "LAL", - "away_team_abbrev": "PHO", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_orl_bos_0412", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-12", - "time": "6:00p", - "home_team": "Boston Celtics", - "away_team": "Orlando Magic", - "home_team_abbrev": "BOS", - "away_team_abbrev": "ORL", - "venue": "TD Garden", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_was_cle_0412", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-12", - "time": "6:00p", - "home_team": "Cleveland Cavaliers", - "away_team": "Washington Wizards", - "home_team_abbrev": "CLE", - "away_team_abbrev": "WAS", - "venue": "Rocket Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_det_ind_0412", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-12", - "time": "6:00p", - "home_team": "Indiana Pacers", - "away_team": "Detroit Pistons", - "home_team_abbrev": "IND", - "away_team_abbrev": "DET", - "venue": "Gainbridge Fieldhouse", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_atl_mia_0412", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-12", - "time": "6:00p", - "home_team": "Miami Heat", - "away_team": "Atlanta Hawks", - "home_team_abbrev": "MIA", - "away_team_abbrev": "ATL", - "venue": "Kaseya Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_cho_nyk_0412", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-12", - "time": "6:00p", - "home_team": "New York Knicks", - "away_team": "Charlotte Hornets", - "home_team_abbrev": "NYK", - "away_team_abbrev": "CHO", - "venue": "Madison Square Garden (IV)", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mil_phi_0412", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-12", - "time": "6:00p", - "home_team": "Philadelphia 76ers", - "away_team": "Milwaukee Bucks", - "home_team_abbrev": "PHI", - "away_team_abbrev": "MIL", - "venue": "Xfinity Mobile Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_brk_tor_0412", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-12", - "time": "6:00p", - "home_team": "Toronto Raptors", - "away_team": "Brooklyn Nets", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BRK", - "venue": "Scotiabank Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_chi_dal_0412", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-12", - "time": "8:30p", - "home_team": "Dallas Mavericks", - "away_team": "Chicago Bulls", - "home_team_abbrev": "DAL", - "away_team_abbrev": "CHI", - "venue": "American Airlines Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_mem_hou_0412", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-12", - "time": "8:30p", - "home_team": "Houston Rockets", - "away_team": "Memphis Grizzlies", - "home_team_abbrev": "HOU", - "away_team_abbrev": "MEM", - "venue": "Toyota Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_gsw_lac_0412", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-12", - "time": "8:30p", - "home_team": "Los Angeles Clippers", - "away_team": "Golden State Warriors", - "home_team_abbrev": "LAC", - "away_team_abbrev": "GSW", - "venue": "Intuit Dome", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_uta_lal_0412", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-12", - "time": "8:30p", - "home_team": "Los Angeles Lakers", - "away_team": "Utah Jazz", - "home_team_abbrev": "LAL", - "away_team_abbrev": "UTA", - "venue": "Crypto.com Arena", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_nop_min_0412", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-12", - "time": "8:30p", - "home_team": "Minnesota Timberwolves", - "away_team": "New Orleans Pelicans", - "home_team_abbrev": "MIN", - "away_team_abbrev": "NOP", - "venue": "Target Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_pho_okc_0412", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-12", - "time": "8:30p", - "home_team": "Oklahoma City Thunder", - "away_team": "Phoenix Suns", - "home_team_abbrev": "OKC", - "away_team_abbrev": "PHO", - "venue": "Paycom Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_sac_por_0412", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-12", - "time": "8:30p", - "home_team": "Portland Trail Blazers", - "away_team": "Sacramento Kings", - "home_team_abbrev": "POR", - "away_team_abbrev": "SAC", - "venue": "Moda Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nba_202526_den_sas_0412", - "sport": "NBA", - "season": "2025-26", - "date": "2026-04-12", - "time": "8:30p", - "home_team": "San Antonio Spurs", - "away_team": "Denver Nuggets", - "home_team_abbrev": "SAS", - "away_team_abbrev": "DEN", - "venue": "Frost Bank Center", - "source": "basketball-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_sf_0325", - "sport": "MLB", - "season": "2026", - "date": "2026-03-25", - "time": "00:05", - "home_team": "San Francisco Giants", - "away_team": "New York Yankees", - "home_team_abbrev": "SF", - "away_team_abbrev": "NYY", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_mil_0326", - "sport": "MLB", - "season": "2026", - "date": "2026-03-26", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "Chicago White Sox", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CWS", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_bal_0326", - "sport": "MLB", - "season": "2026", - "date": "2026-03-26", - "time": "19:05", - "home_team": "Baltimore Orioles", - "away_team": "Minnesota Twins", - "home_team_abbrev": "BAL", - "away_team_abbrev": "MIN", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_phi_0326", - "sport": "MLB", - "season": "2026", - "date": "2026-03-26", - "time": "19:05", - "home_team": "Philadelphia Phillies", - "away_team": "Texas Rangers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "TEX", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_nym_0326", - "sport": "MLB", - "season": "2026", - "date": "2026-03-26", - "time": "19:10", - "home_team": "New York Mets", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "NYM", - "away_team_abbrev": "PIT", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_cin_0326", - "sport": "MLB", - "season": "2026", - "date": "2026-03-26", - "time": "20:10", - "home_team": "Cincinnati Reds", - "away_team": "Boston Red Sox", - "home_team_abbrev": "CIN", - "away_team_abbrev": "BOS", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_sd_0326", - "sport": "MLB", - "season": "2026", - "date": "2026-03-26", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "Detroit Tigers", - "home_team_abbrev": "SD", - "away_team_abbrev": "DET", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_stl_0326", - "sport": "MLB", - "season": "2026", - "date": "2026-03-26", - "time": "20:15", - "home_team": "St. Louis Cardinals", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "STL", - "away_team_abbrev": "TB", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_lad_0326", - "sport": "MLB", - "season": "2026", - "date": "2026-03-26", - "time": "00:30", - "home_team": "Los Angeles Dodgers", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "LAD", - "away_team_abbrev": "AZ", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_sea_0326", - "sport": "MLB", - "season": "2026", - "date": "2026-03-26", - "time": "02:10", - "home_team": "Seattle Mariners", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "SEA", - "away_team_abbrev": "CLE", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_hou_0326", - "sport": "MLB", - "season": "2026", - "date": "2026-03-26", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "HOU", - "away_team_abbrev": "LAA", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_chc_0326", - "sport": "MLB", - "season": "2026", - "date": "2026-03-26", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Washington Nationals", - "home_team_abbrev": "CHC", - "away_team_abbrev": "WSH", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_sf_0327", - "sport": "MLB", - "season": "2026", - "date": "2026-03-27", - "time": "20:35", - "home_team": "San Francisco Giants", - "away_team": "New York Yankees", - "home_team_abbrev": "SF", - "away_team_abbrev": "NYY", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_tor_0327", - "sport": "MLB", - "season": "2026", - "date": "2026-03-27", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Athletics", - "home_team_abbrev": "TOR", - "away_team_abbrev": "ATH", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_mia_0327", - "sport": "MLB", - "season": "2026", - "date": "2026-03-27", - "time": "23:10", - "home_team": "Miami Marlins", - "away_team": "Colorado Rockies", - "home_team_abbrev": "MIA", - "away_team_abbrev": "COL", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_atl_0327", - "sport": "MLB", - "season": "2026", - "date": "2026-03-27", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Kansas City Royals", - "home_team_abbrev": "ATL", - "away_team_abbrev": "KC", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_sd_0327", - "sport": "MLB", - "season": "2026", - "date": "2026-03-27", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Detroit Tigers", - "home_team_abbrev": "SD", - "away_team_abbrev": "DET", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_sea_0327", - "sport": "MLB", - "season": "2026", - "date": "2026-03-27", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "SEA", - "away_team_abbrev": "CLE", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_lad_0327", - "sport": "MLB", - "season": "2026", - "date": "2026-03-27", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "LAD", - "away_team_abbrev": "AZ", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_hou_0327", - "sport": "MLB", - "season": "2026", - "date": "2026-03-27", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "HOU", - "away_team_abbrev": "LAA", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_stl_0328", - "sport": "MLB", - "season": "2026", - "date": "2026-03-28", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "STL", - "away_team_abbrev": "TB", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_tor_0328", - "sport": "MLB", - "season": "2026", - "date": "2026-03-28", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "Athletics", - "home_team_abbrev": "TOR", - "away_team_abbrev": "ATH", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_bal_0328", - "sport": "MLB", - "season": "2026", - "date": "2026-03-28", - "time": "20:05", - "home_team": "Baltimore Orioles", - "away_team": "Minnesota Twins", - "home_team_abbrev": "BAL", - "away_team_abbrev": "MIN", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_phi_0328", - "sport": "MLB", - "season": "2026", - "date": "2026-03-28", - "time": "20:05", - "home_team": "Philadelphia Phillies", - "away_team": "Texas Rangers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "TEX", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_cin_0328", - "sport": "MLB", - "season": "2026", - "date": "2026-03-28", - "time": "20:10", - "home_team": "Cincinnati Reds", - "away_team": "Boston Red Sox", - "home_team_abbrev": "CIN", - "away_team_abbrev": "BOS", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_nym_0328", - "sport": "MLB", - "season": "2026", - "date": "2026-03-28", - "time": "20:10", - "home_team": "New York Mets", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "NYM", - "away_team_abbrev": "PIT", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_mia_0328", - "sport": "MLB", - "season": "2026", - "date": "2026-03-28", - "time": "20:10", - "home_team": "Miami Marlins", - "away_team": "Colorado Rockies", - "home_team_abbrev": "MIA", - "away_team_abbrev": "COL", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_mil_0328", - "sport": "MLB", - "season": "2026", - "date": "2026-03-28", - "time": "23:10", - "home_team": "Milwaukee Brewers", - "away_team": "Chicago White Sox", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CWS", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_atl_0328", - "sport": "MLB", - "season": "2026", - "date": "2026-03-28", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Kansas City Royals", - "home_team_abbrev": "ATL", - "away_team_abbrev": "KC", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_sf_0328", - "sport": "MLB", - "season": "2026", - "date": "2026-03-28", - "time": "23:15", - "home_team": "San Francisco Giants", - "away_team": "New York Yankees", - "home_team_abbrev": "SF", - "away_team_abbrev": "NYY", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_sd_0328", - "sport": "MLB", - "season": "2026", - "date": "2026-03-28", - "time": "00:40", - "home_team": "San Diego Padres", - "away_team": "Detroit Tigers", - "home_team_abbrev": "SD", - "away_team_abbrev": "DET", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_lad_0328", - "sport": "MLB", - "season": "2026", - "date": "2026-03-28", - "time": "01:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "LAD", - "away_team_abbrev": "AZ", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_sea_0328", - "sport": "MLB", - "season": "2026", - "date": "2026-03-28", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "SEA", - "away_team_abbrev": "CLE", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_hou_0328", - "sport": "MLB", - "season": "2026", - "date": "2026-03-28", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "HOU", - "away_team_abbrev": "LAA", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_chc_0328", - "sport": "MLB", - "season": "2026", - "date": "2026-03-28", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Washington Nationals", - "home_team_abbrev": "CHC", - "away_team_abbrev": "WSH", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_bal_0329", - "sport": "MLB", - "season": "2026", - "date": "2026-03-29", - "time": "17:35", - "home_team": "Baltimore Orioles", - "away_team": "Minnesota Twins", - "home_team_abbrev": "BAL", - "away_team_abbrev": "MIN", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_phi_0329", - "sport": "MLB", - "season": "2026", - "date": "2026-03-29", - "time": "17:35", - "home_team": "Philadelphia Phillies", - "away_team": "Texas Rangers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "TEX", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_atl_0329", - "sport": "MLB", - "season": "2026", - "date": "2026-03-29", - "time": "17:35", - "home_team": "Atlanta Braves", - "away_team": "Kansas City Royals", - "home_team_abbrev": "ATL", - "away_team_abbrev": "KC", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_tor_0329", - "sport": "MLB", - "season": "2026", - "date": "2026-03-29", - "time": "17:37", - "home_team": "Toronto Blue Jays", - "away_team": "Athletics", - "home_team_abbrev": "TOR", - "away_team_abbrev": "ATH", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_cin_0329", - "sport": "MLB", - "season": "2026", - "date": "2026-03-29", - "time": "17:40", - "home_team": "Cincinnati Reds", - "away_team": "Boston Red Sox", - "home_team_abbrev": "CIN", - "away_team_abbrev": "BOS", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_nym_0329", - "sport": "MLB", - "season": "2026", - "date": "2026-03-29", - "time": "17:40", - "home_team": "New York Mets", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "NYM", - "away_team_abbrev": "PIT", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_mia_0329", - "sport": "MLB", - "season": "2026", - "date": "2026-03-29", - "time": "17:40", - "home_team": "Miami Marlins", - "away_team": "Colorado Rockies", - "home_team_abbrev": "MIA", - "away_team_abbrev": "COL", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_mil_0329", - "sport": "MLB", - "season": "2026", - "date": "2026-03-29", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "Chicago White Sox", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CWS", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_stl_0329", - "sport": "MLB", - "season": "2026", - "date": "2026-03-29", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "STL", - "away_team_abbrev": "TB", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_sea_0329", - "sport": "MLB", - "season": "2026", - "date": "2026-03-29", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "SEA", - "away_team_abbrev": "CLE", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_hou_0329", - "sport": "MLB", - "season": "2026", - "date": "2026-03-29", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "HOU", - "away_team_abbrev": "LAA", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_chc_0329", - "sport": "MLB", - "season": "2026", - "date": "2026-03-29", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Washington Nationals", - "home_team_abbrev": "CHC", - "away_team_abbrev": "WSH", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_kc_0330", - "sport": "MLB", - "season": "2026", - "date": "2026-03-30", - "time": "20:10", - "home_team": "Kansas City Royals", - "away_team": "Minnesota Twins", - "home_team_abbrev": "KC", - "away_team_abbrev": "MIN", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_bal_0330", - "sport": "MLB", - "season": "2026", - "date": "2026-03-30", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Texas Rangers", - "home_team_abbrev": "BAL", - "away_team_abbrev": "TEX", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_cin_0330", - "sport": "MLB", - "season": "2026", - "date": "2026-03-30", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "CIN", - "away_team_abbrev": "PIT", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_phi_0330", - "sport": "MLB", - "season": "2026", - "date": "2026-03-30", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Washington Nationals", - "home_team_abbrev": "PHI", - "away_team_abbrev": "WSH", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_mia_0330", - "sport": "MLB", - "season": "2026", - "date": "2026-03-30", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Chicago White Sox", - "home_team_abbrev": "MIA", - "away_team_abbrev": "CWS", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_tor_0330", - "sport": "MLB", - "season": "2026", - "date": "2026-03-30", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Colorado Rockies", - "home_team_abbrev": "TOR", - "away_team_abbrev": "COL", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_atl_0330", - "sport": "MLB", - "season": "2026", - "date": "2026-03-30", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Athletics", - "home_team_abbrev": "ATL", - "away_team_abbrev": "ATH", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_mil_0330", - "sport": "MLB", - "season": "2026", - "date": "2026-03-30", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "MIL", - "away_team_abbrev": "TB", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_stl_0330", - "sport": "MLB", - "season": "2026", - "date": "2026-03-30", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "New York Mets", - "home_team_abbrev": "STL", - "away_team_abbrev": "NYM", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_sd_0330", - "sport": "MLB", - "season": "2026", - "date": "2026-03-30", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "San Francisco Giants", - "home_team_abbrev": "SD", - "away_team_abbrev": "SF", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_sea_0330", - "sport": "MLB", - "season": "2026", - "date": "2026-03-30", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "New York Yankees", - "home_team_abbrev": "SEA", - "away_team_abbrev": "NYY", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_az_0330", - "sport": "MLB", - "season": "2026", - "date": "2026-03-30", - "time": "02:10", - "home_team": "Arizona Diamondbacks", - "away_team": "Detroit Tigers", - "home_team_abbrev": "AZ", - "away_team_abbrev": "DET", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_lad_0330", - "sport": "MLB", - "season": "2026", - "date": "2026-03-30", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "LAD", - "away_team_abbrev": "CLE", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_chc_0330", - "sport": "MLB", - "season": "2026", - "date": "2026-03-30", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "CHC", - "away_team_abbrev": "LAA", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_hou_0330", - "sport": "MLB", - "season": "2026", - "date": "2026-03-30", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Boston Red Sox", - "home_team_abbrev": "HOU", - "away_team_abbrev": "BOS", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_bal_0331", - "sport": "MLB", - "season": "2026", - "date": "2026-03-31", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Texas Rangers", - "home_team_abbrev": "BAL", - "away_team_abbrev": "TEX", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_cin_0331", - "sport": "MLB", - "season": "2026", - "date": "2026-03-31", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "CIN", - "away_team_abbrev": "PIT", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_phi_0331", - "sport": "MLB", - "season": "2026", - "date": "2026-03-31", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Washington Nationals", - "home_team_abbrev": "PHI", - "away_team_abbrev": "WSH", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_mia_0331", - "sport": "MLB", - "season": "2026", - "date": "2026-03-31", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Chicago White Sox", - "home_team_abbrev": "MIA", - "away_team_abbrev": "CWS", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_tor_0331", - "sport": "MLB", - "season": "2026", - "date": "2026-03-31", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Colorado Rockies", - "home_team_abbrev": "TOR", - "away_team_abbrev": "COL", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_atl_0331", - "sport": "MLB", - "season": "2026", - "date": "2026-03-31", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Athletics", - "home_team_abbrev": "ATL", - "away_team_abbrev": "ATH", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_mil_0331", - "sport": "MLB", - "season": "2026", - "date": "2026-03-31", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "MIL", - "away_team_abbrev": "TB", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_stl_0331", - "sport": "MLB", - "season": "2026", - "date": "2026-03-31", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "New York Mets", - "home_team_abbrev": "STL", - "away_team_abbrev": "NYM", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_az_0331", - "sport": "MLB", - "season": "2026", - "date": "2026-03-31", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Detroit Tigers", - "home_team_abbrev": "AZ", - "away_team_abbrev": "DET", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_sd_0331", - "sport": "MLB", - "season": "2026", - "date": "2026-03-31", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "San Francisco Giants", - "home_team_abbrev": "SD", - "away_team_abbrev": "SF", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_sea_0331", - "sport": "MLB", - "season": "2026", - "date": "2026-03-31", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "New York Yankees", - "home_team_abbrev": "SEA", - "away_team_abbrev": "NYY", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_lad_0331", - "sport": "MLB", - "season": "2026", - "date": "2026-03-31", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "LAD", - "away_team_abbrev": "CLE", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_chc_0331", - "sport": "MLB", - "season": "2026", - "date": "2026-03-31", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "CHC", - "away_team_abbrev": "LAA", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_hou_0331", - "sport": "MLB", - "season": "2026", - "date": "2026-03-31", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Boston Red Sox", - "home_team_abbrev": "HOU", - "away_team_abbrev": "BOS", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_atl_0401", - "sport": "MLB", - "season": "2026", - "date": "2026-04-01", - "time": "16:15", - "home_team": "Atlanta Braves", - "away_team": "Athletics", - "home_team_abbrev": "ATL", - "away_team_abbrev": "ATH", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_bal_0401", - "sport": "MLB", - "season": "2026", - "date": "2026-04-01", - "time": "16:35", - "home_team": "Baltimore Orioles", - "away_team": "Texas Rangers", - "home_team_abbrev": "BAL", - "away_team_abbrev": "TEX", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_cin_0401", - "sport": "MLB", - "season": "2026", - "date": "2026-04-01", - "time": "16:40", - "home_team": "Cincinnati Reds", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "CIN", - "away_team_abbrev": "PIT", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_phi_0401", - "sport": "MLB", - "season": "2026", - "date": "2026-04-01", - "time": "17:05", - "home_team": "Philadelphia Phillies", - "away_team": "Washington Nationals", - "home_team_abbrev": "PHI", - "away_team_abbrev": "WSH", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_tor_0401", - "sport": "MLB", - "season": "2026", - "date": "2026-04-01", - "time": "17:07", - "home_team": "Toronto Blue Jays", - "away_team": "Colorado Rockies", - "home_team_abbrev": "TOR", - "away_team_abbrev": "COL", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_mia_0401", - "sport": "MLB", - "season": "2026", - "date": "2026-04-01", - "time": "17:10", - "home_team": "Miami Marlins", - "away_team": "Chicago White Sox", - "home_team_abbrev": "MIA", - "away_team_abbrev": "CWS", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_stl_0401", - "sport": "MLB", - "season": "2026", - "date": "2026-04-01", - "time": "17:15", - "home_team": "St. Louis Cardinals", - "away_team": "New York Mets", - "home_team_abbrev": "STL", - "away_team_abbrev": "NYM", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_mil_0401", - "sport": "MLB", - "season": "2026", - "date": "2026-04-01", - "time": "17:40", - "home_team": "Milwaukee Brewers", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "MIL", - "away_team_abbrev": "TB", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_az_0401", - "sport": "MLB", - "season": "2026", - "date": "2026-04-01", - "time": "19:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Detroit Tigers", - "home_team_abbrev": "AZ", - "away_team_abbrev": "DET", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_sd_0401", - "sport": "MLB", - "season": "2026", - "date": "2026-04-01", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "San Francisco Giants", - "home_team_abbrev": "SD", - "away_team_abbrev": "SF", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_sea_0401", - "sport": "MLB", - "season": "2026", - "date": "2026-04-01", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "New York Yankees", - "home_team_abbrev": "SEA", - "away_team_abbrev": "NYY", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_kc_0401", - "sport": "MLB", - "season": "2026", - "date": "2026-04-01", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Minnesota Twins", - "home_team_abbrev": "KC", - "away_team_abbrev": "MIN", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_lad_0401", - "sport": "MLB", - "season": "2026", - "date": "2026-04-01", - "time": "00:20", - "home_team": "Los Angeles Dodgers", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "LAD", - "away_team_abbrev": "CLE", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_chc_0401", - "sport": "MLB", - "season": "2026", - "date": "2026-04-01", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "CHC", - "away_team_abbrev": "LAA", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_hou_0401", - "sport": "MLB", - "season": "2026", - "date": "2026-04-01", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Boston Red Sox", - "home_team_abbrev": "HOU", - "away_team_abbrev": "BOS", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_kc_0402", - "sport": "MLB", - "season": "2026", - "date": "2026-04-02", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "Minnesota Twins", - "home_team_abbrev": "KC", - "away_team_abbrev": "MIN", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_cws_0402", - "sport": "MLB", - "season": "2026", - "date": "2026-04-02", - "time": "20:10", - "home_team": "Chicago White Sox", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "CWS", - "away_team_abbrev": "TOR", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_az_0402", - "sport": "MLB", - "season": "2026", - "date": "2026-04-02", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Atlanta Braves", - "home_team_abbrev": "AZ", - "away_team_abbrev": "ATL", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_sf_0402", - "sport": "MLB", - "season": "2026", - "date": "2026-04-02", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "New York Mets", - "home_team_abbrev": "SF", - "away_team_abbrev": "NYM", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_wsh_0403", - "sport": "MLB", - "season": "2026", - "date": "2026-04-03", - "time": "17:05", - "home_team": "Washington Nationals", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "WSH", - "away_team_abbrev": "LAD", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_det_0403", - "sport": "MLB", - "season": "2026", - "date": "2026-04-03", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "DET", - "away_team_abbrev": "STL", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_nyy_0403", - "sport": "MLB", - "season": "2026", - "date": "2026-04-03", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Miami Marlins", - "home_team_abbrev": "NYY", - "away_team_abbrev": "MIA", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_bos_0403", - "sport": "MLB", - "season": "2026", - "date": "2026-04-03", - "time": "18:10", - "home_team": "Boston Red Sox", - "away_team": "San Diego Padres", - "home_team_abbrev": "BOS", - "away_team_abbrev": "SD", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_tex_0403", - "sport": "MLB", - "season": "2026", - "date": "2026-04-03", - "time": "20:05", - "home_team": "Texas Rangers", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "TEX", - "away_team_abbrev": "CIN", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_min_0403", - "sport": "MLB", - "season": "2026", - "date": "2026-04-03", - "time": "20:10", - "home_team": "Minnesota Twins", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "MIN", - "away_team_abbrev": "TB", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_col_0403", - "sport": "MLB", - "season": "2026", - "date": "2026-04-03", - "time": "20:10", - "home_team": "Colorado Rockies", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "COL", - "away_team_abbrev": "PHI", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_pit_0403", - "sport": "MLB", - "season": "2026", - "date": "2026-04-03", - "time": "20:12", - "home_team": "Pittsburgh Pirates", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "PIT", - "away_team_abbrev": "BAL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_kc_0403", - "sport": "MLB", - "season": "2026", - "date": "2026-04-03", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "KC", - "away_team_abbrev": "MIL", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_laa_0403", - "sport": "MLB", - "season": "2026", - "date": "2026-04-03", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Seattle Mariners", - "home_team_abbrev": "LAA", - "away_team_abbrev": "SEA", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_ath_0403", - "sport": "MLB", - "season": "2026", - "date": "2026-04-03", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Houston Astros", - "home_team_abbrev": "ATH", - "away_team_abbrev": "HOU", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_az_0403", - "sport": "MLB", - "season": "2026", - "date": "2026-04-03", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Atlanta Braves", - "home_team_abbrev": "AZ", - "away_team_abbrev": "ATL", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_sf_0403", - "sport": "MLB", - "season": "2026", - "date": "2026-04-03", - "time": "02:15", - "home_team": "San Francisco Giants", - "away_team": "New York Mets", - "home_team_abbrev": "SF", - "away_team_abbrev": "NYM", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_cle_0403", - "sport": "MLB", - "season": "2026", - "date": "2026-04-03", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Chicago Cubs", - "home_team_abbrev": "CLE", - "away_team_abbrev": "CHC", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_det_0404", - "sport": "MLB", - "season": "2026", - "date": "2026-04-04", - "time": "17:05", - "home_team": "Detroit Tigers", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "DET", - "away_team_abbrev": "STL", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_cws_0404", - "sport": "MLB", - "season": "2026", - "date": "2026-04-04", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "CWS", - "away_team_abbrev": "TOR", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_wsh_0404", - "sport": "MLB", - "season": "2026", - "date": "2026-04-04", - "time": "20:05", - "home_team": "Washington Nationals", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "WSH", - "away_team_abbrev": "LAD", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_ath_0404", - "sport": "MLB", - "season": "2026", - "date": "2026-04-04", - "time": "20:05", - "home_team": "Athletics", - "away_team": "Houston Astros", - "home_team_abbrev": "ATH", - "away_team_abbrev": "HOU", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_pit_0404", - "sport": "MLB", - "season": "2026", - "date": "2026-04-04", - "time": "20:05", - "home_team": "Pittsburgh Pirates", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "PIT", - "away_team_abbrev": "BAL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_bos_0404", - "sport": "MLB", - "season": "2026", - "date": "2026-04-04", - "time": "20:10", - "home_team": "Boston Red Sox", - "away_team": "San Diego Padres", - "home_team_abbrev": "BOS", - "away_team_abbrev": "SD", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_kc_0404", - "sport": "MLB", - "season": "2026", - "date": "2026-04-04", - "time": "20:10", - "home_team": "Kansas City Royals", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "KC", - "away_team_abbrev": "MIL", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_tex_0404", - "sport": "MLB", - "season": "2026", - "date": "2026-04-04", - "time": "23:05", - "home_team": "Texas Rangers", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "TEX", - "away_team_abbrev": "CIN", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_nyy_0404", - "sport": "MLB", - "season": "2026", - "date": "2026-04-04", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Miami Marlins", - "home_team_abbrev": "NYY", - "away_team_abbrev": "MIA", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_min_0404", - "sport": "MLB", - "season": "2026", - "date": "2026-04-04", - "time": "23:10", - "home_team": "Minnesota Twins", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "MIN", - "away_team_abbrev": "TB", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_az_0404", - "sport": "MLB", - "season": "2026", - "date": "2026-04-04", - "time": "23:15", - "home_team": "Arizona Diamondbacks", - "away_team": "Atlanta Braves", - "home_team_abbrev": "AZ", - "away_team_abbrev": "ATL", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_col_0404", - "sport": "MLB", - "season": "2026", - "date": "2026-04-04", - "time": "00:10", - "home_team": "Colorado Rockies", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "COL", - "away_team_abbrev": "PHI", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_laa_0404", - "sport": "MLB", - "season": "2026", - "date": "2026-04-04", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Seattle Mariners", - "home_team_abbrev": "LAA", - "away_team_abbrev": "SEA", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_cle_0404", - "sport": "MLB", - "season": "2026", - "date": "2026-04-04", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Chicago Cubs", - "home_team_abbrev": "CLE", - "away_team_abbrev": "CHC", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_sf_0404", - "sport": "MLB", - "season": "2026", - "date": "2026-04-04", - "time": "10:33", - "home_team": "San Francisco Giants", - "away_team": "New York Mets", - "home_team_abbrev": "SF", - "away_team_abbrev": "NYM", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_wsh_0405", - "sport": "MLB", - "season": "2026", - "date": "2026-04-05", - "time": "17:35", - "home_team": "Washington Nationals", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "WSH", - "away_team_abbrev": "LAD", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_pit_0405", - "sport": "MLB", - "season": "2026", - "date": "2026-04-05", - "time": "17:35", - "home_team": "Pittsburgh Pirates", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "PIT", - "away_team_abbrev": "BAL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_bos_0405", - "sport": "MLB", - "season": "2026", - "date": "2026-04-05", - "time": "17:35", - "home_team": "Boston Red Sox", - "away_team": "San Diego Padres", - "home_team_abbrev": "BOS", - "away_team_abbrev": "SD", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_nyy_0405", - "sport": "MLB", - "season": "2026", - "date": "2026-04-05", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Miami Marlins", - "home_team_abbrev": "NYY", - "away_team_abbrev": "MIA", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_det_0405", - "sport": "MLB", - "season": "2026", - "date": "2026-04-05", - "time": "17:40", - "home_team": "Detroit Tigers", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "DET", - "away_team_abbrev": "STL", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_min_0405", - "sport": "MLB", - "season": "2026", - "date": "2026-04-05", - "time": "18:10", - "home_team": "Minnesota Twins", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "MIN", - "away_team_abbrev": "TB", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_cws_0405", - "sport": "MLB", - "season": "2026", - "date": "2026-04-05", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "CWS", - "away_team_abbrev": "TOR", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_kc_0405", - "sport": "MLB", - "season": "2026", - "date": "2026-04-05", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "KC", - "away_team_abbrev": "MIL", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_tex_0405", - "sport": "MLB", - "season": "2026", - "date": "2026-04-05", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "TEX", - "away_team_abbrev": "CIN", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_col_0405", - "sport": "MLB", - "season": "2026", - "date": "2026-04-05", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "COL", - "away_team_abbrev": "PHI", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_ath_0405", - "sport": "MLB", - "season": "2026", - "date": "2026-04-05", - "time": "20:05", - "home_team": "Athletics", - "away_team": "Houston Astros", - "home_team_abbrev": "ATH", - "away_team_abbrev": "HOU", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_sf_0405", - "sport": "MLB", - "season": "2026", - "date": "2026-04-05", - "time": "20:05", - "home_team": "San Francisco Giants", - "away_team": "New York Mets", - "home_team_abbrev": "SF", - "away_team_abbrev": "NYM", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_laa_0405", - "sport": "MLB", - "season": "2026", - "date": "2026-04-05", - "time": "20:07", - "home_team": "Los Angeles Angels", - "away_team": "Seattle Mariners", - "home_team_abbrev": "LAA", - "away_team_abbrev": "SEA", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_az_0405", - "sport": "MLB", - "season": "2026", - "date": "2026-04-05", - "time": "20:10", - "home_team": "Arizona Diamondbacks", - "away_team": "Atlanta Braves", - "home_team_abbrev": "AZ", - "away_team_abbrev": "ATL", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_cle_0405", - "sport": "MLB", - "season": "2026", - "date": "2026-04-05", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Chicago Cubs", - "home_team_abbrev": "CLE", - "away_team_abbrev": "CHC", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_tb_0406", - "sport": "MLB", - "season": "2026", - "date": "2026-04-06", - "time": "20:10", - "home_team": "Tampa Bay Rays", - "away_team": "Chicago Cubs", - "home_team_abbrev": "TB", - "away_team_abbrev": "CHC", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_pit_0406", - "sport": "MLB", - "season": "2026", - "date": "2026-04-06", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "San Diego Padres", - "home_team_abbrev": "PIT", - "away_team_abbrev": "SD", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_mia_0406", - "sport": "MLB", - "season": "2026", - "date": "2026-04-06", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "MIA", - "away_team_abbrev": "CIN", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_wsh_0406", - "sport": "MLB", - "season": "2026", - "date": "2026-04-06", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "WSH", - "away_team_abbrev": "STL", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_bos_0406", - "sport": "MLB", - "season": "2026", - "date": "2026-04-06", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "MIL", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_tor_0406", - "sport": "MLB", - "season": "2026", - "date": "2026-04-06", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "LAD", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_min_0406", - "sport": "MLB", - "season": "2026", - "date": "2026-04-06", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Detroit Tigers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "DET", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_cws_0406", - "sport": "MLB", - "season": "2026", - "date": "2026-04-06", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "CWS", - "away_team_abbrev": "BAL", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_tex_0406", - "sport": "MLB", - "season": "2026", - "date": "2026-04-06", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Seattle Mariners", - "home_team_abbrev": "TEX", - "away_team_abbrev": "SEA", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_col_0406", - "sport": "MLB", - "season": "2026", - "date": "2026-04-06", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Houston Astros", - "home_team_abbrev": "COL", - "away_team_abbrev": "HOU", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_laa_0406", - "sport": "MLB", - "season": "2026", - "date": "2026-04-06", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Atlanta Braves", - "home_team_abbrev": "LAA", - "away_team_abbrev": "ATL", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_sf_0406", - "sport": "MLB", - "season": "2026", - "date": "2026-04-06", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "SF", - "away_team_abbrev": "PHI", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_cle_0406", - "sport": "MLB", - "season": "2026", - "date": "2026-04-06", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Kansas City Royals", - "home_team_abbrev": "CLE", - "away_team_abbrev": "KC", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_pit_0407", - "sport": "MLB", - "season": "2026", - "date": "2026-04-07", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "San Diego Padres", - "home_team_abbrev": "PIT", - "away_team_abbrev": "SD", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_tb_0407", - "sport": "MLB", - "season": "2026", - "date": "2026-04-07", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Chicago Cubs", - "home_team_abbrev": "TB", - "away_team_abbrev": "CHC", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_mia_0407", - "sport": "MLB", - "season": "2026", - "date": "2026-04-07", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "MIA", - "away_team_abbrev": "CIN", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_wsh_0407", - "sport": "MLB", - "season": "2026", - "date": "2026-04-07", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "WSH", - "away_team_abbrev": "STL", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_bos_0407", - "sport": "MLB", - "season": "2026", - "date": "2026-04-07", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "MIL", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_nyy_0407", - "sport": "MLB", - "season": "2026", - "date": "2026-04-07", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Athletics", - "home_team_abbrev": "NYY", - "away_team_abbrev": "ATH", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_tor_0407", - "sport": "MLB", - "season": "2026", - "date": "2026-04-07", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "LAD", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_nym_0407", - "sport": "MLB", - "season": "2026", - "date": "2026-04-07", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "NYM", - "away_team_abbrev": "AZ", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_min_0407", - "sport": "MLB", - "season": "2026", - "date": "2026-04-07", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Detroit Tigers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "DET", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_cws_0407", - "sport": "MLB", - "season": "2026", - "date": "2026-04-07", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "CWS", - "away_team_abbrev": "BAL", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_tex_0407", - "sport": "MLB", - "season": "2026", - "date": "2026-04-07", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Seattle Mariners", - "home_team_abbrev": "TEX", - "away_team_abbrev": "SEA", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_col_0407", - "sport": "MLB", - "season": "2026", - "date": "2026-04-07", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Houston Astros", - "home_team_abbrev": "COL", - "away_team_abbrev": "HOU", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_laa_0407", - "sport": "MLB", - "season": "2026", - "date": "2026-04-07", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Atlanta Braves", - "home_team_abbrev": "LAA", - "away_team_abbrev": "ATL", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_sf_0407", - "sport": "MLB", - "season": "2026", - "date": "2026-04-07", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "SF", - "away_team_abbrev": "PHI", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_cle_0407", - "sport": "MLB", - "season": "2026", - "date": "2026-04-07", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Kansas City Royals", - "home_team_abbrev": "CLE", - "away_team_abbrev": "KC", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_pit_0408", - "sport": "MLB", - "season": "2026", - "date": "2026-04-08", - "time": "16:35", - "home_team": "Pittsburgh Pirates", - "away_team": "San Diego Padres", - "home_team_abbrev": "PIT", - "away_team_abbrev": "SD", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_bos_0408", - "sport": "MLB", - "season": "2026", - "date": "2026-04-08", - "time": "17:35", - "home_team": "Boston Red Sox", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "MIL", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_cws_0408", - "sport": "MLB", - "season": "2026", - "date": "2026-04-08", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "CWS", - "away_team_abbrev": "BAL", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_tex_0408", - "sport": "MLB", - "season": "2026", - "date": "2026-04-08", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "Seattle Mariners", - "home_team_abbrev": "TEX", - "away_team_abbrev": "SEA", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_tor_0408", - "sport": "MLB", - "season": "2026", - "date": "2026-04-08", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "LAD", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_col_0408", - "sport": "MLB", - "season": "2026", - "date": "2026-04-08", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Houston Astros", - "home_team_abbrev": "COL", - "away_team_abbrev": "HOU", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_sf_0408", - "sport": "MLB", - "season": "2026", - "date": "2026-04-08", - "time": "19:45", - "home_team": "San Francisco Giants", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "SF", - "away_team_abbrev": "PHI", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_wsh_0408", - "sport": "MLB", - "season": "2026", - "date": "2026-04-08", - "time": "20:05", - "home_team": "Washington Nationals", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "WSH", - "away_team_abbrev": "STL", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_laa_0408", - "sport": "MLB", - "season": "2026", - "date": "2026-04-08", - "time": "20:07", - "home_team": "Los Angeles Angels", - "away_team": "Atlanta Braves", - "home_team_abbrev": "LAA", - "away_team_abbrev": "ATL", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_tb_0408", - "sport": "MLB", - "season": "2026", - "date": "2026-04-08", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Chicago Cubs", - "home_team_abbrev": "TB", - "away_team_abbrev": "CHC", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_mia_0408", - "sport": "MLB", - "season": "2026", - "date": "2026-04-08", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "MIA", - "away_team_abbrev": "CIN", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_nyy_0408", - "sport": "MLB", - "season": "2026", - "date": "2026-04-08", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Athletics", - "home_team_abbrev": "NYY", - "away_team_abbrev": "ATH", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_nym_0408", - "sport": "MLB", - "season": "2026", - "date": "2026-04-08", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "NYM", - "away_team_abbrev": "AZ", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_min_0408", - "sport": "MLB", - "season": "2026", - "date": "2026-04-08", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Detroit Tigers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "DET", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_cle_0408", - "sport": "MLB", - "season": "2026", - "date": "2026-04-08", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Kansas City Royals", - "home_team_abbrev": "CLE", - "away_team_abbrev": "KC", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_mia_0409", - "sport": "MLB", - "season": "2026", - "date": "2026-04-09", - "time": "16:10", - "home_team": "Miami Marlins", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "MIA", - "away_team_abbrev": "CIN", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_nyy_0409", - "sport": "MLB", - "season": "2026", - "date": "2026-04-09", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Athletics", - "home_team_abbrev": "NYY", - "away_team_abbrev": "ATH", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_min_0409", - "sport": "MLB", - "season": "2026", - "date": "2026-04-09", - "time": "17:40", - "home_team": "Minnesota Twins", - "away_team": "Detroit Tigers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "DET", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_nym_0409", - "sport": "MLB", - "season": "2026", - "date": "2026-04-09", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "NYM", - "away_team_abbrev": "AZ", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_kc_0409", - "sport": "MLB", - "season": "2026", - "date": "2026-04-09", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Chicago White Sox", - "home_team_abbrev": "KC", - "away_team_abbrev": "CWS", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_sd_0409", - "sport": "MLB", - "season": "2026", - "date": "2026-04-09", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Colorado Rockies", - "home_team_abbrev": "SD", - "away_team_abbrev": "COL", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_cin_0410", - "sport": "MLB", - "season": "2026", - "date": "2026-04-10", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "CIN", - "away_team_abbrev": "LAA", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_phi_0410", - "sport": "MLB", - "season": "2026", - "date": "2026-04-10", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "PHI", - "away_team_abbrev": "AZ", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_det_0410", - "sport": "MLB", - "season": "2026", - "date": "2026-04-10", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Miami Marlins", - "home_team_abbrev": "DET", - "away_team_abbrev": "MIA", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_bal_0410", - "sport": "MLB", - "season": "2026", - "date": "2026-04-10", - "time": "23:05", - "home_team": "Baltimore Orioles", - "away_team": "San Francisco Giants", - "home_team_abbrev": "BAL", - "away_team_abbrev": "SF", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_tor_0410", - "sport": "MLB", - "season": "2026", - "date": "2026-04-10", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Minnesota Twins", - "home_team_abbrev": "TOR", - "away_team_abbrev": "MIN", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_nym_0410", - "sport": "MLB", - "season": "2026", - "date": "2026-04-10", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Athletics", - "home_team_abbrev": "NYM", - "away_team_abbrev": "ATH", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_tb_0410", - "sport": "MLB", - "season": "2026", - "date": "2026-04-10", - "time": "23:10", - "home_team": "Tampa Bay Rays", - "away_team": "New York Yankees", - "home_team_abbrev": "TB", - "away_team_abbrev": "NYY", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_atl_0410", - "sport": "MLB", - "season": "2026", - "date": "2026-04-10", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "ATL", - "away_team_abbrev": "CLE", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_kc_0410", - "sport": "MLB", - "season": "2026", - "date": "2026-04-10", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Chicago White Sox", - "home_team_abbrev": "KC", - "away_team_abbrev": "CWS", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_mil_0410", - "sport": "MLB", - "season": "2026", - "date": "2026-04-10", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Washington Nationals", - "home_team_abbrev": "MIL", - "away_team_abbrev": "WSH", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_stl_0410", - "sport": "MLB", - "season": "2026", - "date": "2026-04-10", - "time": "00:15", - "home_team": "St. Louis Cardinals", - "away_team": "Boston Red Sox", - "home_team_abbrev": "STL", - "away_team_abbrev": "BOS", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_sd_0410", - "sport": "MLB", - "season": "2026", - "date": "2026-04-10", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Colorado Rockies", - "home_team_abbrev": "SD", - "away_team_abbrev": "COL", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_sea_0410", - "sport": "MLB", - "season": "2026", - "date": "2026-04-10", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Houston Astros", - "home_team_abbrev": "SEA", - "away_team_abbrev": "HOU", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_lad_0410", - "sport": "MLB", - "season": "2026", - "date": "2026-04-10", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Texas Rangers", - "home_team_abbrev": "LAD", - "away_team_abbrev": "TEX", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_chc_0410", - "sport": "MLB", - "season": "2026", - "date": "2026-04-10", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "CHC", - "away_team_abbrev": "PIT", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_phi_0411", - "sport": "MLB", - "season": "2026", - "date": "2026-04-11", - "time": "17:05", - "home_team": "Philadelphia Phillies", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "PHI", - "away_team_abbrev": "AZ", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_det_0411", - "sport": "MLB", - "season": "2026", - "date": "2026-04-11", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Miami Marlins", - "home_team_abbrev": "DET", - "away_team_abbrev": "MIA", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_tor_0411", - "sport": "MLB", - "season": "2026", - "date": "2026-04-11", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "Minnesota Twins", - "home_team_abbrev": "TOR", - "away_team_abbrev": "MIN", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_cin_0411", - "sport": "MLB", - "season": "2026", - "date": "2026-04-11", - "time": "20:10", - "home_team": "Cincinnati Reds", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "CIN", - "away_team_abbrev": "LAA", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_nym_0411", - "sport": "MLB", - "season": "2026", - "date": "2026-04-11", - "time": "20:10", - "home_team": "New York Mets", - "away_team": "Athletics", - "home_team_abbrev": "NYM", - "away_team_abbrev": "ATH", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_kc_0411", - "sport": "MLB", - "season": "2026", - "date": "2026-04-11", - "time": "20:10", - "home_team": "Kansas City Royals", - "away_team": "Chicago White Sox", - "home_team_abbrev": "KC", - "away_team_abbrev": "CWS", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_tb_0411", - "sport": "MLB", - "season": "2026", - "date": "2026-04-11", - "time": "22:10", - "home_team": "Tampa Bay Rays", - "away_team": "New York Yankees", - "home_team_abbrev": "TB", - "away_team_abbrev": "NYY", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_mil_0411", - "sport": "MLB", - "season": "2026", - "date": "2026-04-11", - "time": "23:10", - "home_team": "Milwaukee Brewers", - "away_team": "Washington Nationals", - "home_team_abbrev": "MIL", - "away_team_abbrev": "WSH", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_bal_0411", - "sport": "MLB", - "season": "2026", - "date": "2026-04-11", - "time": "23:15", - "home_team": "Baltimore Orioles", - "away_team": "San Francisco Giants", - "home_team_abbrev": "BAL", - "away_team_abbrev": "SF", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_stl_0411", - "sport": "MLB", - "season": "2026", - "date": "2026-04-11", - "time": "23:15", - "home_team": "St. Louis Cardinals", - "away_team": "Boston Red Sox", - "home_team_abbrev": "STL", - "away_team_abbrev": "BOS", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_atl_0411", - "sport": "MLB", - "season": "2026", - "date": "2026-04-11", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "ATL", - "away_team_abbrev": "CLE", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_sd_0411", - "sport": "MLB", - "season": "2026", - "date": "2026-04-11", - "time": "00:40", - "home_team": "San Diego Padres", - "away_team": "Colorado Rockies", - "home_team_abbrev": "SD", - "away_team_abbrev": "COL", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_lad_0411", - "sport": "MLB", - "season": "2026", - "date": "2026-04-11", - "time": "01:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Texas Rangers", - "home_team_abbrev": "LAD", - "away_team_abbrev": "TEX", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_sea_0411", - "sport": "MLB", - "season": "2026", - "date": "2026-04-11", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Houston Astros", - "home_team_abbrev": "SEA", - "away_team_abbrev": "HOU", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_chc_0411", - "sport": "MLB", - "season": "2026", - "date": "2026-04-11", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "CHC", - "away_team_abbrev": "PIT", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_bal_0412", - "sport": "MLB", - "season": "2026", - "date": "2026-04-12", - "time": "17:35", - "home_team": "Baltimore Orioles", - "away_team": "San Francisco Giants", - "home_team_abbrev": "BAL", - "away_team_abbrev": "SF", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_phi_0412", - "sport": "MLB", - "season": "2026", - "date": "2026-04-12", - "time": "17:35", - "home_team": "Philadelphia Phillies", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "PHI", - "away_team_abbrev": "AZ", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_atl_0412", - "sport": "MLB", - "season": "2026", - "date": "2026-04-12", - "time": "17:35", - "home_team": "Atlanta Braves", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "ATL", - "away_team_abbrev": "CLE", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_tor_0412", - "sport": "MLB", - "season": "2026", - "date": "2026-04-12", - "time": "17:37", - "home_team": "Toronto Blue Jays", - "away_team": "Minnesota Twins", - "home_team_abbrev": "TOR", - "away_team_abbrev": "MIN", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_cin_0412", - "sport": "MLB", - "season": "2026", - "date": "2026-04-12", - "time": "17:40", - "home_team": "Cincinnati Reds", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "CIN", - "away_team_abbrev": "LAA", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_nym_0412", - "sport": "MLB", - "season": "2026", - "date": "2026-04-12", - "time": "17:40", - "home_team": "New York Mets", - "away_team": "Athletics", - "home_team_abbrev": "NYM", - "away_team_abbrev": "ATH", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_det_0412", - "sport": "MLB", - "season": "2026", - "date": "2026-04-12", - "time": "17:40", - "home_team": "Detroit Tigers", - "away_team": "Miami Marlins", - "home_team_abbrev": "DET", - "away_team_abbrev": "MIA", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_tb_0412", - "sport": "MLB", - "season": "2026", - "date": "2026-04-12", - "time": "17:40", - "home_team": "Tampa Bay Rays", - "away_team": "New York Yankees", - "home_team_abbrev": "TB", - "away_team_abbrev": "NYY", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_kc_0412", - "sport": "MLB", - "season": "2026", - "date": "2026-04-12", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "Chicago White Sox", - "home_team_abbrev": "KC", - "away_team_abbrev": "CWS", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_mil_0412", - "sport": "MLB", - "season": "2026", - "date": "2026-04-12", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "Washington Nationals", - "home_team_abbrev": "MIL", - "away_team_abbrev": "WSH", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_stl_0412", - "sport": "MLB", - "season": "2026", - "date": "2026-04-12", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Boston Red Sox", - "home_team_abbrev": "STL", - "away_team_abbrev": "BOS", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_sd_0412", - "sport": "MLB", - "season": "2026", - "date": "2026-04-12", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "Colorado Rockies", - "home_team_abbrev": "SD", - "away_team_abbrev": "COL", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_sea_0412", - "sport": "MLB", - "season": "2026", - "date": "2026-04-12", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Houston Astros", - "home_team_abbrev": "SEA", - "away_team_abbrev": "HOU", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_lad_0412", - "sport": "MLB", - "season": "2026", - "date": "2026-04-12", - "time": "20:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Texas Rangers", - "home_team_abbrev": "LAD", - "away_team_abbrev": "TEX", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_chc_0412", - "sport": "MLB", - "season": "2026", - "date": "2026-04-12", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "CHC", - "away_team_abbrev": "PIT", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_sea_0413", - "sport": "MLB", - "season": "2026", - "date": "2026-04-13", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Houston Astros", - "home_team_abbrev": "SEA", - "away_team_abbrev": "HOU", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_bal_0413", - "sport": "MLB", - "season": "2026", - "date": "2026-04-13", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "BAL", - "away_team_abbrev": "AZ", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_pit_0413", - "sport": "MLB", - "season": "2026", - "date": "2026-04-13", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Washington Nationals", - "home_team_abbrev": "PIT", - "away_team_abbrev": "WSH", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_phi_0413", - "sport": "MLB", - "season": "2026", - "date": "2026-04-13", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Chicago Cubs", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CHC", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_nyy_0413", - "sport": "MLB", - "season": "2026", - "date": "2026-04-13", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "NYY", - "away_team_abbrev": "LAA", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_atl_0413", - "sport": "MLB", - "season": "2026", - "date": "2026-04-13", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Miami Marlins", - "home_team_abbrev": "ATL", - "away_team_abbrev": "MIA", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_min_0413", - "sport": "MLB", - "season": "2026", - "date": "2026-04-13", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Boston Red Sox", - "home_team_abbrev": "MIN", - "away_team_abbrev": "BOS", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_stl_0413", - "sport": "MLB", - "season": "2026", - "date": "2026-04-13", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "STL", - "away_team_abbrev": "CLE", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_ath_0413", - "sport": "MLB", - "season": "2026", - "date": "2026-04-13", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Texas Rangers", - "home_team_abbrev": "ATH", - "away_team_abbrev": "TEX", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_lad_0413", - "sport": "MLB", - "season": "2026", - "date": "2026-04-13", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "New York Mets", - "home_team_abbrev": "LAD", - "away_team_abbrev": "NYM", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_bal_0414", - "sport": "MLB", - "season": "2026", - "date": "2026-04-14", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "BAL", - "away_team_abbrev": "AZ", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_det_0414", - "sport": "MLB", - "season": "2026", - "date": "2026-04-14", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Kansas City Royals", - "home_team_abbrev": "DET", - "away_team_abbrev": "KC", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_pit_0414", - "sport": "MLB", - "season": "2026", - "date": "2026-04-14", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Washington Nationals", - "home_team_abbrev": "PIT", - "away_team_abbrev": "WSH", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_cin_0414", - "sport": "MLB", - "season": "2026", - "date": "2026-04-14", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "San Francisco Giants", - "home_team_abbrev": "CIN", - "away_team_abbrev": "SF", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_phi_0414", - "sport": "MLB", - "season": "2026", - "date": "2026-04-14", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Chicago Cubs", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CHC", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_nyy_0414", - "sport": "MLB", - "season": "2026", - "date": "2026-04-14", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "NYY", - "away_team_abbrev": "LAA", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_atl_0414", - "sport": "MLB", - "season": "2026", - "date": "2026-04-14", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Miami Marlins", - "home_team_abbrev": "ATL", - "away_team_abbrev": "MIA", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_min_0414", - "sport": "MLB", - "season": "2026", - "date": "2026-04-14", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Boston Red Sox", - "home_team_abbrev": "MIN", - "away_team_abbrev": "BOS", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_cws_0414", - "sport": "MLB", - "season": "2026", - "date": "2026-04-14", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "CWS", - "away_team_abbrev": "TB", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_mil_0414", - "sport": "MLB", - "season": "2026", - "date": "2026-04-14", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "MIL", - "away_team_abbrev": "TOR", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_stl_0414", - "sport": "MLB", - "season": "2026", - "date": "2026-04-14", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "STL", - "away_team_abbrev": "CLE", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_sd_0414", - "sport": "MLB", - "season": "2026", - "date": "2026-04-14", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Seattle Mariners", - "home_team_abbrev": "SD", - "away_team_abbrev": "SEA", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_ath_0414", - "sport": "MLB", - "season": "2026", - "date": "2026-04-14", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Texas Rangers", - "home_team_abbrev": "ATH", - "away_team_abbrev": "TEX", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_lad_0414", - "sport": "MLB", - "season": "2026", - "date": "2026-04-14", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "New York Mets", - "home_team_abbrev": "LAD", - "away_team_abbrev": "NYM", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_hou_0414", - "sport": "MLB", - "season": "2026", - "date": "2026-04-14", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Colorado Rockies", - "home_team_abbrev": "HOU", - "away_team_abbrev": "COL", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_bal_0415", - "sport": "MLB", - "season": "2026", - "date": "2026-04-15", - "time": "16:35", - "home_team": "Baltimore Orioles", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "BAL", - "away_team_abbrev": "AZ", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_stl_0415", - "sport": "MLB", - "season": "2026", - "date": "2026-04-15", - "time": "17:15", - "home_team": "St. Louis Cardinals", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "STL", - "away_team_abbrev": "CLE", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_min_0415", - "sport": "MLB", - "season": "2026", - "date": "2026-04-15", - "time": "17:40", - "home_team": "Minnesota Twins", - "away_team": "Boston Red Sox", - "home_team_abbrev": "MIN", - "away_team_abbrev": "BOS", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_det_0415", - "sport": "MLB", - "season": "2026", - "date": "2026-04-15", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Kansas City Royals", - "home_team_abbrev": "DET", - "away_team_abbrev": "KC", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_pit_0415", - "sport": "MLB", - "season": "2026", - "date": "2026-04-15", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Washington Nationals", - "home_team_abbrev": "PIT", - "away_team_abbrev": "WSH", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_cin_0415", - "sport": "MLB", - "season": "2026", - "date": "2026-04-15", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "San Francisco Giants", - "home_team_abbrev": "CIN", - "away_team_abbrev": "SF", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_phi_0415", - "sport": "MLB", - "season": "2026", - "date": "2026-04-15", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Chicago Cubs", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CHC", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_nyy_0415", - "sport": "MLB", - "season": "2026", - "date": "2026-04-15", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "NYY", - "away_team_abbrev": "LAA", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_atl_0415", - "sport": "MLB", - "season": "2026", - "date": "2026-04-15", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Miami Marlins", - "home_team_abbrev": "ATL", - "away_team_abbrev": "MIA", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_cws_0415", - "sport": "MLB", - "season": "2026", - "date": "2026-04-15", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "CWS", - "away_team_abbrev": "TB", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_mil_0415", - "sport": "MLB", - "season": "2026", - "date": "2026-04-15", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "MIL", - "away_team_abbrev": "TOR", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_sd_0415", - "sport": "MLB", - "season": "2026", - "date": "2026-04-15", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Seattle Mariners", - "home_team_abbrev": "SD", - "away_team_abbrev": "SEA", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_ath_0415", - "sport": "MLB", - "season": "2026", - "date": "2026-04-15", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Texas Rangers", - "home_team_abbrev": "ATH", - "away_team_abbrev": "TEX", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_lad_0415", - "sport": "MLB", - "season": "2026", - "date": "2026-04-15", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "New York Mets", - "home_team_abbrev": "LAD", - "away_team_abbrev": "NYM", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_hou_0415", - "sport": "MLB", - "season": "2026", - "date": "2026-04-15", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Colorado Rockies", - "home_team_abbrev": "HOU", - "away_team_abbrev": "COL", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_pit_0416", - "sport": "MLB", - "season": "2026", - "date": "2026-04-16", - "time": "16:35", - "home_team": "Pittsburgh Pirates", - "away_team": "Washington Nationals", - "home_team_abbrev": "PIT", - "away_team_abbrev": "WSH", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_cin_0416", - "sport": "MLB", - "season": "2026", - "date": "2026-04-16", - "time": "16:40", - "home_team": "Cincinnati Reds", - "away_team": "San Francisco Giants", - "home_team_abbrev": "CIN", - "away_team_abbrev": "SF", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_det_0416", - "sport": "MLB", - "season": "2026", - "date": "2026-04-16", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Kansas City Royals", - "home_team_abbrev": "DET", - "away_team_abbrev": "KC", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_nyy_0416", - "sport": "MLB", - "season": "2026", - "date": "2026-04-16", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "NYY", - "away_team_abbrev": "LAA", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_mil_0416", - "sport": "MLB", - "season": "2026", - "date": "2026-04-16", - "time": "17:40", - "home_team": "Milwaukee Brewers", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "MIL", - "away_team_abbrev": "TOR", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_cws_0416", - "sport": "MLB", - "season": "2026", - "date": "2026-04-16", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "CWS", - "away_team_abbrev": "TB", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_ath_0416", - "sport": "MLB", - "season": "2026", - "date": "2026-04-16", - "time": "19:05", - "home_team": "Athletics", - "away_team": "Texas Rangers", - "home_team_abbrev": "ATH", - "away_team_abbrev": "TEX", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_sd_0416", - "sport": "MLB", - "season": "2026", - "date": "2026-04-16", - "time": "00:40", - "home_team": "San Diego Padres", - "away_team": "Seattle Mariners", - "home_team_abbrev": "SD", - "away_team_abbrev": "SEA", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_cle_0416", - "sport": "MLB", - "season": "2026", - "date": "2026-04-16", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "CLE", - "away_team_abbrev": "BAL", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_hou_0416", - "sport": "MLB", - "season": "2026", - "date": "2026-04-16", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Colorado Rockies", - "home_team_abbrev": "HOU", - "away_team_abbrev": "COL", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_pit_0417", - "sport": "MLB", - "season": "2026", - "date": "2026-04-17", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "PIT", - "away_team_abbrev": "TB", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_phi_0417", - "sport": "MLB", - "season": "2026", - "date": "2026-04-17", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Atlanta Braves", - "home_team_abbrev": "PHI", - "away_team_abbrev": "ATL", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_wsh_0417", - "sport": "MLB", - "season": "2026", - "date": "2026-04-17", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "San Francisco Giants", - "home_team_abbrev": "WSH", - "away_team_abbrev": "SF", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_nyy_0417", - "sport": "MLB", - "season": "2026", - "date": "2026-04-17", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Kansas City Royals", - "home_team_abbrev": "NYY", - "away_team_abbrev": "KC", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_bos_0417", - "sport": "MLB", - "season": "2026", - "date": "2026-04-17", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Detroit Tigers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "DET", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_mia_0417", - "sport": "MLB", - "season": "2026", - "date": "2026-04-17", - "time": "23:10", - "home_team": "Miami Marlins", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "MIA", - "away_team_abbrev": "MIL", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_min_0417", - "sport": "MLB", - "season": "2026", - "date": "2026-04-17", - "time": "00:10", - "home_team": "Minnesota Twins", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CIN", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_col_0417", - "sport": "MLB", - "season": "2026", - "date": "2026-04-17", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "COL", - "away_team_abbrev": "LAD", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_laa_0417", - "sport": "MLB", - "season": "2026", - "date": "2026-04-17", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "San Diego Padres", - "home_team_abbrev": "LAA", - "away_team_abbrev": "SD", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_sea_0417", - "sport": "MLB", - "season": "2026", - "date": "2026-04-17", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Texas Rangers", - "home_team_abbrev": "SEA", - "away_team_abbrev": "TEX", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_az_0417", - "sport": "MLB", - "season": "2026", - "date": "2026-04-17", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "AZ", - "away_team_abbrev": "TOR", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_ath_0417", - "sport": "MLB", - "season": "2026", - "date": "2026-04-17", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Chicago White Sox", - "home_team_abbrev": "ATH", - "away_team_abbrev": "CWS", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_cle_0417", - "sport": "MLB", - "season": "2026", - "date": "2026-04-17", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "CLE", - "away_team_abbrev": "BAL", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_chc_0417", - "sport": "MLB", - "season": "2026", - "date": "2026-04-17", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "New York Mets", - "home_team_abbrev": "CHC", - "away_team_abbrev": "NYM", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_hou_0417", - "sport": "MLB", - "season": "2026", - "date": "2026-04-17", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "HOU", - "away_team_abbrev": "STL", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_nyy_0418", - "sport": "MLB", - "season": "2026", - "date": "2026-04-18", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Kansas City Royals", - "home_team_abbrev": "NYY", - "away_team_abbrev": "KC", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_min_0418", - "sport": "MLB", - "season": "2026", - "date": "2026-04-18", - "time": "18:10", - "home_team": "Minnesota Twins", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CIN", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_wsh_0418", - "sport": "MLB", - "season": "2026", - "date": "2026-04-18", - "time": "20:05", - "home_team": "Washington Nationals", - "away_team": "San Francisco Giants", - "home_team_abbrev": "WSH", - "away_team_abbrev": "SF", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_pit_0418", - "sport": "MLB", - "season": "2026", - "date": "2026-04-18", - "time": "20:05", - "home_team": "Pittsburgh Pirates", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "PIT", - "away_team_abbrev": "TB", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_ath_0418", - "sport": "MLB", - "season": "2026", - "date": "2026-04-18", - "time": "20:05", - "home_team": "Athletics", - "away_team": "Chicago White Sox", - "home_team_abbrev": "ATH", - "away_team_abbrev": "CWS", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_bos_0418", - "sport": "MLB", - "season": "2026", - "date": "2026-04-18", - "time": "20:10", - "home_team": "Boston Red Sox", - "away_team": "Detroit Tigers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "DET", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_mia_0418", - "sport": "MLB", - "season": "2026", - "date": "2026-04-18", - "time": "20:10", - "home_team": "Miami Marlins", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "MIA", - "away_team_abbrev": "MIL", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_sea_0418", - "sport": "MLB", - "season": "2026", - "date": "2026-04-18", - "time": "23:15", - "home_team": "Seattle Mariners", - "away_team": "Texas Rangers", - "home_team_abbrev": "SEA", - "away_team_abbrev": "TEX", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_phi_0418", - "sport": "MLB", - "season": "2026", - "date": "2026-04-18", - "time": "23:15", - "home_team": "Philadelphia Phillies", - "away_team": "Atlanta Braves", - "home_team_abbrev": "PHI", - "away_team_abbrev": "ATL", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_col_0418", - "sport": "MLB", - "season": "2026", - "date": "2026-04-18", - "time": "00:10", - "home_team": "Colorado Rockies", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "COL", - "away_team_abbrev": "LAD", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_az_0418", - "sport": "MLB", - "season": "2026", - "date": "2026-04-18", - "time": "00:10", - "home_team": "Arizona Diamondbacks", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "AZ", - "away_team_abbrev": "TOR", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_laa_0418", - "sport": "MLB", - "season": "2026", - "date": "2026-04-18", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "San Diego Padres", - "home_team_abbrev": "LAA", - "away_team_abbrev": "SD", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_cle_0418", - "sport": "MLB", - "season": "2026", - "date": "2026-04-18", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "CLE", - "away_team_abbrev": "BAL", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_chc_0418", - "sport": "MLB", - "season": "2026", - "date": "2026-04-18", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "New York Mets", - "home_team_abbrev": "CHC", - "away_team_abbrev": "NYM", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_hou_0418", - "sport": "MLB", - "season": "2026", - "date": "2026-04-18", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "HOU", - "away_team_abbrev": "STL", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_bos_0419", - "sport": "MLB", - "season": "2026", - "date": "2026-04-19", - "time": "17:35", - "home_team": "Boston Red Sox", - "away_team": "Detroit Tigers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "DET", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_wsh_0419", - "sport": "MLB", - "season": "2026", - "date": "2026-04-19", - "time": "17:35", - "home_team": "Washington Nationals", - "away_team": "San Francisco Giants", - "home_team_abbrev": "WSH", - "away_team_abbrev": "SF", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_pit_0419", - "sport": "MLB", - "season": "2026", - "date": "2026-04-19", - "time": "17:35", - "home_team": "Pittsburgh Pirates", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "PIT", - "away_team_abbrev": "TB", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_phi_0419", - "sport": "MLB", - "season": "2026", - "date": "2026-04-19", - "time": "17:35", - "home_team": "Philadelphia Phillies", - "away_team": "Atlanta Braves", - "home_team_abbrev": "PHI", - "away_team_abbrev": "ATL", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_nyy_0419", - "sport": "MLB", - "season": "2026", - "date": "2026-04-19", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Kansas City Royals", - "home_team_abbrev": "NYY", - "away_team_abbrev": "KC", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_mia_0419", - "sport": "MLB", - "season": "2026", - "date": "2026-04-19", - "time": "17:40", - "home_team": "Miami Marlins", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "MIA", - "away_team_abbrev": "MIL", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_min_0419", - "sport": "MLB", - "season": "2026", - "date": "2026-04-19", - "time": "18:10", - "home_team": "Minnesota Twins", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CIN", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_col_0419", - "sport": "MLB", - "season": "2026", - "date": "2026-04-19", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "COL", - "away_team_abbrev": "LAD", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_ath_0419", - "sport": "MLB", - "season": "2026", - "date": "2026-04-19", - "time": "20:05", - "home_team": "Athletics", - "away_team": "Chicago White Sox", - "home_team_abbrev": "ATH", - "away_team_abbrev": "CWS", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_laa_0419", - "sport": "MLB", - "season": "2026", - "date": "2026-04-19", - "time": "20:07", - "home_team": "Los Angeles Angels", - "away_team": "San Diego Padres", - "home_team_abbrev": "LAA", - "away_team_abbrev": "SD", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_sea_0419", - "sport": "MLB", - "season": "2026", - "date": "2026-04-19", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Texas Rangers", - "home_team_abbrev": "SEA", - "away_team_abbrev": "TEX", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_az_0419", - "sport": "MLB", - "season": "2026", - "date": "2026-04-19", - "time": "20:10", - "home_team": "Arizona Diamondbacks", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "AZ", - "away_team_abbrev": "TOR", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_cle_0419", - "sport": "MLB", - "season": "2026", - "date": "2026-04-19", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "CLE", - "away_team_abbrev": "BAL", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_chc_0419", - "sport": "MLB", - "season": "2026", - "date": "2026-04-19", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "New York Mets", - "home_team_abbrev": "CHC", - "away_team_abbrev": "NYM", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_hou_0419", - "sport": "MLB", - "season": "2026", - "date": "2026-04-19", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "HOU", - "away_team_abbrev": "STL", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_bos_0420", - "sport": "MLB", - "season": "2026", - "date": "2026-04-20", - "time": "15:10", - "home_team": "Boston Red Sox", - "away_team": "Detroit Tigers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "DET", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_tb_0420", - "sport": "MLB", - "season": "2026", - "date": "2026-04-20", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "TB", - "away_team_abbrev": "CIN", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_mia_0420", - "sport": "MLB", - "season": "2026", - "date": "2026-04-20", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "MIA", - "away_team_abbrev": "STL", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_wsh_0420", - "sport": "MLB", - "season": "2026", - "date": "2026-04-20", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Atlanta Braves", - "home_team_abbrev": "WSH", - "away_team_abbrev": "ATL", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_kc_0420", - "sport": "MLB", - "season": "2026", - "date": "2026-04-20", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "KC", - "away_team_abbrev": "BAL", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_col_0420", - "sport": "MLB", - "season": "2026", - "date": "2026-04-20", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "COL", - "away_team_abbrev": "LAD", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_laa_0420", - "sport": "MLB", - "season": "2026", - "date": "2026-04-20", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "LAA", - "away_team_abbrev": "TOR", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_sea_0420", - "sport": "MLB", - "season": "2026", - "date": "2026-04-20", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Athletics", - "home_team_abbrev": "SEA", - "away_team_abbrev": "ATH", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_cle_0420", - "sport": "MLB", - "season": "2026", - "date": "2026-04-20", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Houston Astros", - "home_team_abbrev": "CLE", - "away_team_abbrev": "HOU", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_chc_0420", - "sport": "MLB", - "season": "2026", - "date": "2026-04-20", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "CHC", - "away_team_abbrev": "PHI", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_tb_0421", - "sport": "MLB", - "season": "2026", - "date": "2026-04-21", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "TB", - "away_team_abbrev": "CIN", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_mia_0421", - "sport": "MLB", - "season": "2026", - "date": "2026-04-21", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "MIA", - "away_team_abbrev": "STL", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_det_0421", - "sport": "MLB", - "season": "2026", - "date": "2026-04-21", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "DET", - "away_team_abbrev": "MIL", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_wsh_0421", - "sport": "MLB", - "season": "2026", - "date": "2026-04-21", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Atlanta Braves", - "home_team_abbrev": "WSH", - "away_team_abbrev": "ATL", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_bos_0421", - "sport": "MLB", - "season": "2026", - "date": "2026-04-21", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "New York Yankees", - "home_team_abbrev": "BOS", - "away_team_abbrev": "NYY", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_nym_0421", - "sport": "MLB", - "season": "2026", - "date": "2026-04-21", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Minnesota Twins", - "home_team_abbrev": "NYM", - "away_team_abbrev": "MIN", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_kc_0421", - "sport": "MLB", - "season": "2026", - "date": "2026-04-21", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "KC", - "away_team_abbrev": "BAL", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_tex_0421", - "sport": "MLB", - "season": "2026", - "date": "2026-04-21", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "TEX", - "away_team_abbrev": "PIT", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_col_0421", - "sport": "MLB", - "season": "2026", - "date": "2026-04-21", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "San Diego Padres", - "home_team_abbrev": "COL", - "away_team_abbrev": "SD", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_laa_0421", - "sport": "MLB", - "season": "2026", - "date": "2026-04-21", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "LAA", - "away_team_abbrev": "TOR", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_sea_0421", - "sport": "MLB", - "season": "2026", - "date": "2026-04-21", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Athletics", - "home_team_abbrev": "SEA", - "away_team_abbrev": "ATH", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_az_0421", - "sport": "MLB", - "season": "2026", - "date": "2026-04-21", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Chicago White Sox", - "home_team_abbrev": "AZ", - "away_team_abbrev": "CWS", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_sf_0421", - "sport": "MLB", - "season": "2026", - "date": "2026-04-21", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "SF", - "away_team_abbrev": "LAD", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_cle_0421", - "sport": "MLB", - "season": "2026", - "date": "2026-04-21", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Houston Astros", - "home_team_abbrev": "CLE", - "away_team_abbrev": "HOU", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_chc_0421", - "sport": "MLB", - "season": "2026", - "date": "2026-04-21", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "CHC", - "away_team_abbrev": "PHI", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_mia_0422", - "sport": "MLB", - "season": "2026", - "date": "2026-04-22", - "time": "16:10", - "home_team": "Miami Marlins", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "MIA", - "away_team_abbrev": "STL", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_tb_0422", - "sport": "MLB", - "season": "2026", - "date": "2026-04-22", - "time": "17:10", - "home_team": "Tampa Bay Rays", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "TB", - "away_team_abbrev": "CIN", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_kc_0422", - "sport": "MLB", - "season": "2026", - "date": "2026-04-22", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "KC", - "away_team_abbrev": "BAL", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_laa_0422", - "sport": "MLB", - "season": "2026", - "date": "2026-04-22", - "time": "19:07", - "home_team": "Los Angeles Angels", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "LAA", - "away_team_abbrev": "TOR", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_sea_0422", - "sport": "MLB", - "season": "2026", - "date": "2026-04-22", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Athletics", - "home_team_abbrev": "SEA", - "away_team_abbrev": "ATH", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_det_0422", - "sport": "MLB", - "season": "2026", - "date": "2026-04-22", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "DET", - "away_team_abbrev": "MIL", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_wsh_0422", - "sport": "MLB", - "season": "2026", - "date": "2026-04-22", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Atlanta Braves", - "home_team_abbrev": "WSH", - "away_team_abbrev": "ATL", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_bos_0422", - "sport": "MLB", - "season": "2026", - "date": "2026-04-22", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "New York Yankees", - "home_team_abbrev": "BOS", - "away_team_abbrev": "NYY", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_nym_0422", - "sport": "MLB", - "season": "2026", - "date": "2026-04-22", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Minnesota Twins", - "home_team_abbrev": "NYM", - "away_team_abbrev": "MIN", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_tex_0422", - "sport": "MLB", - "season": "2026", - "date": "2026-04-22", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "TEX", - "away_team_abbrev": "PIT", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_col_0422", - "sport": "MLB", - "season": "2026", - "date": "2026-04-22", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "San Diego Padres", - "home_team_abbrev": "COL", - "away_team_abbrev": "SD", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_az_0422", - "sport": "MLB", - "season": "2026", - "date": "2026-04-22", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Chicago White Sox", - "home_team_abbrev": "AZ", - "away_team_abbrev": "CWS", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_sf_0422", - "sport": "MLB", - "season": "2026", - "date": "2026-04-22", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "SF", - "away_team_abbrev": "LAD", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_cle_0422", - "sport": "MLB", - "season": "2026", - "date": "2026-04-22", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Houston Astros", - "home_team_abbrev": "CLE", - "away_team_abbrev": "HOU", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_chc_0422", - "sport": "MLB", - "season": "2026", - "date": "2026-04-22", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "CHC", - "away_team_abbrev": "PHI", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_wsh_0423", - "sport": "MLB", - "season": "2026", - "date": "2026-04-23", - "time": "17:05", - "home_team": "Washington Nationals", - "away_team": "Atlanta Braves", - "home_team_abbrev": "WSH", - "away_team_abbrev": "ATL", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_det_0423", - "sport": "MLB", - "season": "2026", - "date": "2026-04-23", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "DET", - "away_team_abbrev": "MIL", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_col_0423", - "sport": "MLB", - "season": "2026", - "date": "2026-04-23", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "San Diego Padres", - "home_team_abbrev": "COL", - "away_team_abbrev": "SD", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_az_0423", - "sport": "MLB", - "season": "2026", - "date": "2026-04-23", - "time": "19:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Chicago White Sox", - "home_team_abbrev": "AZ", - "away_team_abbrev": "CWS", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_sf_0423", - "sport": "MLB", - "season": "2026", - "date": "2026-04-23", - "time": "19:45", - "home_team": "San Francisco Giants", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "SF", - "away_team_abbrev": "LAD", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_bos_0423", - "sport": "MLB", - "season": "2026", - "date": "2026-04-23", - "time": "22:10", - "home_team": "Boston Red Sox", - "away_team": "New York Yankees", - "home_team_abbrev": "BOS", - "away_team_abbrev": "NYY", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_nym_0423", - "sport": "MLB", - "season": "2026", - "date": "2026-04-23", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Minnesota Twins", - "home_team_abbrev": "NYM", - "away_team_abbrev": "MIN", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_tex_0423", - "sport": "MLB", - "season": "2026", - "date": "2026-04-23", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "TEX", - "away_team_abbrev": "PIT", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_chc_0423", - "sport": "MLB", - "season": "2026", - "date": "2026-04-23", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "CHC", - "away_team_abbrev": "PHI", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_cin_0424", - "sport": "MLB", - "season": "2026", - "date": "2026-04-24", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Detroit Tigers", - "home_team_abbrev": "CIN", - "away_team_abbrev": "DET", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_bal_0424", - "sport": "MLB", - "season": "2026", - "date": "2026-04-24", - "time": "23:05", - "home_team": "Baltimore Orioles", - "away_team": "Boston Red Sox", - "home_team_abbrev": "BAL", - "away_team_abbrev": "BOS", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_tor_0424", - "sport": "MLB", - "season": "2026", - "date": "2026-04-24", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "TOR", - "away_team_abbrev": "CLE", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_nym_0424", - "sport": "MLB", - "season": "2026", - "date": "2026-04-24", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Colorado Rockies", - "home_team_abbrev": "NYM", - "away_team_abbrev": "COL", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_tb_0424", - "sport": "MLB", - "season": "2026", - "date": "2026-04-24", - "time": "23:10", - "home_team": "Tampa Bay Rays", - "away_team": "Minnesota Twins", - "home_team_abbrev": "TB", - "away_team_abbrev": "MIN", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_atl_0424", - "sport": "MLB", - "season": "2026", - "date": "2026-04-24", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "ATL", - "away_team_abbrev": "PHI", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_kc_0424", - "sport": "MLB", - "season": "2026", - "date": "2026-04-24", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "KC", - "away_team_abbrev": "LAA", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_cws_0424", - "sport": "MLB", - "season": "2026", - "date": "2026-04-24", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Washington Nationals", - "home_team_abbrev": "CWS", - "away_team_abbrev": "WSH", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_mil_0424", - "sport": "MLB", - "season": "2026", - "date": "2026-04-24", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "MIL", - "away_team_abbrev": "PIT", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_tex_0424", - "sport": "MLB", - "season": "2026", - "date": "2026-04-24", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Athletics", - "home_team_abbrev": "TEX", - "away_team_abbrev": "ATH", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_stl_0424", - "sport": "MLB", - "season": "2026", - "date": "2026-04-24", - "time": "00:15", - "home_team": "St. Louis Cardinals", - "away_team": "Seattle Mariners", - "home_team_abbrev": "STL", - "away_team_abbrev": "SEA", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_lad_0424", - "sport": "MLB", - "season": "2026", - "date": "2026-04-24", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Chicago Cubs", - "home_team_abbrev": "LAD", - "away_team_abbrev": "CHC", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_sf_0424", - "sport": "MLB", - "season": "2026", - "date": "2026-04-24", - "time": "02:15", - "home_team": "San Francisco Giants", - "away_team": "Miami Marlins", - "home_team_abbrev": "SF", - "away_team_abbrev": "MIA", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_hou_0424", - "sport": "MLB", - "season": "2026", - "date": "2026-04-24", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "New York Yankees", - "home_team_abbrev": "HOU", - "away_team_abbrev": "NYY", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_stl_0425", - "sport": "MLB", - "season": "2026", - "date": "2026-04-25", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Seattle Mariners", - "home_team_abbrev": "STL", - "away_team_abbrev": "SEA", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_tor_0425", - "sport": "MLB", - "season": "2026", - "date": "2026-04-25", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "TOR", - "away_team_abbrev": "CLE", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_bal_0425", - "sport": "MLB", - "season": "2026", - "date": "2026-04-25", - "time": "20:05", - "home_team": "Baltimore Orioles", - "away_team": "Boston Red Sox", - "home_team_abbrev": "BAL", - "away_team_abbrev": "BOS", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_nym_0425", - "sport": "MLB", - "season": "2026", - "date": "2026-04-25", - "time": "20:10", - "home_team": "New York Mets", - "away_team": "Colorado Rockies", - "home_team_abbrev": "NYM", - "away_team_abbrev": "COL", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_tb_0425", - "sport": "MLB", - "season": "2026", - "date": "2026-04-25", - "time": "20:10", - "home_team": "Tampa Bay Rays", - "away_team": "Minnesota Twins", - "home_team_abbrev": "TB", - "away_team_abbrev": "MIN", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_cws_0425", - "sport": "MLB", - "season": "2026", - "date": "2026-04-25", - "time": "20:10", - "home_team": "Chicago White Sox", - "away_team": "Washington Nationals", - "home_team_abbrev": "CWS", - "away_team_abbrev": "WSH", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_tex_0425", - "sport": "MLB", - "season": "2026", - "date": "2026-04-25", - "time": "23:05", - "home_team": "Texas Rangers", - "away_team": "Athletics", - "home_team_abbrev": "TEX", - "away_team_abbrev": "ATH", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_kc_0425", - "sport": "MLB", - "season": "2026", - "date": "2026-04-25", - "time": "23:10", - "home_team": "Kansas City Royals", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "KC", - "away_team_abbrev": "LAA", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_mil_0425", - "sport": "MLB", - "season": "2026", - "date": "2026-04-25", - "time": "23:10", - "home_team": "Milwaukee Brewers", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "MIL", - "away_team_abbrev": "PIT", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_cin_0425", - "sport": "MLB", - "season": "2026", - "date": "2026-04-25", - "time": "23:15", - "home_team": "Cincinnati Reds", - "away_team": "Detroit Tigers", - "home_team_abbrev": "CIN", - "away_team_abbrev": "DET", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_lad_0425", - "sport": "MLB", - "season": "2026", - "date": "2026-04-25", - "time": "23:15", - "home_team": "Los Angeles Dodgers", - "away_team": "Chicago Cubs", - "home_team_abbrev": "LAD", - "away_team_abbrev": "CHC", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_atl_0425", - "sport": "MLB", - "season": "2026", - "date": "2026-04-25", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "ATL", - "away_team_abbrev": "PHI", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_hou_0425", - "sport": "MLB", - "season": "2026", - "date": "2026-04-25", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "New York Yankees", - "home_team_abbrev": "HOU", - "away_team_abbrev": "NYY", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_az_0425", - "sport": "MLB", - "season": "2026", - "date": "2026-04-25", - "time": "09:33", - "home_team": "Arizona Diamondbacks", - "away_team": "San Diego Padres", - "home_team_abbrev": "AZ", - "away_team_abbrev": "SD", - "venue": "Estadio Alfredo Harp Helu", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_sf_0425", - "sport": "MLB", - "season": "2026", - "date": "2026-04-25", - "time": "10:33", - "home_team": "San Francisco Giants", - "away_team": "Miami Marlins", - "home_team_abbrev": "SF", - "away_team_abbrev": "MIA", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_bal_0426", - "sport": "MLB", - "season": "2026", - "date": "2026-04-26", - "time": "17:35", - "home_team": "Baltimore Orioles", - "away_team": "Boston Red Sox", - "home_team_abbrev": "BAL", - "away_team_abbrev": "BOS", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_atl_0426", - "sport": "MLB", - "season": "2026", - "date": "2026-04-26", - "time": "17:35", - "home_team": "Atlanta Braves", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "ATL", - "away_team_abbrev": "PHI", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_tor_0426", - "sport": "MLB", - "season": "2026", - "date": "2026-04-26", - "time": "17:37", - "home_team": "Toronto Blue Jays", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "TOR", - "away_team_abbrev": "CLE", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_cin_0426", - "sport": "MLB", - "season": "2026", - "date": "2026-04-26", - "time": "17:40", - "home_team": "Cincinnati Reds", - "away_team": "Detroit Tigers", - "home_team_abbrev": "CIN", - "away_team_abbrev": "DET", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_nym_0426", - "sport": "MLB", - "season": "2026", - "date": "2026-04-26", - "time": "17:40", - "home_team": "New York Mets", - "away_team": "Colorado Rockies", - "home_team_abbrev": "NYM", - "away_team_abbrev": "COL", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_tb_0426", - "sport": "MLB", - "season": "2026", - "date": "2026-04-26", - "time": "17:40", - "home_team": "Tampa Bay Rays", - "away_team": "Minnesota Twins", - "home_team_abbrev": "TB", - "away_team_abbrev": "MIN", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_kc_0426", - "sport": "MLB", - "season": "2026", - "date": "2026-04-26", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "KC", - "away_team_abbrev": "LAA", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_cws_0426", - "sport": "MLB", - "season": "2026", - "date": "2026-04-26", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Washington Nationals", - "home_team_abbrev": "CWS", - "away_team_abbrev": "WSH", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_mil_0426", - "sport": "MLB", - "season": "2026", - "date": "2026-04-26", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "MIL", - "away_team_abbrev": "PIT", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_stl_0426", - "sport": "MLB", - "season": "2026", - "date": "2026-04-26", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Seattle Mariners", - "home_team_abbrev": "STL", - "away_team_abbrev": "SEA", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_tex_0426", - "sport": "MLB", - "season": "2026", - "date": "2026-04-26", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "Athletics", - "home_team_abbrev": "TEX", - "away_team_abbrev": "ATH", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_sf_0426", - "sport": "MLB", - "season": "2026", - "date": "2026-04-26", - "time": "20:05", - "home_team": "San Francisco Giants", - "away_team": "Miami Marlins", - "home_team_abbrev": "SF", - "away_team_abbrev": "MIA", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_lad_0426", - "sport": "MLB", - "season": "2026", - "date": "2026-04-26", - "time": "20:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Chicago Cubs", - "home_team_abbrev": "LAD", - "away_team_abbrev": "CHC", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_hou_0426", - "sport": "MLB", - "season": "2026", - "date": "2026-04-26", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "New York Yankees", - "home_team_abbrev": "HOU", - "away_team_abbrev": "NYY", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_az_0426", - "sport": "MLB", - "season": "2026", - "date": "2026-04-26", - "time": "09:33", - "home_team": "Arizona Diamondbacks", - "away_team": "San Diego Padres", - "home_team_abbrev": "AZ", - "away_team_abbrev": "SD", - "venue": "Estadio Alfredo Harp Helu", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_pit_0427", - "sport": "MLB", - "season": "2026", - "date": "2026-04-27", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "PIT", - "away_team_abbrev": "STL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_tor_0427", - "sport": "MLB", - "season": "2026", - "date": "2026-04-27", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Boston Red Sox", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BOS", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_min_0427", - "sport": "MLB", - "season": "2026", - "date": "2026-04-27", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Seattle Mariners", - "home_team_abbrev": "MIN", - "away_team_abbrev": "SEA", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_cws_0427", - "sport": "MLB", - "season": "2026", - "date": "2026-04-27", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "CWS", - "away_team_abbrev": "LAA", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_tex_0427", - "sport": "MLB", - "season": "2026", - "date": "2026-04-27", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "New York Yankees", - "home_team_abbrev": "TEX", - "away_team_abbrev": "NYY", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_sd_0427", - "sport": "MLB", - "season": "2026", - "date": "2026-04-27", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Chicago Cubs", - "home_team_abbrev": "SD", - "away_team_abbrev": "CHC", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_lad_0427", - "sport": "MLB", - "season": "2026", - "date": "2026-04-27", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Miami Marlins", - "home_team_abbrev": "LAD", - "away_team_abbrev": "MIA", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_cle_0427", - "sport": "MLB", - "season": "2026", - "date": "2026-04-27", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "CLE", - "away_team_abbrev": "TB", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_bal_0428", - "sport": "MLB", - "season": "2026", - "date": "2026-04-28", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Houston Astros", - "home_team_abbrev": "BAL", - "away_team_abbrev": "HOU", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_cin_0428", - "sport": "MLB", - "season": "2026", - "date": "2026-04-28", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Colorado Rockies", - "home_team_abbrev": "CIN", - "away_team_abbrev": "COL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_pit_0428", - "sport": "MLB", - "season": "2026", - "date": "2026-04-28", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "PIT", - "away_team_abbrev": "STL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_phi_0428", - "sport": "MLB", - "season": "2026", - "date": "2026-04-28", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "San Francisco Giants", - "home_team_abbrev": "PHI", - "away_team_abbrev": "SF", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_tor_0428", - "sport": "MLB", - "season": "2026", - "date": "2026-04-28", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Boston Red Sox", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BOS", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_nym_0428", - "sport": "MLB", - "season": "2026", - "date": "2026-04-28", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Washington Nationals", - "home_team_abbrev": "NYM", - "away_team_abbrev": "WSH", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_atl_0428", - "sport": "MLB", - "season": "2026", - "date": "2026-04-28", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Detroit Tigers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "DET", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_min_0428", - "sport": "MLB", - "season": "2026", - "date": "2026-04-28", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Seattle Mariners", - "home_team_abbrev": "MIN", - "away_team_abbrev": "SEA", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_cws_0428", - "sport": "MLB", - "season": "2026", - "date": "2026-04-28", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "CWS", - "away_team_abbrev": "LAA", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_mil_0428", - "sport": "MLB", - "season": "2026", - "date": "2026-04-28", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "MIL", - "away_team_abbrev": "AZ", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_tex_0428", - "sport": "MLB", - "season": "2026", - "date": "2026-04-28", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "New York Yankees", - "home_team_abbrev": "TEX", - "away_team_abbrev": "NYY", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_ath_0428", - "sport": "MLB", - "season": "2026", - "date": "2026-04-28", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Kansas City Royals", - "home_team_abbrev": "ATH", - "away_team_abbrev": "KC", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_sd_0428", - "sport": "MLB", - "season": "2026", - "date": "2026-04-28", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Chicago Cubs", - "home_team_abbrev": "SD", - "away_team_abbrev": "CHC", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_lad_0428", - "sport": "MLB", - "season": "2026", - "date": "2026-04-28", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Miami Marlins", - "home_team_abbrev": "LAD", - "away_team_abbrev": "MIA", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_cle_0428", - "sport": "MLB", - "season": "2026", - "date": "2026-04-28", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "CLE", - "away_team_abbrev": "TB", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_cws_0429", - "sport": "MLB", - "season": "2026", - "date": "2026-04-29", - "time": "17:10", - "home_team": "Chicago White Sox", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "CWS", - "away_team_abbrev": "LAA", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_min_0429", - "sport": "MLB", - "season": "2026", - "date": "2026-04-29", - "time": "17:40", - "home_team": "Minnesota Twins", - "away_team": "Seattle Mariners", - "home_team_abbrev": "MIN", - "away_team_abbrev": "SEA", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_tex_0429", - "sport": "MLB", - "season": "2026", - "date": "2026-04-29", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "New York Yankees", - "home_team_abbrev": "TEX", - "away_team_abbrev": "NYY", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_tor_0429", - "sport": "MLB", - "season": "2026", - "date": "2026-04-29", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "Boston Red Sox", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BOS", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_lad_0429", - "sport": "MLB", - "season": "2026", - "date": "2026-04-29", - "time": "19:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Miami Marlins", - "home_team_abbrev": "LAD", - "away_team_abbrev": "MIA", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_sd_0429", - "sport": "MLB", - "season": "2026", - "date": "2026-04-29", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "Chicago Cubs", - "home_team_abbrev": "SD", - "away_team_abbrev": "CHC", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_bal_0429", - "sport": "MLB", - "season": "2026", - "date": "2026-04-29", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Houston Astros", - "home_team_abbrev": "BAL", - "away_team_abbrev": "HOU", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_cin_0429", - "sport": "MLB", - "season": "2026", - "date": "2026-04-29", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Colorado Rockies", - "home_team_abbrev": "CIN", - "away_team_abbrev": "COL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_pit_0429", - "sport": "MLB", - "season": "2026", - "date": "2026-04-29", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "PIT", - "away_team_abbrev": "STL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_phi_0429", - "sport": "MLB", - "season": "2026", - "date": "2026-04-29", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "San Francisco Giants", - "home_team_abbrev": "PHI", - "away_team_abbrev": "SF", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_nym_0429", - "sport": "MLB", - "season": "2026", - "date": "2026-04-29", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Washington Nationals", - "home_team_abbrev": "NYM", - "away_team_abbrev": "WSH", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_atl_0429", - "sport": "MLB", - "season": "2026", - "date": "2026-04-29", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Detroit Tigers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "DET", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_mil_0429", - "sport": "MLB", - "season": "2026", - "date": "2026-04-29", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "MIL", - "away_team_abbrev": "AZ", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_ath_0429", - "sport": "MLB", - "season": "2026", - "date": "2026-04-29", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Kansas City Royals", - "home_team_abbrev": "ATH", - "away_team_abbrev": "KC", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_cle_0429", - "sport": "MLB", - "season": "2026", - "date": "2026-04-29", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "CLE", - "away_team_abbrev": "TB", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_atl_0430", - "sport": "MLB", - "season": "2026", - "date": "2026-04-30", - "time": "16:15", - "home_team": "Atlanta Braves", - "away_team": "Detroit Tigers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "DET", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_bal_0430", - "sport": "MLB", - "season": "2026", - "date": "2026-04-30", - "time": "16:35", - "home_team": "Baltimore Orioles", - "away_team": "Houston Astros", - "home_team_abbrev": "BAL", - "away_team_abbrev": "HOU", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_pit_0430", - "sport": "MLB", - "season": "2026", - "date": "2026-04-30", - "time": "16:35", - "home_team": "Pittsburgh Pirates", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "PIT", - "away_team_abbrev": "STL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_cin_0430", - "sport": "MLB", - "season": "2026", - "date": "2026-04-30", - "time": "16:40", - "home_team": "Cincinnati Reds", - "away_team": "Colorado Rockies", - "home_team_abbrev": "CIN", - "away_team_abbrev": "COL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_phi_0430", - "sport": "MLB", - "season": "2026", - "date": "2026-04-30", - "time": "17:05", - "home_team": "Philadelphia Phillies", - "away_team": "San Francisco Giants", - "home_team_abbrev": "PHI", - "away_team_abbrev": "SF", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_nym_0430", - "sport": "MLB", - "season": "2026", - "date": "2026-04-30", - "time": "17:10", - "home_team": "New York Mets", - "away_team": "Washington Nationals", - "home_team_abbrev": "NYM", - "away_team_abbrev": "WSH", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_mil_0430", - "sport": "MLB", - "season": "2026", - "date": "2026-04-30", - "time": "17:40", - "home_team": "Milwaukee Brewers", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "MIL", - "away_team_abbrev": "AZ", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_ath_0430", - "sport": "MLB", - "season": "2026", - "date": "2026-04-30", - "time": "19:05", - "home_team": "Athletics", - "away_team": "Kansas City Royals", - "home_team_abbrev": "ATH", - "away_team_abbrev": "KC", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_min_0430", - "sport": "MLB", - "season": "2026", - "date": "2026-04-30", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "MIN", - "away_team_abbrev": "TOR", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_pit_0501", - "sport": "MLB", - "season": "2026", - "date": "2026-05-01", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "PIT", - "away_team_abbrev": "CIN", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_det_0501", - "sport": "MLB", - "season": "2026", - "date": "2026-05-01", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Texas Rangers", - "home_team_abbrev": "DET", - "away_team_abbrev": "TEX", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_wsh_0501", - "sport": "MLB", - "season": "2026", - "date": "2026-05-01", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "WSH", - "away_team_abbrev": "MIL", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_nyy_0501", - "sport": "MLB", - "season": "2026", - "date": "2026-05-01", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "NYY", - "away_team_abbrev": "BAL", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_bos_0501", - "sport": "MLB", - "season": "2026", - "date": "2026-05-01", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Houston Astros", - "home_team_abbrev": "BOS", - "away_team_abbrev": "HOU", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_tb_0501", - "sport": "MLB", - "season": "2026", - "date": "2026-05-01", - "time": "23:10", - "home_team": "Tampa Bay Rays", - "away_team": "San Francisco Giants", - "home_team_abbrev": "TB", - "away_team_abbrev": "SF", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_mia_0501", - "sport": "MLB", - "season": "2026", - "date": "2026-05-01", - "time": "23:10", - "home_team": "Miami Marlins", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "MIA", - "away_team_abbrev": "PHI", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_min_0501", - "sport": "MLB", - "season": "2026", - "date": "2026-05-01", - "time": "00:10", - "home_team": "Minnesota Twins", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "MIN", - "away_team_abbrev": "TOR", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_stl_0501", - "sport": "MLB", - "season": "2026", - "date": "2026-05-01", - "time": "00:15", - "home_team": "St. Louis Cardinals", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "STL", - "away_team_abbrev": "LAD", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_col_0501", - "sport": "MLB", - "season": "2026", - "date": "2026-05-01", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Atlanta Braves", - "home_team_abbrev": "COL", - "away_team_abbrev": "ATL", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_laa_0501", - "sport": "MLB", - "season": "2026", - "date": "2026-05-01", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "New York Mets", - "home_team_abbrev": "LAA", - "away_team_abbrev": "NYM", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_ath_0501", - "sport": "MLB", - "season": "2026", - "date": "2026-05-01", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "ATH", - "away_team_abbrev": "CLE", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_sea_0501", - "sport": "MLB", - "season": "2026", - "date": "2026-05-01", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Kansas City Royals", - "home_team_abbrev": "SEA", - "away_team_abbrev": "KC", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_sd_0501", - "sport": "MLB", - "season": "2026", - "date": "2026-05-01", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Chicago White Sox", - "home_team_abbrev": "SD", - "away_team_abbrev": "CWS", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_chc_0501", - "sport": "MLB", - "season": "2026", - "date": "2026-05-01", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "CHC", - "away_team_abbrev": "AZ", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_nyy_0502", - "sport": "MLB", - "season": "2026", - "date": "2026-05-02", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "NYY", - "away_team_abbrev": "BAL", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_min_0502", - "sport": "MLB", - "season": "2026", - "date": "2026-05-02", - "time": "18:10", - "home_team": "Minnesota Twins", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "MIN", - "away_team_abbrev": "TOR", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_ath_0502", - "sport": "MLB", - "season": "2026", - "date": "2026-05-02", - "time": "20:05", - "home_team": "Athletics", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "ATH", - "away_team_abbrev": "CLE", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_pit_0502", - "sport": "MLB", - "season": "2026", - "date": "2026-05-02", - "time": "20:05", - "home_team": "Pittsburgh Pirates", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "PIT", - "away_team_abbrev": "CIN", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_wsh_0502", - "sport": "MLB", - "season": "2026", - "date": "2026-05-02", - "time": "20:05", - "home_team": "Washington Nationals", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "WSH", - "away_team_abbrev": "MIL", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_bos_0502", - "sport": "MLB", - "season": "2026", - "date": "2026-05-02", - "time": "20:10", - "home_team": "Boston Red Sox", - "away_team": "Houston Astros", - "home_team_abbrev": "BOS", - "away_team_abbrev": "HOU", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_mia_0502", - "sport": "MLB", - "season": "2026", - "date": "2026-05-02", - "time": "20:10", - "home_team": "Miami Marlins", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "MIA", - "away_team_abbrev": "PHI", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_tb_0502", - "sport": "MLB", - "season": "2026", - "date": "2026-05-02", - "time": "22:10", - "home_team": "Tampa Bay Rays", - "away_team": "San Francisco Giants", - "home_team_abbrev": "TB", - "away_team_abbrev": "SF", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_stl_0502", - "sport": "MLB", - "season": "2026", - "date": "2026-05-02", - "time": "23:15", - "home_team": "St. Louis Cardinals", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "STL", - "away_team_abbrev": "LAD", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_det_0502", - "sport": "MLB", - "season": "2026", - "date": "2026-05-02", - "time": "23:15", - "home_team": "Detroit Tigers", - "away_team": "Texas Rangers", - "home_team_abbrev": "DET", - "away_team_abbrev": "TEX", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_col_0502", - "sport": "MLB", - "season": "2026", - "date": "2026-05-02", - "time": "00:10", - "home_team": "Colorado Rockies", - "away_team": "Atlanta Braves", - "home_team_abbrev": "COL", - "away_team_abbrev": "ATL", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_sd_0502", - "sport": "MLB", - "season": "2026", - "date": "2026-05-02", - "time": "00:40", - "home_team": "San Diego Padres", - "away_team": "Chicago White Sox", - "home_team_abbrev": "SD", - "away_team_abbrev": "CWS", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_laa_0502", - "sport": "MLB", - "season": "2026", - "date": "2026-05-02", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "New York Mets", - "home_team_abbrev": "LAA", - "away_team_abbrev": "NYM", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_sea_0502", - "sport": "MLB", - "season": "2026", - "date": "2026-05-02", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Kansas City Royals", - "home_team_abbrev": "SEA", - "away_team_abbrev": "KC", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_chc_0502", - "sport": "MLB", - "season": "2026", - "date": "2026-05-02", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "CHC", - "away_team_abbrev": "AZ", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_bos_0503", - "sport": "MLB", - "season": "2026", - "date": "2026-05-03", - "time": "17:35", - "home_team": "Boston Red Sox", - "away_team": "Houston Astros", - "home_team_abbrev": "BOS", - "away_team_abbrev": "HOU", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_pit_0503", - "sport": "MLB", - "season": "2026", - "date": "2026-05-03", - "time": "17:35", - "home_team": "Pittsburgh Pirates", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "PIT", - "away_team_abbrev": "CIN", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_nyy_0503", - "sport": "MLB", - "season": "2026", - "date": "2026-05-03", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "NYY", - "away_team_abbrev": "BAL", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_wsh_0503", - "sport": "MLB", - "season": "2026", - "date": "2026-05-03", - "time": "17:35", - "home_team": "Washington Nationals", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "WSH", - "away_team_abbrev": "MIL", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_tb_0503", - "sport": "MLB", - "season": "2026", - "date": "2026-05-03", - "time": "17:40", - "home_team": "Tampa Bay Rays", - "away_team": "San Francisco Giants", - "home_team_abbrev": "TB", - "away_team_abbrev": "SF", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_det_0503", - "sport": "MLB", - "season": "2026", - "date": "2026-05-03", - "time": "17:40", - "home_team": "Detroit Tigers", - "away_team": "Texas Rangers", - "home_team_abbrev": "DET", - "away_team_abbrev": "TEX", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_mia_0503", - "sport": "MLB", - "season": "2026", - "date": "2026-05-03", - "time": "17:40", - "home_team": "Miami Marlins", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "MIA", - "away_team_abbrev": "PHI", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_min_0503", - "sport": "MLB", - "season": "2026", - "date": "2026-05-03", - "time": "18:10", - "home_team": "Minnesota Twins", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "MIN", - "away_team_abbrev": "TOR", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_stl_0503", - "sport": "MLB", - "season": "2026", - "date": "2026-05-03", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "STL", - "away_team_abbrev": "LAD", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_col_0503", - "sport": "MLB", - "season": "2026", - "date": "2026-05-03", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Atlanta Braves", - "home_team_abbrev": "COL", - "away_team_abbrev": "ATL", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_ath_0503", - "sport": "MLB", - "season": "2026", - "date": "2026-05-03", - "time": "20:05", - "home_team": "Athletics", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "ATH", - "away_team_abbrev": "CLE", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_laa_0503", - "sport": "MLB", - "season": "2026", - "date": "2026-05-03", - "time": "20:07", - "home_team": "Los Angeles Angels", - "away_team": "New York Mets", - "home_team_abbrev": "LAA", - "away_team_abbrev": "NYM", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_sea_0503", - "sport": "MLB", - "season": "2026", - "date": "2026-05-03", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Kansas City Royals", - "home_team_abbrev": "SEA", - "away_team_abbrev": "KC", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_sd_0503", - "sport": "MLB", - "season": "2026", - "date": "2026-05-03", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "Chicago White Sox", - "home_team_abbrev": "SD", - "away_team_abbrev": "CWS", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_chc_0503", - "sport": "MLB", - "season": "2026", - "date": "2026-05-03", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "CHC", - "away_team_abbrev": "AZ", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_det_0504", - "sport": "MLB", - "season": "2026", - "date": "2026-05-04", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Boston Red Sox", - "home_team_abbrev": "DET", - "away_team_abbrev": "BOS", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_tb_0504", - "sport": "MLB", - "season": "2026", - "date": "2026-05-04", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "TB", - "away_team_abbrev": "TOR", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_mia_0504", - "sport": "MLB", - "season": "2026", - "date": "2026-05-04", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "MIA", - "away_team_abbrev": "PHI", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_nyy_0504", - "sport": "MLB", - "season": "2026", - "date": "2026-05-04", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "NYY", - "away_team_abbrev": "BAL", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_kc_0504", - "sport": "MLB", - "season": "2026", - "date": "2026-05-04", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "KC", - "away_team_abbrev": "CLE", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_stl_0504", - "sport": "MLB", - "season": "2026", - "date": "2026-05-04", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "STL", - "away_team_abbrev": "MIL", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_col_0504", - "sport": "MLB", - "season": "2026", - "date": "2026-05-04", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "New York Mets", - "home_team_abbrev": "COL", - "away_team_abbrev": "NYM", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_laa_0504", - "sport": "MLB", - "season": "2026", - "date": "2026-05-04", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Chicago White Sox", - "home_team_abbrev": "LAA", - "away_team_abbrev": "CWS", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_sea_0504", - "sport": "MLB", - "season": "2026", - "date": "2026-05-04", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Atlanta Braves", - "home_team_abbrev": "SEA", - "away_team_abbrev": "ATL", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_sf_0504", - "sport": "MLB", - "season": "2026", - "date": "2026-05-04", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "San Diego Padres", - "home_team_abbrev": "SF", - "away_team_abbrev": "SD", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_chc_0504", - "sport": "MLB", - "season": "2026", - "date": "2026-05-04", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "CHC", - "away_team_abbrev": "CIN", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_hou_0504", - "sport": "MLB", - "season": "2026", - "date": "2026-05-04", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "LAD", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_det_0505", - "sport": "MLB", - "season": "2026", - "date": "2026-05-05", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Boston Red Sox", - "home_team_abbrev": "DET", - "away_team_abbrev": "BOS", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_tb_0505", - "sport": "MLB", - "season": "2026", - "date": "2026-05-05", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "TB", - "away_team_abbrev": "TOR", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_phi_0505", - "sport": "MLB", - "season": "2026", - "date": "2026-05-05", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Athletics", - "home_team_abbrev": "PHI", - "away_team_abbrev": "ATH", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_mia_0505", - "sport": "MLB", - "season": "2026", - "date": "2026-05-05", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "MIA", - "away_team_abbrev": "BAL", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_wsh_0505", - "sport": "MLB", - "season": "2026", - "date": "2026-05-05", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Minnesota Twins", - "home_team_abbrev": "WSH", - "away_team_abbrev": "MIN", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_nyy_0505", - "sport": "MLB", - "season": "2026", - "date": "2026-05-05", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Texas Rangers", - "home_team_abbrev": "NYY", - "away_team_abbrev": "TEX", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_kc_0505", - "sport": "MLB", - "season": "2026", - "date": "2026-05-05", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "KC", - "away_team_abbrev": "CLE", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_stl_0505", - "sport": "MLB", - "season": "2026", - "date": "2026-05-05", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "STL", - "away_team_abbrev": "MIL", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_col_0505", - "sport": "MLB", - "season": "2026", - "date": "2026-05-05", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "New York Mets", - "home_team_abbrev": "COL", - "away_team_abbrev": "NYM", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_laa_0505", - "sport": "MLB", - "season": "2026", - "date": "2026-05-05", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Chicago White Sox", - "home_team_abbrev": "LAA", - "away_team_abbrev": "CWS", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_az_0505", - "sport": "MLB", - "season": "2026", - "date": "2026-05-05", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "AZ", - "away_team_abbrev": "PIT", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_sea_0505", - "sport": "MLB", - "season": "2026", - "date": "2026-05-05", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Atlanta Braves", - "home_team_abbrev": "SEA", - "away_team_abbrev": "ATL", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_sf_0505", - "sport": "MLB", - "season": "2026", - "date": "2026-05-05", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "San Diego Padres", - "home_team_abbrev": "SF", - "away_team_abbrev": "SD", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_chc_0505", - "sport": "MLB", - "season": "2026", - "date": "2026-05-05", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "CHC", - "away_team_abbrev": "CIN", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_hou_0505", - "sport": "MLB", - "season": "2026", - "date": "2026-05-05", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "LAD", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_tb_0506", - "sport": "MLB", - "season": "2026", - "date": "2026-05-06", - "time": "17:10", - "home_team": "Tampa Bay Rays", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "TB", - "away_team_abbrev": "TOR", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_stl_0506", - "sport": "MLB", - "season": "2026", - "date": "2026-05-06", - "time": "17:15", - "home_team": "St. Louis Cardinals", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "STL", - "away_team_abbrev": "MIL", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_col_0506", - "sport": "MLB", - "season": "2026", - "date": "2026-05-06", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "New York Mets", - "home_team_abbrev": "COL", - "away_team_abbrev": "NYM", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_sf_0506", - "sport": "MLB", - "season": "2026", - "date": "2026-05-06", - "time": "19:45", - "home_team": "San Francisco Giants", - "away_team": "San Diego Padres", - "home_team_abbrev": "SF", - "away_team_abbrev": "SD", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_laa_0506", - "sport": "MLB", - "season": "2026", - "date": "2026-05-06", - "time": "20:07", - "home_team": "Los Angeles Angels", - "away_team": "Chicago White Sox", - "home_team_abbrev": "LAA", - "away_team_abbrev": "CWS", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_sea_0506", - "sport": "MLB", - "season": "2026", - "date": "2026-05-06", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Atlanta Braves", - "home_team_abbrev": "SEA", - "away_team_abbrev": "ATL", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_det_0506", - "sport": "MLB", - "season": "2026", - "date": "2026-05-06", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Boston Red Sox", - "home_team_abbrev": "DET", - "away_team_abbrev": "BOS", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_phi_0506", - "sport": "MLB", - "season": "2026", - "date": "2026-05-06", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Athletics", - "home_team_abbrev": "PHI", - "away_team_abbrev": "ATH", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_mia_0506", - "sport": "MLB", - "season": "2026", - "date": "2026-05-06", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "MIA", - "away_team_abbrev": "BAL", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_wsh_0506", - "sport": "MLB", - "season": "2026", - "date": "2026-05-06", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Minnesota Twins", - "home_team_abbrev": "WSH", - "away_team_abbrev": "MIN", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_nyy_0506", - "sport": "MLB", - "season": "2026", - "date": "2026-05-06", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Texas Rangers", - "home_team_abbrev": "NYY", - "away_team_abbrev": "TEX", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_kc_0506", - "sport": "MLB", - "season": "2026", - "date": "2026-05-06", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "KC", - "away_team_abbrev": "CLE", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_az_0506", - "sport": "MLB", - "season": "2026", - "date": "2026-05-06", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "AZ", - "away_team_abbrev": "PIT", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_chc_0506", - "sport": "MLB", - "season": "2026", - "date": "2026-05-06", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "CHC", - "away_team_abbrev": "CIN", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_hou_0506", - "sport": "MLB", - "season": "2026", - "date": "2026-05-06", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "LAD", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_nyy_0507", - "sport": "MLB", - "season": "2026", - "date": "2026-05-07", - "time": "16:35", - "home_team": "New York Yankees", - "away_team": "Texas Rangers", - "home_team_abbrev": "NYY", - "away_team_abbrev": "TEX", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_wsh_0507", - "sport": "MLB", - "season": "2026", - "date": "2026-05-07", - "time": "17:05", - "home_team": "Washington Nationals", - "away_team": "Minnesota Twins", - "home_team_abbrev": "WSH", - "away_team_abbrev": "MIN", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_kc_0507", - "sport": "MLB", - "season": "2026", - "date": "2026-05-07", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "KC", - "away_team_abbrev": "CLE", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_az_0507", - "sport": "MLB", - "season": "2026", - "date": "2026-05-07", - "time": "19:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "AZ", - "away_team_abbrev": "PIT", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_phi_0507", - "sport": "MLB", - "season": "2026", - "date": "2026-05-07", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Athletics", - "home_team_abbrev": "PHI", - "away_team_abbrev": "ATH", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_mia_0507", - "sport": "MLB", - "season": "2026", - "date": "2026-05-07", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "MIA", - "away_team_abbrev": "BAL", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_bos_0507", - "sport": "MLB", - "season": "2026", - "date": "2026-05-07", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TB", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_sd_0507", - "sport": "MLB", - "season": "2026", - "date": "2026-05-07", - "time": "02:10", - "home_team": "San Diego Padres", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "SD", - "away_team_abbrev": "STL", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_chc_0507", - "sport": "MLB", - "season": "2026", - "date": "2026-05-07", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "CHC", - "away_team_abbrev": "CIN", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_cin_0508", - "sport": "MLB", - "season": "2026", - "date": "2026-05-08", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Houston Astros", - "home_team_abbrev": "CIN", - "away_team_abbrev": "HOU", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_phi_0508", - "sport": "MLB", - "season": "2026", - "date": "2026-05-08", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Colorado Rockies", - "home_team_abbrev": "PHI", - "away_team_abbrev": "COL", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_bal_0508", - "sport": "MLB", - "season": "2026", - "date": "2026-05-08", - "time": "23:05", - "home_team": "Baltimore Orioles", - "away_team": "Athletics", - "home_team_abbrev": "BAL", - "away_team_abbrev": "ATH", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_tor_0508", - "sport": "MLB", - "season": "2026", - "date": "2026-05-08", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "TOR", - "away_team_abbrev": "LAA", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_bos_0508", - "sport": "MLB", - "season": "2026", - "date": "2026-05-08", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TB", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_mia_0508", - "sport": "MLB", - "season": "2026", - "date": "2026-05-08", - "time": "23:10", - "home_team": "Miami Marlins", - "away_team": "Washington Nationals", - "home_team_abbrev": "MIA", - "away_team_abbrev": "WSH", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_kc_0508", - "sport": "MLB", - "season": "2026", - "date": "2026-05-08", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Detroit Tigers", - "home_team_abbrev": "KC", - "away_team_abbrev": "DET", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_cws_0508", - "sport": "MLB", - "season": "2026", - "date": "2026-05-08", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Seattle Mariners", - "home_team_abbrev": "CWS", - "away_team_abbrev": "SEA", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_mil_0508", - "sport": "MLB", - "season": "2026", - "date": "2026-05-08", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "New York Yankees", - "home_team_abbrev": "MIL", - "away_team_abbrev": "NYY", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_tex_0508", - "sport": "MLB", - "season": "2026", - "date": "2026-05-08", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Chicago Cubs", - "home_team_abbrev": "TEX", - "away_team_abbrev": "CHC", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_az_0508", - "sport": "MLB", - "season": "2026", - "date": "2026-05-08", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "New York Mets", - "home_team_abbrev": "AZ", - "away_team_abbrev": "NYM", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_sd_0508", - "sport": "MLB", - "season": "2026", - "date": "2026-05-08", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "SD", - "away_team_abbrev": "STL", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_lad_0508", - "sport": "MLB", - "season": "2026", - "date": "2026-05-08", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Atlanta Braves", - "home_team_abbrev": "LAD", - "away_team_abbrev": "ATL", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_sf_0508", - "sport": "MLB", - "season": "2026", - "date": "2026-05-08", - "time": "02:15", - "home_team": "San Francisco Giants", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "SF", - "away_team_abbrev": "PIT", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_cle_0508", - "sport": "MLB", - "season": "2026", - "date": "2026-05-08", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Minnesota Twins", - "home_team_abbrev": "CLE", - "away_team_abbrev": "MIN", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_tor_0509", - "sport": "MLB", - "season": "2026", - "date": "2026-05-09", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "TOR", - "away_team_abbrev": "LAA", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_bal_0509", - "sport": "MLB", - "season": "2026", - "date": "2026-05-09", - "time": "20:05", - "home_team": "Baltimore Orioles", - "away_team": "Athletics", - "home_team_abbrev": "BAL", - "away_team_abbrev": "ATH", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_cin_0509", - "sport": "MLB", - "season": "2026", - "date": "2026-05-09", - "time": "20:10", - "home_team": "Cincinnati Reds", - "away_team": "Houston Astros", - "home_team_abbrev": "CIN", - "away_team_abbrev": "HOU", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_bos_0509", - "sport": "MLB", - "season": "2026", - "date": "2026-05-09", - "time": "20:10", - "home_team": "Boston Red Sox", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TB", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_mia_0509", - "sport": "MLB", - "season": "2026", - "date": "2026-05-09", - "time": "20:10", - "home_team": "Miami Marlins", - "away_team": "Washington Nationals", - "home_team_abbrev": "MIA", - "away_team_abbrev": "WSH", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_phi_0509", - "sport": "MLB", - "season": "2026", - "date": "2026-05-09", - "time": "22:05", - "home_team": "Philadelphia Phillies", - "away_team": "Colorado Rockies", - "home_team_abbrev": "PHI", - "away_team_abbrev": "COL", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_tex_0509", - "sport": "MLB", - "season": "2026", - "date": "2026-05-09", - "time": "23:05", - "home_team": "Texas Rangers", - "away_team": "Chicago Cubs", - "home_team_abbrev": "TEX", - "away_team_abbrev": "CHC", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_kc_0509", - "sport": "MLB", - "season": "2026", - "date": "2026-05-09", - "time": "23:10", - "home_team": "Kansas City Royals", - "away_team": "Detroit Tigers", - "home_team_abbrev": "KC", - "away_team_abbrev": "DET", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_cws_0509", - "sport": "MLB", - "season": "2026", - "date": "2026-05-09", - "time": "23:10", - "home_team": "Chicago White Sox", - "away_team": "Seattle Mariners", - "home_team_abbrev": "CWS", - "away_team_abbrev": "SEA", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_mil_0509", - "sport": "MLB", - "season": "2026", - "date": "2026-05-09", - "time": "23:10", - "home_team": "Milwaukee Brewers", - "away_team": "New York Yankees", - "home_team_abbrev": "MIL", - "away_team_abbrev": "NYY", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_az_0509", - "sport": "MLB", - "season": "2026", - "date": "2026-05-09", - "time": "23:15", - "home_team": "Arizona Diamondbacks", - "away_team": "New York Mets", - "home_team_abbrev": "AZ", - "away_team_abbrev": "NYM", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_sd_0509", - "sport": "MLB", - "season": "2026", - "date": "2026-05-09", - "time": "23:15", - "home_team": "San Diego Padres", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "SD", - "away_team_abbrev": "STL", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_lad_0509", - "sport": "MLB", - "season": "2026", - "date": "2026-05-09", - "time": "01:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Atlanta Braves", - "home_team_abbrev": "LAD", - "away_team_abbrev": "ATL", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_cle_0509", - "sport": "MLB", - "season": "2026", - "date": "2026-05-09", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Minnesota Twins", - "home_team_abbrev": "CLE", - "away_team_abbrev": "MIN", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_sf_0509", - "sport": "MLB", - "season": "2026", - "date": "2026-05-09", - "time": "10:33", - "home_team": "San Francisco Giants", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "SF", - "away_team_abbrev": "PIT", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_bal_0510", - "sport": "MLB", - "season": "2026", - "date": "2026-05-10", - "time": "17:35", - "home_team": "Baltimore Orioles", - "away_team": "Athletics", - "home_team_abbrev": "BAL", - "away_team_abbrev": "ATH", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_bos_0510", - "sport": "MLB", - "season": "2026", - "date": "2026-05-10", - "time": "17:35", - "home_team": "Boston Red Sox", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TB", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_phi_0510", - "sport": "MLB", - "season": "2026", - "date": "2026-05-10", - "time": "17:35", - "home_team": "Philadelphia Phillies", - "away_team": "Colorado Rockies", - "home_team_abbrev": "PHI", - "away_team_abbrev": "COL", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_tor_0510", - "sport": "MLB", - "season": "2026", - "date": "2026-05-10", - "time": "17:37", - "home_team": "Toronto Blue Jays", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "TOR", - "away_team_abbrev": "LAA", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_cin_0510", - "sport": "MLB", - "season": "2026", - "date": "2026-05-10", - "time": "17:40", - "home_team": "Cincinnati Reds", - "away_team": "Houston Astros", - "home_team_abbrev": "CIN", - "away_team_abbrev": "HOU", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_mia_0510", - "sport": "MLB", - "season": "2026", - "date": "2026-05-10", - "time": "17:40", - "home_team": "Miami Marlins", - "away_team": "Washington Nationals", - "home_team_abbrev": "MIA", - "away_team_abbrev": "WSH", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_kc_0510", - "sport": "MLB", - "season": "2026", - "date": "2026-05-10", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "Detroit Tigers", - "home_team_abbrev": "KC", - "away_team_abbrev": "DET", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_cws_0510", - "sport": "MLB", - "season": "2026", - "date": "2026-05-10", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Seattle Mariners", - "home_team_abbrev": "CWS", - "away_team_abbrev": "SEA", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_mil_0510", - "sport": "MLB", - "season": "2026", - "date": "2026-05-10", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "New York Yankees", - "home_team_abbrev": "MIL", - "away_team_abbrev": "NYY", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_tex_0510", - "sport": "MLB", - "season": "2026", - "date": "2026-05-10", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "Chicago Cubs", - "home_team_abbrev": "TEX", - "away_team_abbrev": "CHC", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_sf_0510", - "sport": "MLB", - "season": "2026", - "date": "2026-05-10", - "time": "20:05", - "home_team": "San Francisco Giants", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "SF", - "away_team_abbrev": "PIT", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_az_0510", - "sport": "MLB", - "season": "2026", - "date": "2026-05-10", - "time": "20:10", - "home_team": "Arizona Diamondbacks", - "away_team": "New York Mets", - "home_team_abbrev": "AZ", - "away_team_abbrev": "NYM", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_sd_0510", - "sport": "MLB", - "season": "2026", - "date": "2026-05-10", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "SD", - "away_team_abbrev": "STL", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_lad_0510", - "sport": "MLB", - "season": "2026", - "date": "2026-05-10", - "time": "20:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Atlanta Braves", - "home_team_abbrev": "LAD", - "away_team_abbrev": "ATL", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_cle_0510", - "sport": "MLB", - "season": "2026", - "date": "2026-05-10", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Minnesota Twins", - "home_team_abbrev": "CLE", - "away_team_abbrev": "MIN", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_bal_0511", - "sport": "MLB", - "season": "2026", - "date": "2026-05-11", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "New York Yankees", - "home_team_abbrev": "BAL", - "away_team_abbrev": "NYY", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_tor_0511", - "sport": "MLB", - "season": "2026", - "date": "2026-05-11", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "TOR", - "away_team_abbrev": "TB", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_tex_0511", - "sport": "MLB", - "season": "2026", - "date": "2026-05-11", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "TEX", - "away_team_abbrev": "AZ", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_lad_0511", - "sport": "MLB", - "season": "2026", - "date": "2026-05-11", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "San Francisco Giants", - "home_team_abbrev": "LAD", - "away_team_abbrev": "SF", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_cle_0511", - "sport": "MLB", - "season": "2026", - "date": "2026-05-11", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "CLE", - "away_team_abbrev": "LAA", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_hou_0511", - "sport": "MLB", - "season": "2026", - "date": "2026-05-11", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Seattle Mariners", - "home_team_abbrev": "HOU", - "away_team_abbrev": "SEA", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_bal_0512", - "sport": "MLB", - "season": "2026", - "date": "2026-05-12", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "New York Yankees", - "home_team_abbrev": "BAL", - "away_team_abbrev": "NYY", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_cin_0512", - "sport": "MLB", - "season": "2026", - "date": "2026-05-12", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Washington Nationals", - "home_team_abbrev": "CIN", - "away_team_abbrev": "WSH", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_pit_0512", - "sport": "MLB", - "season": "2026", - "date": "2026-05-12", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Colorado Rockies", - "home_team_abbrev": "PIT", - "away_team_abbrev": "COL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_bos_0512", - "sport": "MLB", - "season": "2026", - "date": "2026-05-12", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "BOS", - "away_team_abbrev": "PHI", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_tor_0512", - "sport": "MLB", - "season": "2026", - "date": "2026-05-12", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "TOR", - "away_team_abbrev": "TB", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_nym_0512", - "sport": "MLB", - "season": "2026", - "date": "2026-05-12", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Detroit Tigers", - "home_team_abbrev": "NYM", - "away_team_abbrev": "DET", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_atl_0512", - "sport": "MLB", - "season": "2026", - "date": "2026-05-12", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Chicago Cubs", - "home_team_abbrev": "ATL", - "away_team_abbrev": "CHC", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_cws_0512", - "sport": "MLB", - "season": "2026", - "date": "2026-05-12", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Kansas City Royals", - "home_team_abbrev": "CWS", - "away_team_abbrev": "KC", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_min_0512", - "sport": "MLB", - "season": "2026", - "date": "2026-05-12", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Miami Marlins", - "home_team_abbrev": "MIN", - "away_team_abbrev": "MIA", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_mil_0512", - "sport": "MLB", - "season": "2026", - "date": "2026-05-12", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "San Diego Padres", - "home_team_abbrev": "MIL", - "away_team_abbrev": "SD", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_tex_0512", - "sport": "MLB", - "season": "2026", - "date": "2026-05-12", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "TEX", - "away_team_abbrev": "AZ", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_ath_0512", - "sport": "MLB", - "season": "2026", - "date": "2026-05-12", - "time": "01:40", - "home_team": "Athletics", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "ATH", - "away_team_abbrev": "STL", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_lad_0512", - "sport": "MLB", - "season": "2026", - "date": "2026-05-12", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "San Francisco Giants", - "home_team_abbrev": "LAD", - "away_team_abbrev": "SF", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_cle_0512", - "sport": "MLB", - "season": "2026", - "date": "2026-05-12", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "CLE", - "away_team_abbrev": "LAA", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_hou_0512", - "sport": "MLB", - "season": "2026", - "date": "2026-05-12", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Seattle Mariners", - "home_team_abbrev": "HOU", - "away_team_abbrev": "SEA", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_bal_0513", - "sport": "MLB", - "season": "2026", - "date": "2026-05-13", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "New York Yankees", - "home_team_abbrev": "BAL", - "away_team_abbrev": "NYY", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_cin_0513", - "sport": "MLB", - "season": "2026", - "date": "2026-05-13", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Washington Nationals", - "home_team_abbrev": "CIN", - "away_team_abbrev": "WSH", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_pit_0513", - "sport": "MLB", - "season": "2026", - "date": "2026-05-13", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Colorado Rockies", - "home_team_abbrev": "PIT", - "away_team_abbrev": "COL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_bos_0513", - "sport": "MLB", - "season": "2026", - "date": "2026-05-13", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "BOS", - "away_team_abbrev": "PHI", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_tor_0513", - "sport": "MLB", - "season": "2026", - "date": "2026-05-13", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "TOR", - "away_team_abbrev": "TB", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_nym_0513", - "sport": "MLB", - "season": "2026", - "date": "2026-05-13", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Detroit Tigers", - "home_team_abbrev": "NYM", - "away_team_abbrev": "DET", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_atl_0513", - "sport": "MLB", - "season": "2026", - "date": "2026-05-13", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Chicago Cubs", - "home_team_abbrev": "ATL", - "away_team_abbrev": "CHC", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_cws_0513", - "sport": "MLB", - "season": "2026", - "date": "2026-05-13", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Kansas City Royals", - "home_team_abbrev": "CWS", - "away_team_abbrev": "KC", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_min_0513", - "sport": "MLB", - "season": "2026", - "date": "2026-05-13", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Miami Marlins", - "home_team_abbrev": "MIN", - "away_team_abbrev": "MIA", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_mil_0513", - "sport": "MLB", - "season": "2026", - "date": "2026-05-13", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "San Diego Padres", - "home_team_abbrev": "MIL", - "away_team_abbrev": "SD", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_tex_0513", - "sport": "MLB", - "season": "2026", - "date": "2026-05-13", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "TEX", - "away_team_abbrev": "AZ", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_ath_0513", - "sport": "MLB", - "season": "2026", - "date": "2026-05-13", - "time": "01:40", - "home_team": "Athletics", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "ATH", - "away_team_abbrev": "STL", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_lad_0513", - "sport": "MLB", - "season": "2026", - "date": "2026-05-13", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "San Francisco Giants", - "home_team_abbrev": "LAD", - "away_team_abbrev": "SF", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_cle_0513", - "sport": "MLB", - "season": "2026", - "date": "2026-05-13", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "CLE", - "away_team_abbrev": "LAA", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_hou_0513", - "sport": "MLB", - "season": "2026", - "date": "2026-05-13", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Seattle Mariners", - "home_team_abbrev": "HOU", - "away_team_abbrev": "SEA", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_pit_0514", - "sport": "MLB", - "season": "2026", - "date": "2026-05-14", - "time": "16:35", - "home_team": "Pittsburgh Pirates", - "away_team": "Colorado Rockies", - "home_team_abbrev": "PIT", - "away_team_abbrev": "COL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_cin_0514", - "sport": "MLB", - "season": "2026", - "date": "2026-05-14", - "time": "16:40", - "home_team": "Cincinnati Reds", - "away_team": "Washington Nationals", - "home_team_abbrev": "CIN", - "away_team_abbrev": "WSH", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_nym_0514", - "sport": "MLB", - "season": "2026", - "date": "2026-05-14", - "time": "17:10", - "home_team": "New York Mets", - "away_team": "Detroit Tigers", - "home_team_abbrev": "NYM", - "away_team_abbrev": "DET", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_min_0514", - "sport": "MLB", - "season": "2026", - "date": "2026-05-14", - "time": "17:40", - "home_team": "Minnesota Twins", - "away_team": "Miami Marlins", - "home_team_abbrev": "MIN", - "away_team_abbrev": "MIA", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_mil_0514", - "sport": "MLB", - "season": "2026", - "date": "2026-05-14", - "time": "17:40", - "home_team": "Milwaukee Brewers", - "away_team": "San Diego Padres", - "home_team_abbrev": "MIL", - "away_team_abbrev": "SD", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_ath_0514", - "sport": "MLB", - "season": "2026", - "date": "2026-05-14", - "time": "19:05", - "home_team": "Athletics", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "ATH", - "away_team_abbrev": "STL", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_bos_0514", - "sport": "MLB", - "season": "2026", - "date": "2026-05-14", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "BOS", - "away_team_abbrev": "PHI", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_atl_0514", - "sport": "MLB", - "season": "2026", - "date": "2026-05-14", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Chicago Cubs", - "home_team_abbrev": "ATL", - "away_team_abbrev": "CHC", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_cws_0514", - "sport": "MLB", - "season": "2026", - "date": "2026-05-14", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Kansas City Royals", - "home_team_abbrev": "CWS", - "away_team_abbrev": "KC", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_lad_0514", - "sport": "MLB", - "season": "2026", - "date": "2026-05-14", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "San Francisco Giants", - "home_team_abbrev": "LAD", - "away_team_abbrev": "SF", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_hou_0514", - "sport": "MLB", - "season": "2026", - "date": "2026-05-14", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Seattle Mariners", - "home_team_abbrev": "HOU", - "away_team_abbrev": "SEA", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_det_0515", - "sport": "MLB", - "season": "2026", - "date": "2026-05-15", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "DET", - "away_team_abbrev": "TOR", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_pit_0515", - "sport": "MLB", - "season": "2026", - "date": "2026-05-15", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "PIT", - "away_team_abbrev": "PHI", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_wsh_0515", - "sport": "MLB", - "season": "2026", - "date": "2026-05-15", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "WSH", - "away_team_abbrev": "BAL", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_tb_0515", - "sport": "MLB", - "season": "2026", - "date": "2026-05-15", - "time": "23:10", - "home_team": "Tampa Bay Rays", - "away_team": "Miami Marlins", - "home_team_abbrev": "TB", - "away_team_abbrev": "MIA", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_nym_0515", - "sport": "MLB", - "season": "2026", - "date": "2026-05-15", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "New York Yankees", - "home_team_abbrev": "NYM", - "away_team_abbrev": "NYY", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_atl_0515", - "sport": "MLB", - "season": "2026", - "date": "2026-05-15", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Boston Red Sox", - "home_team_abbrev": "ATL", - "away_team_abbrev": "BOS", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_cws_0515", - "sport": "MLB", - "season": "2026", - "date": "2026-05-15", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Chicago Cubs", - "home_team_abbrev": "CWS", - "away_team_abbrev": "CHC", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_min_0515", - "sport": "MLB", - "season": "2026", - "date": "2026-05-15", - "time": "00:10", - "home_team": "Minnesota Twins", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "MIL", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_stl_0515", - "sport": "MLB", - "season": "2026", - "date": "2026-05-15", - "time": "00:15", - "home_team": "St. Louis Cardinals", - "away_team": "Kansas City Royals", - "home_team_abbrev": "STL", - "away_team_abbrev": "KC", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_col_0515", - "sport": "MLB", - "season": "2026", - "date": "2026-05-15", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "COL", - "away_team_abbrev": "AZ", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_laa_0515", - "sport": "MLB", - "season": "2026", - "date": "2026-05-15", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "LAA", - "away_team_abbrev": "LAD", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_sea_0515", - "sport": "MLB", - "season": "2026", - "date": "2026-05-15", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "San Diego Padres", - "home_team_abbrev": "SEA", - "away_team_abbrev": "SD", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_ath_0515", - "sport": "MLB", - "season": "2026", - "date": "2026-05-15", - "time": "01:40", - "home_team": "Athletics", - "away_team": "San Francisco Giants", - "home_team_abbrev": "ATH", - "away_team_abbrev": "SF", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_cle_0515", - "sport": "MLB", - "season": "2026", - "date": "2026-05-15", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "CLE", - "away_team_abbrev": "CIN", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_hou_0515", - "sport": "MLB", - "season": "2026", - "date": "2026-05-15", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Texas Rangers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "TEX", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_det_0516", - "sport": "MLB", - "season": "2026", - "date": "2026-05-16", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "DET", - "away_team_abbrev": "TOR", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_stl_0516", - "sport": "MLB", - "season": "2026", - "date": "2026-05-16", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Kansas City Royals", - "home_team_abbrev": "STL", - "away_team_abbrev": "KC", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_col_0516", - "sport": "MLB", - "season": "2026", - "date": "2026-05-16", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "COL", - "away_team_abbrev": "AZ", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_wsh_0516", - "sport": "MLB", - "season": "2026", - "date": "2026-05-16", - "time": "20:05", - "home_team": "Washington Nationals", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "WSH", - "away_team_abbrev": "BAL", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_pit_0516", - "sport": "MLB", - "season": "2026", - "date": "2026-05-16", - "time": "20:05", - "home_team": "Pittsburgh Pirates", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "PIT", - "away_team_abbrev": "PHI", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_tb_0516", - "sport": "MLB", - "season": "2026", - "date": "2026-05-16", - "time": "20:10", - "home_team": "Tampa Bay Rays", - "away_team": "Miami Marlins", - "home_team_abbrev": "TB", - "away_team_abbrev": "MIA", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_cws_0516", - "sport": "MLB", - "season": "2026", - "date": "2026-05-16", - "time": "23:10", - "home_team": "Chicago White Sox", - "away_team": "Chicago Cubs", - "home_team_abbrev": "CWS", - "away_team_abbrev": "CHC", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_min_0516", - "sport": "MLB", - "season": "2026", - "date": "2026-05-16", - "time": "23:10", - "home_team": "Minnesota Twins", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "MIL", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_sea_0516", - "sport": "MLB", - "season": "2026", - "date": "2026-05-16", - "time": "23:15", - "home_team": "Seattle Mariners", - "away_team": "San Diego Padres", - "home_team_abbrev": "SEA", - "away_team_abbrev": "SD", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_atl_0516", - "sport": "MLB", - "season": "2026", - "date": "2026-05-16", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Boston Red Sox", - "home_team_abbrev": "ATL", - "away_team_abbrev": "BOS", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_nym_0516", - "sport": "MLB", - "season": "2026", - "date": "2026-05-16", - "time": "23:15", - "home_team": "New York Mets", - "away_team": "New York Yankees", - "home_team_abbrev": "NYM", - "away_team_abbrev": "NYY", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_laa_0516", - "sport": "MLB", - "season": "2026", - "date": "2026-05-16", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "LAA", - "away_team_abbrev": "LAD", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_ath_0516", - "sport": "MLB", - "season": "2026", - "date": "2026-05-16", - "time": "01:40", - "home_team": "Athletics", - "away_team": "San Francisco Giants", - "home_team_abbrev": "ATH", - "away_team_abbrev": "SF", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_cle_0516", - "sport": "MLB", - "season": "2026", - "date": "2026-05-16", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "CLE", - "away_team_abbrev": "CIN", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_hou_0516", - "sport": "MLB", - "season": "2026", - "date": "2026-05-16", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Texas Rangers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "TEX", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_wsh_0517", - "sport": "MLB", - "season": "2026", - "date": "2026-05-17", - "time": "17:35", - "home_team": "Washington Nationals", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "WSH", - "away_team_abbrev": "BAL", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_pit_0517", - "sport": "MLB", - "season": "2026", - "date": "2026-05-17", - "time": "17:35", - "home_team": "Pittsburgh Pirates", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "PIT", - "away_team_abbrev": "PHI", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_atl_0517", - "sport": "MLB", - "season": "2026", - "date": "2026-05-17", - "time": "17:35", - "home_team": "Atlanta Braves", - "away_team": "Boston Red Sox", - "home_team_abbrev": "ATL", - "away_team_abbrev": "BOS", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_det_0517", - "sport": "MLB", - "season": "2026", - "date": "2026-05-17", - "time": "17:40", - "home_team": "Detroit Tigers", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "DET", - "away_team_abbrev": "TOR", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_tb_0517", - "sport": "MLB", - "season": "2026", - "date": "2026-05-17", - "time": "17:40", - "home_team": "Tampa Bay Rays", - "away_team": "Miami Marlins", - "home_team_abbrev": "TB", - "away_team_abbrev": "MIA", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_nym_0517", - "sport": "MLB", - "season": "2026", - "date": "2026-05-17", - "time": "17:40", - "home_team": "New York Mets", - "away_team": "New York Yankees", - "home_team_abbrev": "NYM", - "away_team_abbrev": "NYY", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_cws_0517", - "sport": "MLB", - "season": "2026", - "date": "2026-05-17", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Chicago Cubs", - "home_team_abbrev": "CWS", - "away_team_abbrev": "CHC", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_min_0517", - "sport": "MLB", - "season": "2026", - "date": "2026-05-17", - "time": "18:10", - "home_team": "Minnesota Twins", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "MIL", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_stl_0517", - "sport": "MLB", - "season": "2026", - "date": "2026-05-17", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Kansas City Royals", - "home_team_abbrev": "STL", - "away_team_abbrev": "KC", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_col_0517", - "sport": "MLB", - "season": "2026", - "date": "2026-05-17", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "COL", - "away_team_abbrev": "AZ", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_ath_0517", - "sport": "MLB", - "season": "2026", - "date": "2026-05-17", - "time": "20:05", - "home_team": "Athletics", - "away_team": "San Francisco Giants", - "home_team_abbrev": "ATH", - "away_team_abbrev": "SF", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_laa_0517", - "sport": "MLB", - "season": "2026", - "date": "2026-05-17", - "time": "20:07", - "home_team": "Los Angeles Angels", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "LAA", - "away_team_abbrev": "LAD", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_sea_0517", - "sport": "MLB", - "season": "2026", - "date": "2026-05-17", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "San Diego Padres", - "home_team_abbrev": "SEA", - "away_team_abbrev": "SD", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_cle_0517", - "sport": "MLB", - "season": "2026", - "date": "2026-05-17", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "CLE", - "away_team_abbrev": "CIN", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_hou_0517", - "sport": "MLB", - "season": "2026", - "date": "2026-05-17", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Texas Rangers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "TEX", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_det_0518", - "sport": "MLB", - "season": "2026", - "date": "2026-05-18", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "DET", - "away_team_abbrev": "CLE", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_tb_0518", - "sport": "MLB", - "season": "2026", - "date": "2026-05-18", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "TB", - "away_team_abbrev": "BAL", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_phi_0518", - "sport": "MLB", - "season": "2026", - "date": "2026-05-18", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CIN", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_mia_0518", - "sport": "MLB", - "season": "2026", - "date": "2026-05-18", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Atlanta Braves", - "home_team_abbrev": "MIA", - "away_team_abbrev": "ATL", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_wsh_0518", - "sport": "MLB", - "season": "2026", - "date": "2026-05-18", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "New York Mets", - "home_team_abbrev": "WSH", - "away_team_abbrev": "NYM", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_nyy_0518", - "sport": "MLB", - "season": "2026", - "date": "2026-05-18", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "NYY", - "away_team_abbrev": "TOR", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_kc_0518", - "sport": "MLB", - "season": "2026", - "date": "2026-05-18", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Boston Red Sox", - "home_team_abbrev": "KC", - "away_team_abbrev": "BOS", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_min_0518", - "sport": "MLB", - "season": "2026", - "date": "2026-05-18", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Houston Astros", - "home_team_abbrev": "MIN", - "away_team_abbrev": "HOU", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_col_0518", - "sport": "MLB", - "season": "2026", - "date": "2026-05-18", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Texas Rangers", - "home_team_abbrev": "COL", - "away_team_abbrev": "TEX", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_laa_0518", - "sport": "MLB", - "season": "2026", - "date": "2026-05-18", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Athletics", - "home_team_abbrev": "LAA", - "away_team_abbrev": "ATH", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_sd_0518", - "sport": "MLB", - "season": "2026", - "date": "2026-05-18", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "SD", - "away_team_abbrev": "LAD", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_az_0518", - "sport": "MLB", - "season": "2026", - "date": "2026-05-18", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "San Francisco Giants", - "home_team_abbrev": "AZ", - "away_team_abbrev": "SF", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_sea_0518", - "sport": "MLB", - "season": "2026", - "date": "2026-05-18", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Chicago White Sox", - "home_team_abbrev": "SEA", - "away_team_abbrev": "CWS", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_chc_0518", - "sport": "MLB", - "season": "2026", - "date": "2026-05-18", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "CHC", - "away_team_abbrev": "MIL", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_mia_0519", - "sport": "MLB", - "season": "2026", - "date": "2026-05-19", - "time": "20:10", - "home_team": "Miami Marlins", - "away_team": "Atlanta Braves", - "home_team_abbrev": "MIA", - "away_team_abbrev": "ATL", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_det_0519", - "sport": "MLB", - "season": "2026", - "date": "2026-05-19", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "DET", - "away_team_abbrev": "CLE", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_tb_0519", - "sport": "MLB", - "season": "2026", - "date": "2026-05-19", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "TB", - "away_team_abbrev": "BAL", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_phi_0519", - "sport": "MLB", - "season": "2026", - "date": "2026-05-19", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CIN", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_wsh_0519", - "sport": "MLB", - "season": "2026", - "date": "2026-05-19", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "New York Mets", - "home_team_abbrev": "WSH", - "away_team_abbrev": "NYM", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_nyy_0519", - "sport": "MLB", - "season": "2026", - "date": "2026-05-19", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "NYY", - "away_team_abbrev": "TOR", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_kc_0519", - "sport": "MLB", - "season": "2026", - "date": "2026-05-19", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Boston Red Sox", - "home_team_abbrev": "KC", - "away_team_abbrev": "BOS", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_min_0519", - "sport": "MLB", - "season": "2026", - "date": "2026-05-19", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Houston Astros", - "home_team_abbrev": "MIN", - "away_team_abbrev": "HOU", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_stl_0519", - "sport": "MLB", - "season": "2026", - "date": "2026-05-19", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "STL", - "away_team_abbrev": "PIT", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_col_0519", - "sport": "MLB", - "season": "2026", - "date": "2026-05-19", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Texas Rangers", - "home_team_abbrev": "COL", - "away_team_abbrev": "TEX", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_laa_0519", - "sport": "MLB", - "season": "2026", - "date": "2026-05-19", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Athletics", - "home_team_abbrev": "LAA", - "away_team_abbrev": "ATH", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_sd_0519", - "sport": "MLB", - "season": "2026", - "date": "2026-05-19", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "SD", - "away_team_abbrev": "LAD", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_az_0519", - "sport": "MLB", - "season": "2026", - "date": "2026-05-19", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "San Francisco Giants", - "home_team_abbrev": "AZ", - "away_team_abbrev": "SF", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_sea_0519", - "sport": "MLB", - "season": "2026", - "date": "2026-05-19", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Chicago White Sox", - "home_team_abbrev": "SEA", - "away_team_abbrev": "CWS", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_chc_0519", - "sport": "MLB", - "season": "2026", - "date": "2026-05-19", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "CHC", - "away_team_abbrev": "MIL", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_phi_0520", - "sport": "MLB", - "season": "2026", - "date": "2026-05-20", - "time": "17:05", - "home_team": "Philadelphia Phillies", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CIN", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_tb_0520", - "sport": "MLB", - "season": "2026", - "date": "2026-05-20", - "time": "17:10", - "home_team": "Tampa Bay Rays", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "TB", - "away_team_abbrev": "BAL", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_min_0520", - "sport": "MLB", - "season": "2026", - "date": "2026-05-20", - "time": "17:40", - "home_team": "Minnesota Twins", - "away_team": "Houston Astros", - "home_team_abbrev": "MIN", - "away_team_abbrev": "HOU", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_col_0520", - "sport": "MLB", - "season": "2026", - "date": "2026-05-20", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Texas Rangers", - "home_team_abbrev": "COL", - "away_team_abbrev": "TEX", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_az_0520", - "sport": "MLB", - "season": "2026", - "date": "2026-05-20", - "time": "19:40", - "home_team": "Arizona Diamondbacks", - "away_team": "San Francisco Giants", - "home_team_abbrev": "AZ", - "away_team_abbrev": "SF", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_sea_0520", - "sport": "MLB", - "season": "2026", - "date": "2026-05-20", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Chicago White Sox", - "home_team_abbrev": "SEA", - "away_team_abbrev": "CWS", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_det_0520", - "sport": "MLB", - "season": "2026", - "date": "2026-05-20", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "DET", - "away_team_abbrev": "CLE", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_mia_0520", - "sport": "MLB", - "season": "2026", - "date": "2026-05-20", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Atlanta Braves", - "home_team_abbrev": "MIA", - "away_team_abbrev": "ATL", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_wsh_0520", - "sport": "MLB", - "season": "2026", - "date": "2026-05-20", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "New York Mets", - "home_team_abbrev": "WSH", - "away_team_abbrev": "NYM", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_nyy_0520", - "sport": "MLB", - "season": "2026", - "date": "2026-05-20", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "NYY", - "away_team_abbrev": "TOR", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_kc_0520", - "sport": "MLB", - "season": "2026", - "date": "2026-05-20", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Boston Red Sox", - "home_team_abbrev": "KC", - "away_team_abbrev": "BOS", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_stl_0520", - "sport": "MLB", - "season": "2026", - "date": "2026-05-20", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "STL", - "away_team_abbrev": "PIT", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_sd_0520", - "sport": "MLB", - "season": "2026", - "date": "2026-05-20", - "time": "00:40", - "home_team": "San Diego Padres", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "SD", - "away_team_abbrev": "LAD", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_laa_0520", - "sport": "MLB", - "season": "2026", - "date": "2026-05-20", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Athletics", - "home_team_abbrev": "LAA", - "away_team_abbrev": "ATH", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_chc_0520", - "sport": "MLB", - "season": "2026", - "date": "2026-05-20", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "CHC", - "away_team_abbrev": "MIL", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_det_0521", - "sport": "MLB", - "season": "2026", - "date": "2026-05-21", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "DET", - "away_team_abbrev": "CLE", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_stl_0521", - "sport": "MLB", - "season": "2026", - "date": "2026-05-21", - "time": "17:15", - "home_team": "St. Louis Cardinals", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "STL", - "away_team_abbrev": "PIT", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_wsh_0521", - "sport": "MLB", - "season": "2026", - "date": "2026-05-21", - "time": "20:05", - "home_team": "Washington Nationals", - "away_team": "New York Mets", - "home_team_abbrev": "WSH", - "away_team_abbrev": "NYM", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_mia_0521", - "sport": "MLB", - "season": "2026", - "date": "2026-05-21", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Atlanta Braves", - "home_team_abbrev": "MIA", - "away_team_abbrev": "ATL", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_nyy_0521", - "sport": "MLB", - "season": "2026", - "date": "2026-05-21", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "NYY", - "away_team_abbrev": "TOR", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_laa_0521", - "sport": "MLB", - "season": "2026", - "date": "2026-05-21", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Athletics", - "home_team_abbrev": "LAA", - "away_team_abbrev": "ATH", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_az_0521", - "sport": "MLB", - "season": "2026", - "date": "2026-05-21", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Colorado Rockies", - "home_team_abbrev": "AZ", - "away_team_abbrev": "COL", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_cin_0522", - "sport": "MLB", - "season": "2026", - "date": "2026-05-22", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "CIN", - "away_team_abbrev": "STL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_phi_0522", - "sport": "MLB", - "season": "2026", - "date": "2026-05-22", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CLE", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_bal_0522", - "sport": "MLB", - "season": "2026", - "date": "2026-05-22", - "time": "23:05", - "home_team": "Baltimore Orioles", - "away_team": "Detroit Tigers", - "home_team_abbrev": "BAL", - "away_team_abbrev": "DET", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_nyy_0522", - "sport": "MLB", - "season": "2026", - "date": "2026-05-22", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "NYY", - "away_team_abbrev": "TB", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_tor_0522", - "sport": "MLB", - "season": "2026", - "date": "2026-05-22", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "TOR", - "away_team_abbrev": "PIT", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_bos_0522", - "sport": "MLB", - "season": "2026", - "date": "2026-05-22", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Minnesota Twins", - "home_team_abbrev": "BOS", - "away_team_abbrev": "MIN", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_mia_0522", - "sport": "MLB", - "season": "2026", - "date": "2026-05-22", - "time": "23:10", - "home_team": "Miami Marlins", - "away_team": "New York Mets", - "home_team_abbrev": "MIA", - "away_team_abbrev": "NYM", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_atl_0522", - "sport": "MLB", - "season": "2026", - "date": "2026-05-22", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Washington Nationals", - "home_team_abbrev": "ATL", - "away_team_abbrev": "WSH", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_kc_0522", - "sport": "MLB", - "season": "2026", - "date": "2026-05-22", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Seattle Mariners", - "home_team_abbrev": "KC", - "away_team_abbrev": "SEA", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_mil_0522", - "sport": "MLB", - "season": "2026", - "date": "2026-05-22", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "MIL", - "away_team_abbrev": "LAD", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_laa_0522", - "sport": "MLB", - "season": "2026", - "date": "2026-05-22", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Texas Rangers", - "home_team_abbrev": "LAA", - "away_team_abbrev": "TEX", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_az_0522", - "sport": "MLB", - "season": "2026", - "date": "2026-05-22", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Colorado Rockies", - "home_team_abbrev": "AZ", - "away_team_abbrev": "COL", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_sd_0522", - "sport": "MLB", - "season": "2026", - "date": "2026-05-22", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Athletics", - "home_team_abbrev": "SD", - "away_team_abbrev": "ATH", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_sf_0522", - "sport": "MLB", - "season": "2026", - "date": "2026-05-22", - "time": "02:15", - "home_team": "San Francisco Giants", - "away_team": "Chicago White Sox", - "home_team_abbrev": "SF", - "away_team_abbrev": "CWS", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_chc_0522", - "sport": "MLB", - "season": "2026", - "date": "2026-05-22", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Houston Astros", - "home_team_abbrev": "CHC", - "away_team_abbrev": "HOU", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_nyy_0523", - "sport": "MLB", - "season": "2026", - "date": "2026-05-23", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "NYY", - "away_team_abbrev": "TB", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_tor_0523", - "sport": "MLB", - "season": "2026", - "date": "2026-05-23", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "TOR", - "away_team_abbrev": "PIT", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_bal_0523", - "sport": "MLB", - "season": "2026", - "date": "2026-05-23", - "time": "20:05", - "home_team": "Baltimore Orioles", - "away_team": "Detroit Tigers", - "home_team_abbrev": "BAL", - "away_team_abbrev": "DET", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_phi_0523", - "sport": "MLB", - "season": "2026", - "date": "2026-05-23", - "time": "20:05", - "home_team": "Philadelphia Phillies", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CLE", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_kc_0523", - "sport": "MLB", - "season": "2026", - "date": "2026-05-23", - "time": "20:10", - "home_team": "Kansas City Royals", - "away_team": "Seattle Mariners", - "home_team_abbrev": "KC", - "away_team_abbrev": "SEA", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_bos_0523", - "sport": "MLB", - "season": "2026", - "date": "2026-05-23", - "time": "20:10", - "home_team": "Boston Red Sox", - "away_team": "Minnesota Twins", - "home_team_abbrev": "BOS", - "away_team_abbrev": "MIN", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_atl_0523", - "sport": "MLB", - "season": "2026", - "date": "2026-05-23", - "time": "20:10", - "home_team": "Atlanta Braves", - "away_team": "Washington Nationals", - "home_team_abbrev": "ATL", - "away_team_abbrev": "WSH", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_mia_0523", - "sport": "MLB", - "season": "2026", - "date": "2026-05-23", - "time": "20:10", - "home_team": "Miami Marlins", - "away_team": "New York Mets", - "home_team_abbrev": "MIA", - "away_team_abbrev": "NYM", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_cin_0523", - "sport": "MLB", - "season": "2026", - "date": "2026-05-23", - "time": "23:15", - "home_team": "Cincinnati Reds", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "CIN", - "away_team_abbrev": "STL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_mil_0523", - "sport": "MLB", - "season": "2026", - "date": "2026-05-23", - "time": "23:15", - "home_team": "Milwaukee Brewers", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "MIL", - "away_team_abbrev": "LAD", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_sd_0523", - "sport": "MLB", - "season": "2026", - "date": "2026-05-23", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Athletics", - "home_team_abbrev": "SD", - "away_team_abbrev": "ATH", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_laa_0523", - "sport": "MLB", - "season": "2026", - "date": "2026-05-23", - "time": "02:05", - "home_team": "Los Angeles Angels", - "away_team": "Texas Rangers", - "home_team_abbrev": "LAA", - "away_team_abbrev": "TEX", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_az_0523", - "sport": "MLB", - "season": "2026", - "date": "2026-05-23", - "time": "02:10", - "home_team": "Arizona Diamondbacks", - "away_team": "Colorado Rockies", - "home_team_abbrev": "AZ", - "away_team_abbrev": "COL", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_chc_0523", - "sport": "MLB", - "season": "2026", - "date": "2026-05-23", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Houston Astros", - "home_team_abbrev": "CHC", - "away_team_abbrev": "HOU", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_sf_0523", - "sport": "MLB", - "season": "2026", - "date": "2026-05-23", - "time": "10:33", - "home_team": "San Francisco Giants", - "away_team": "Chicago White Sox", - "home_team_abbrev": "SF", - "away_team_abbrev": "CWS", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_bal_0524", - "sport": "MLB", - "season": "2026", - "date": "2026-05-24", - "time": "17:35", - "home_team": "Baltimore Orioles", - "away_team": "Detroit Tigers", - "home_team_abbrev": "BAL", - "away_team_abbrev": "DET", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_bos_0524", - "sport": "MLB", - "season": "2026", - "date": "2026-05-24", - "time": "17:35", - "home_team": "Boston Red Sox", - "away_team": "Minnesota Twins", - "home_team_abbrev": "BOS", - "away_team_abbrev": "MIN", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_phi_0524", - "sport": "MLB", - "season": "2026", - "date": "2026-05-24", - "time": "17:35", - "home_team": "Philadelphia Phillies", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CLE", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_nyy_0524", - "sport": "MLB", - "season": "2026", - "date": "2026-05-24", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "NYY", - "away_team_abbrev": "TB", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_tor_0524", - "sport": "MLB", - "season": "2026", - "date": "2026-05-24", - "time": "17:37", - "home_team": "Toronto Blue Jays", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "TOR", - "away_team_abbrev": "PIT", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_cin_0524", - "sport": "MLB", - "season": "2026", - "date": "2026-05-24", - "time": "17:40", - "home_team": "Cincinnati Reds", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "CIN", - "away_team_abbrev": "STL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_mia_0524", - "sport": "MLB", - "season": "2026", - "date": "2026-05-24", - "time": "17:40", - "home_team": "Miami Marlins", - "away_team": "New York Mets", - "home_team_abbrev": "MIA", - "away_team_abbrev": "NYM", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_kc_0524", - "sport": "MLB", - "season": "2026", - "date": "2026-05-24", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "Seattle Mariners", - "home_team_abbrev": "KC", - "away_team_abbrev": "SEA", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_mil_0524", - "sport": "MLB", - "season": "2026", - "date": "2026-05-24", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "MIL", - "away_team_abbrev": "LAD", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_sf_0524", - "sport": "MLB", - "season": "2026", - "date": "2026-05-24", - "time": "20:05", - "home_team": "San Francisco Giants", - "away_team": "Chicago White Sox", - "home_team_abbrev": "SF", - "away_team_abbrev": "CWS", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_laa_0524", - "sport": "MLB", - "season": "2026", - "date": "2026-05-24", - "time": "20:07", - "home_team": "Los Angeles Angels", - "away_team": "Texas Rangers", - "home_team_abbrev": "LAA", - "away_team_abbrev": "TEX", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_az_0524", - "sport": "MLB", - "season": "2026", - "date": "2026-05-24", - "time": "20:10", - "home_team": "Arizona Diamondbacks", - "away_team": "Colorado Rockies", - "home_team_abbrev": "AZ", - "away_team_abbrev": "COL", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_sd_0524", - "sport": "MLB", - "season": "2026", - "date": "2026-05-24", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "Athletics", - "home_team_abbrev": "SD", - "away_team_abbrev": "ATH", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_atl_0524", - "sport": "MLB", - "season": "2026", - "date": "2026-05-24", - "time": "20:10", - "home_team": "Atlanta Braves", - "away_team": "Washington Nationals", - "home_team_abbrev": "ATL", - "away_team_abbrev": "WSH", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_chc_0524", - "sport": "MLB", - "season": "2026", - "date": "2026-05-24", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Houston Astros", - "home_team_abbrev": "CHC", - "away_team_abbrev": "HOU", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_bal_0525", - "sport": "MLB", - "season": "2026", - "date": "2026-05-25", - "time": "17:35", - "home_team": "Baltimore Orioles", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "BAL", - "away_team_abbrev": "TB", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_cws_0525", - "sport": "MLB", - "season": "2026", - "date": "2026-05-25", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Minnesota Twins", - "home_team_abbrev": "CWS", - "away_team_abbrev": "MIN", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_mil_0525", - "sport": "MLB", - "season": "2026", - "date": "2026-05-25", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "MIL", - "away_team_abbrev": "STL", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_kc_0525", - "sport": "MLB", - "season": "2026", - "date": "2026-05-25", - "time": "19:40", - "home_team": "Kansas City Royals", - "away_team": "New York Yankees", - "home_team_abbrev": "KC", - "away_team_abbrev": "NYY", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_nym_0525", - "sport": "MLB", - "season": "2026", - "date": "2026-05-25", - "time": "20:10", - "home_team": "New York Mets", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "NYM", - "away_team_abbrev": "CIN", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_sf_0525", - "sport": "MLB", - "season": "2026", - "date": "2026-05-25", - "time": "21:05", - "home_team": "San Francisco Giants", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "SF", - "away_team_abbrev": "AZ", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_pit_0525", - "sport": "MLB", - "season": "2026", - "date": "2026-05-25", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Chicago Cubs", - "home_team_abbrev": "PIT", - "away_team_abbrev": "CHC", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_sd_0525", - "sport": "MLB", - "season": "2026", - "date": "2026-05-25", - "time": "22:40", - "home_team": "San Diego Padres", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "SD", - "away_team_abbrev": "PHI", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_tex_0525", - "sport": "MLB", - "season": "2026", - "date": "2026-05-25", - "time": "23:05", - "home_team": "Texas Rangers", - "away_team": "Houston Astros", - "home_team_abbrev": "TEX", - "away_team_abbrev": "HOU", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_tor_0525", - "sport": "MLB", - "season": "2026", - "date": "2026-05-25", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Miami Marlins", - "home_team_abbrev": "TOR", - "away_team_abbrev": "MIA", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_lad_0525", - "sport": "MLB", - "season": "2026", - "date": "2026-05-25", - "time": "01:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Colorado Rockies", - "home_team_abbrev": "LAD", - "away_team_abbrev": "COL", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_ath_0525", - "sport": "MLB", - "season": "2026", - "date": "2026-05-25", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Seattle Mariners", - "home_team_abbrev": "ATH", - "away_team_abbrev": "SEA", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_cle_0525", - "sport": "MLB", - "season": "2026", - "date": "2026-05-25", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Washington Nationals", - "home_team_abbrev": "CLE", - "away_team_abbrev": "WSH", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_bal_0526", - "sport": "MLB", - "season": "2026", - "date": "2026-05-26", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "BAL", - "away_team_abbrev": "TB", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_det_0526", - "sport": "MLB", - "season": "2026", - "date": "2026-05-26", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "DET", - "away_team_abbrev": "LAA", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_pit_0526", - "sport": "MLB", - "season": "2026", - "date": "2026-05-26", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Chicago Cubs", - "home_team_abbrev": "PIT", - "away_team_abbrev": "CHC", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_bos_0526", - "sport": "MLB", - "season": "2026", - "date": "2026-05-26", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "Atlanta Braves", - "home_team_abbrev": "BOS", - "away_team_abbrev": "ATL", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_tor_0526", - "sport": "MLB", - "season": "2026", - "date": "2026-05-26", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Miami Marlins", - "home_team_abbrev": "TOR", - "away_team_abbrev": "MIA", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_nym_0526", - "sport": "MLB", - "season": "2026", - "date": "2026-05-26", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "NYM", - "away_team_abbrev": "CIN", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_cws_0526", - "sport": "MLB", - "season": "2026", - "date": "2026-05-26", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Minnesota Twins", - "home_team_abbrev": "CWS", - "away_team_abbrev": "MIN", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_kc_0526", - "sport": "MLB", - "season": "2026", - "date": "2026-05-26", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "New York Yankees", - "home_team_abbrev": "KC", - "away_team_abbrev": "NYY", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_mil_0526", - "sport": "MLB", - "season": "2026", - "date": "2026-05-26", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "MIL", - "away_team_abbrev": "STL", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_tex_0526", - "sport": "MLB", - "season": "2026", - "date": "2026-05-26", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Houston Astros", - "home_team_abbrev": "TEX", - "away_team_abbrev": "HOU", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_ath_0526", - "sport": "MLB", - "season": "2026", - "date": "2026-05-26", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Seattle Mariners", - "home_team_abbrev": "ATH", - "away_team_abbrev": "SEA", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_sd_0526", - "sport": "MLB", - "season": "2026", - "date": "2026-05-26", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "SD", - "away_team_abbrev": "PHI", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_sf_0526", - "sport": "MLB", - "season": "2026", - "date": "2026-05-26", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "SF", - "away_team_abbrev": "AZ", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_lad_0526", - "sport": "MLB", - "season": "2026", - "date": "2026-05-26", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Colorado Rockies", - "home_team_abbrev": "LAD", - "away_team_abbrev": "COL", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_cle_0526", - "sport": "MLB", - "season": "2026", - "date": "2026-05-26", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Washington Nationals", - "home_team_abbrev": "CLE", - "away_team_abbrev": "WSH", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_tor_0527", - "sport": "MLB", - "season": "2026", - "date": "2026-05-27", - "time": "17:07", - "home_team": "Toronto Blue Jays", - "away_team": "Miami Marlins", - "home_team_abbrev": "TOR", - "away_team_abbrev": "MIA", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_mil_0527", - "sport": "MLB", - "season": "2026", - "date": "2026-05-27", - "time": "17:40", - "home_team": "Milwaukee Brewers", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "MIL", - "away_team_abbrev": "STL", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_ath_0527", - "sport": "MLB", - "season": "2026", - "date": "2026-05-27", - "time": "19:05", - "home_team": "Athletics", - "away_team": "Seattle Mariners", - "home_team_abbrev": "ATH", - "away_team_abbrev": "SEA", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_sf_0527", - "sport": "MLB", - "season": "2026", - "date": "2026-05-27", - "time": "19:45", - "home_team": "San Francisco Giants", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "SF", - "away_team_abbrev": "AZ", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_sd_0527", - "sport": "MLB", - "season": "2026", - "date": "2026-05-27", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "SD", - "away_team_abbrev": "PHI", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_bal_0527", - "sport": "MLB", - "season": "2026", - "date": "2026-05-27", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "BAL", - "away_team_abbrev": "TB", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_det_0527", - "sport": "MLB", - "season": "2026", - "date": "2026-05-27", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "DET", - "away_team_abbrev": "LAA", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_pit_0527", - "sport": "MLB", - "season": "2026", - "date": "2026-05-27", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Chicago Cubs", - "home_team_abbrev": "PIT", - "away_team_abbrev": "CHC", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_bos_0527", - "sport": "MLB", - "season": "2026", - "date": "2026-05-27", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "Atlanta Braves", - "home_team_abbrev": "BOS", - "away_team_abbrev": "ATL", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_nym_0527", - "sport": "MLB", - "season": "2026", - "date": "2026-05-27", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "NYM", - "away_team_abbrev": "CIN", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_cws_0527", - "sport": "MLB", - "season": "2026", - "date": "2026-05-27", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Minnesota Twins", - "home_team_abbrev": "CWS", - "away_team_abbrev": "MIN", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_kc_0527", - "sport": "MLB", - "season": "2026", - "date": "2026-05-27", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "New York Yankees", - "home_team_abbrev": "KC", - "away_team_abbrev": "NYY", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_tex_0527", - "sport": "MLB", - "season": "2026", - "date": "2026-05-27", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Houston Astros", - "home_team_abbrev": "TEX", - "away_team_abbrev": "HOU", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_lad_0527", - "sport": "MLB", - "season": "2026", - "date": "2026-05-27", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Colorado Rockies", - "home_team_abbrev": "LAD", - "away_team_abbrev": "COL", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_cle_0527", - "sport": "MLB", - "season": "2026", - "date": "2026-05-27", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Washington Nationals", - "home_team_abbrev": "CLE", - "away_team_abbrev": "WSH", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_det_0528", - "sport": "MLB", - "season": "2026", - "date": "2026-05-28", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "DET", - "away_team_abbrev": "LAA", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_cws_0528", - "sport": "MLB", - "season": "2026", - "date": "2026-05-28", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Minnesota Twins", - "home_team_abbrev": "CWS", - "away_team_abbrev": "MIN", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_bos_0528", - "sport": "MLB", - "season": "2026", - "date": "2026-05-28", - "time": "20:10", - "home_team": "Boston Red Sox", - "away_team": "Atlanta Braves", - "home_team_abbrev": "BOS", - "away_team_abbrev": "ATL", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_bal_0528", - "sport": "MLB", - "season": "2026", - "date": "2026-05-28", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "BAL", - "away_team_abbrev": "TOR", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_pit_0528", - "sport": "MLB", - "season": "2026", - "date": "2026-05-28", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Chicago Cubs", - "home_team_abbrev": "PIT", - "away_team_abbrev": "CHC", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_tex_0528", - "sport": "MLB", - "season": "2026", - "date": "2026-05-28", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Houston Astros", - "home_team_abbrev": "TEX", - "away_team_abbrev": "HOU", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_pit_0529", - "sport": "MLB", - "season": "2026", - "date": "2026-05-29", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Minnesota Twins", - "home_team_abbrev": "PIT", - "away_team_abbrev": "MIN", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_cin_0529", - "sport": "MLB", - "season": "2026", - "date": "2026-05-29", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Atlanta Braves", - "home_team_abbrev": "CIN", - "away_team_abbrev": "ATL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_wsh_0529", - "sport": "MLB", - "season": "2026", - "date": "2026-05-29", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "San Diego Padres", - "home_team_abbrev": "WSH", - "away_team_abbrev": "SD", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_bal_0529", - "sport": "MLB", - "season": "2026", - "date": "2026-05-29", - "time": "23:05", - "home_team": "Baltimore Orioles", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "BAL", - "away_team_abbrev": "TOR", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_tb_0529", - "sport": "MLB", - "season": "2026", - "date": "2026-05-29", - "time": "23:10", - "home_team": "Tampa Bay Rays", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "TB", - "away_team_abbrev": "LAA", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_nym_0529", - "sport": "MLB", - "season": "2026", - "date": "2026-05-29", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Miami Marlins", - "home_team_abbrev": "NYM", - "away_team_abbrev": "MIA", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_cws_0529", - "sport": "MLB", - "season": "2026", - "date": "2026-05-29", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Detroit Tigers", - "home_team_abbrev": "CWS", - "away_team_abbrev": "DET", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_tex_0529", - "sport": "MLB", - "season": "2026", - "date": "2026-05-29", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Kansas City Royals", - "home_team_abbrev": "TEX", - "away_team_abbrev": "KC", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_stl_0529", - "sport": "MLB", - "season": "2026", - "date": "2026-05-29", - "time": "00:15", - "home_team": "St. Louis Cardinals", - "away_team": "Chicago Cubs", - "home_team_abbrev": "STL", - "away_team_abbrev": "CHC", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_col_0529", - "sport": "MLB", - "season": "2026", - "date": "2026-05-29", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "San Francisco Giants", - "home_team_abbrev": "COL", - "away_team_abbrev": "SF", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_ath_0529", - "sport": "MLB", - "season": "2026", - "date": "2026-05-29", - "time": "01:40", - "home_team": "Athletics", - "away_team": "New York Yankees", - "home_team_abbrev": "ATH", - "away_team_abbrev": "NYY", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_sea_0529", - "sport": "MLB", - "season": "2026", - "date": "2026-05-29", - "time": "02:10", - "home_team": "Seattle Mariners", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "SEA", - "away_team_abbrev": "AZ", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_lad_0529", - "sport": "MLB", - "season": "2026", - "date": "2026-05-29", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "LAD", - "away_team_abbrev": "PHI", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_cle_0529", - "sport": "MLB", - "season": "2026", - "date": "2026-05-29", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Boston Red Sox", - "home_team_abbrev": "CLE", - "away_team_abbrev": "BOS", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_hou_0529", - "sport": "MLB", - "season": "2026", - "date": "2026-05-29", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "MIL", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_cws_0530", - "sport": "MLB", - "season": "2026", - "date": "2026-05-30", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Detroit Tigers", - "home_team_abbrev": "CWS", - "away_team_abbrev": "DET", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_wsh_0530", - "sport": "MLB", - "season": "2026", - "date": "2026-05-30", - "time": "20:05", - "home_team": "Washington Nationals", - "away_team": "San Diego Padres", - "home_team_abbrev": "WSH", - "away_team_abbrev": "SD", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_tex_0530", - "sport": "MLB", - "season": "2026", - "date": "2026-05-30", - "time": "20:05", - "home_team": "Texas Rangers", - "away_team": "Kansas City Royals", - "home_team_abbrev": "TEX", - "away_team_abbrev": "KC", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_bal_0530", - "sport": "MLB", - "season": "2026", - "date": "2026-05-30", - "time": "20:05", - "home_team": "Baltimore Orioles", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "BAL", - "away_team_abbrev": "TOR", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_pit_0530", - "sport": "MLB", - "season": "2026", - "date": "2026-05-30", - "time": "20:05", - "home_team": "Pittsburgh Pirates", - "away_team": "Minnesota Twins", - "home_team_abbrev": "PIT", - "away_team_abbrev": "MIN", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_tb_0530", - "sport": "MLB", - "season": "2026", - "date": "2026-05-30", - "time": "20:10", - "home_team": "Tampa Bay Rays", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "TB", - "away_team_abbrev": "LAA", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_nym_0530", - "sport": "MLB", - "season": "2026", - "date": "2026-05-30", - "time": "20:10", - "home_team": "New York Mets", - "away_team": "Miami Marlins", - "home_team_abbrev": "NYM", - "away_team_abbrev": "MIA", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_stl_0530", - "sport": "MLB", - "season": "2026", - "date": "2026-05-30", - "time": "23:15", - "home_team": "St. Louis Cardinals", - "away_team": "Chicago Cubs", - "home_team_abbrev": "STL", - "away_team_abbrev": "CHC", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_cin_0530", - "sport": "MLB", - "season": "2026", - "date": "2026-05-30", - "time": "23:15", - "home_team": "Cincinnati Reds", - "away_team": "Atlanta Braves", - "home_team_abbrev": "CIN", - "away_team_abbrev": "ATL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_col_0530", - "sport": "MLB", - "season": "2026", - "date": "2026-05-30", - "time": "01:10", - "home_team": "Colorado Rockies", - "away_team": "San Francisco Giants", - "home_team_abbrev": "COL", - "away_team_abbrev": "SF", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_ath_0530", - "sport": "MLB", - "season": "2026", - "date": "2026-05-30", - "time": "02:05", - "home_team": "Athletics", - "away_team": "New York Yankees", - "home_team_abbrev": "ATH", - "away_team_abbrev": "NYY", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_sea_0530", - "sport": "MLB", - "season": "2026", - "date": "2026-05-30", - "time": "02:10", - "home_team": "Seattle Mariners", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "SEA", - "away_team_abbrev": "AZ", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_lad_0530", - "sport": "MLB", - "season": "2026", - "date": "2026-05-30", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "LAD", - "away_team_abbrev": "PHI", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_cle_0530", - "sport": "MLB", - "season": "2026", - "date": "2026-05-30", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Boston Red Sox", - "home_team_abbrev": "CLE", - "away_team_abbrev": "BOS", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_hou_0530", - "sport": "MLB", - "season": "2026", - "date": "2026-05-30", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "MIL", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_wsh_0531", - "sport": "MLB", - "season": "2026", - "date": "2026-05-31", - "time": "17:35", - "home_team": "Washington Nationals", - "away_team": "San Diego Padres", - "home_team_abbrev": "WSH", - "away_team_abbrev": "SD", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_bal_0531", - "sport": "MLB", - "season": "2026", - "date": "2026-05-31", - "time": "17:35", - "home_team": "Baltimore Orioles", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "BAL", - "away_team_abbrev": "TOR", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_pit_0531", - "sport": "MLB", - "season": "2026", - "date": "2026-05-31", - "time": "17:35", - "home_team": "Pittsburgh Pirates", - "away_team": "Minnesota Twins", - "home_team_abbrev": "PIT", - "away_team_abbrev": "MIN", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_tb_0531", - "sport": "MLB", - "season": "2026", - "date": "2026-05-31", - "time": "17:40", - "home_team": "Tampa Bay Rays", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "TB", - "away_team_abbrev": "LAA", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_cin_0531", - "sport": "MLB", - "season": "2026", - "date": "2026-05-31", - "time": "17:40", - "home_team": "Cincinnati Reds", - "away_team": "Atlanta Braves", - "home_team_abbrev": "CIN", - "away_team_abbrev": "ATL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_nym_0531", - "sport": "MLB", - "season": "2026", - "date": "2026-05-31", - "time": "17:40", - "home_team": "New York Mets", - "away_team": "Miami Marlins", - "home_team_abbrev": "NYM", - "away_team_abbrev": "MIA", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_cws_0531", - "sport": "MLB", - "season": "2026", - "date": "2026-05-31", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Detroit Tigers", - "home_team_abbrev": "CWS", - "away_team_abbrev": "DET", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_stl_0531", - "sport": "MLB", - "season": "2026", - "date": "2026-05-31", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Chicago Cubs", - "home_team_abbrev": "STL", - "away_team_abbrev": "CHC", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_tex_0531", - "sport": "MLB", - "season": "2026", - "date": "2026-05-31", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "Kansas City Royals", - "home_team_abbrev": "TEX", - "away_team_abbrev": "KC", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_col_0531", - "sport": "MLB", - "season": "2026", - "date": "2026-05-31", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "San Francisco Giants", - "home_team_abbrev": "COL", - "away_team_abbrev": "SF", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_ath_0531", - "sport": "MLB", - "season": "2026", - "date": "2026-05-31", - "time": "20:05", - "home_team": "Athletics", - "away_team": "New York Yankees", - "home_team_abbrev": "ATH", - "away_team_abbrev": "NYY", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_sea_0531", - "sport": "MLB", - "season": "2026", - "date": "2026-05-31", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "SEA", - "away_team_abbrev": "AZ", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_lad_0531", - "sport": "MLB", - "season": "2026", - "date": "2026-05-31", - "time": "20:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "LAD", - "away_team_abbrev": "PHI", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_cle_0531", - "sport": "MLB", - "season": "2026", - "date": "2026-05-31", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Boston Red Sox", - "home_team_abbrev": "CLE", - "away_team_abbrev": "BOS", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_hou_0531", - "sport": "MLB", - "season": "2026", - "date": "2026-05-31", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "MIL", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_tb_0601", - "sport": "MLB", - "season": "2026", - "date": "2026-06-01", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Detroit Tigers", - "home_team_abbrev": "TB", - "away_team_abbrev": "DET", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_wsh_0601", - "sport": "MLB", - "season": "2026", - "date": "2026-06-01", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Miami Marlins", - "home_team_abbrev": "WSH", - "away_team_abbrev": "MIA", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_cin_0601", - "sport": "MLB", - "season": "2026", - "date": "2026-06-01", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "Kansas City Royals", - "home_team_abbrev": "CIN", - "away_team_abbrev": "KC", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_min_0601", - "sport": "MLB", - "season": "2026", - "date": "2026-06-01", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Chicago White Sox", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CWS", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_mil_0601", - "sport": "MLB", - "season": "2026", - "date": "2026-06-01", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "San Francisco Giants", - "home_team_abbrev": "MIL", - "away_team_abbrev": "SF", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_stl_0601", - "sport": "MLB", - "season": "2026", - "date": "2026-06-01", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Texas Rangers", - "home_team_abbrev": "STL", - "away_team_abbrev": "TEX", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_laa_0601", - "sport": "MLB", - "season": "2026", - "date": "2026-06-01", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Colorado Rockies", - "home_team_abbrev": "LAA", - "away_team_abbrev": "COL", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_az_0601", - "sport": "MLB", - "season": "2026", - "date": "2026-06-01", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "AZ", - "away_team_abbrev": "LAD", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_sea_0601", - "sport": "MLB", - "season": "2026", - "date": "2026-06-01", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "New York Mets", - "home_team_abbrev": "SEA", - "away_team_abbrev": "NYM", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_tb_0602", - "sport": "MLB", - "season": "2026", - "date": "2026-06-02", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Detroit Tigers", - "home_team_abbrev": "TB", - "away_team_abbrev": "DET", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_phi_0602", - "sport": "MLB", - "season": "2026", - "date": "2026-06-02", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "San Diego Padres", - "home_team_abbrev": "PHI", - "away_team_abbrev": "SD", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_bos_0602", - "sport": "MLB", - "season": "2026", - "date": "2026-06-02", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "BOS", - "away_team_abbrev": "BAL", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_wsh_0602", - "sport": "MLB", - "season": "2026", - "date": "2026-06-02", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Miami Marlins", - "home_team_abbrev": "WSH", - "away_team_abbrev": "MIA", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_nyy_0602", - "sport": "MLB", - "season": "2026", - "date": "2026-06-02", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "NYY", - "away_team_abbrev": "CLE", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_cin_0602", - "sport": "MLB", - "season": "2026", - "date": "2026-06-02", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "Kansas City Royals", - "home_team_abbrev": "CIN", - "away_team_abbrev": "KC", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_atl_0602", - "sport": "MLB", - "season": "2026", - "date": "2026-06-02", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "ATL", - "away_team_abbrev": "TOR", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_min_0602", - "sport": "MLB", - "season": "2026", - "date": "2026-06-02", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Chicago White Sox", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CWS", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_mil_0602", - "sport": "MLB", - "season": "2026", - "date": "2026-06-02", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "San Francisco Giants", - "home_team_abbrev": "MIL", - "away_team_abbrev": "SF", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_stl_0602", - "sport": "MLB", - "season": "2026", - "date": "2026-06-02", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Texas Rangers", - "home_team_abbrev": "STL", - "away_team_abbrev": "TEX", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_laa_0602", - "sport": "MLB", - "season": "2026", - "date": "2026-06-02", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Colorado Rockies", - "home_team_abbrev": "LAA", - "away_team_abbrev": "COL", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_az_0602", - "sport": "MLB", - "season": "2026", - "date": "2026-06-02", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "AZ", - "away_team_abbrev": "LAD", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_sea_0602", - "sport": "MLB", - "season": "2026", - "date": "2026-06-02", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "New York Mets", - "home_team_abbrev": "SEA", - "away_team_abbrev": "NYM", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_chc_0602", - "sport": "MLB", - "season": "2026", - "date": "2026-06-02", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Athletics", - "home_team_abbrev": "CHC", - "away_team_abbrev": "ATH", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_hou_0602", - "sport": "MLB", - "season": "2026", - "date": "2026-06-02", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "HOU", - "away_team_abbrev": "PIT", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_wsh_0603", - "sport": "MLB", - "season": "2026", - "date": "2026-06-03", - "time": "17:05", - "home_team": "Washington Nationals", - "away_team": "Miami Marlins", - "home_team_abbrev": "WSH", - "away_team_abbrev": "MIA", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_tb_0603", - "sport": "MLB", - "season": "2026", - "date": "2026-06-03", - "time": "17:10", - "home_team": "Tampa Bay Rays", - "away_team": "Detroit Tigers", - "home_team_abbrev": "TB", - "away_team_abbrev": "DET", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_min_0603", - "sport": "MLB", - "season": "2026", - "date": "2026-06-03", - "time": "17:40", - "home_team": "Minnesota Twins", - "away_team": "Chicago White Sox", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CWS", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_sea_0603", - "sport": "MLB", - "season": "2026", - "date": "2026-06-03", - "time": "19:40", - "home_team": "Seattle Mariners", - "away_team": "New York Mets", - "home_team_abbrev": "SEA", - "away_team_abbrev": "NYM", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_phi_0603", - "sport": "MLB", - "season": "2026", - "date": "2026-06-03", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "San Diego Padres", - "home_team_abbrev": "PHI", - "away_team_abbrev": "SD", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_bos_0603", - "sport": "MLB", - "season": "2026", - "date": "2026-06-03", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "BOS", - "away_team_abbrev": "BAL", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_nyy_0603", - "sport": "MLB", - "season": "2026", - "date": "2026-06-03", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "NYY", - "away_team_abbrev": "CLE", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_cin_0603", - "sport": "MLB", - "season": "2026", - "date": "2026-06-03", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "Kansas City Royals", - "home_team_abbrev": "CIN", - "away_team_abbrev": "KC", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_atl_0603", - "sport": "MLB", - "season": "2026", - "date": "2026-06-03", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "ATL", - "away_team_abbrev": "TOR", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_mil_0603", - "sport": "MLB", - "season": "2026", - "date": "2026-06-03", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "San Francisco Giants", - "home_team_abbrev": "MIL", - "away_team_abbrev": "SF", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_stl_0603", - "sport": "MLB", - "season": "2026", - "date": "2026-06-03", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Texas Rangers", - "home_team_abbrev": "STL", - "away_team_abbrev": "TEX", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_laa_0603", - "sport": "MLB", - "season": "2026", - "date": "2026-06-03", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Colorado Rockies", - "home_team_abbrev": "LAA", - "away_team_abbrev": "COL", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_az_0603", - "sport": "MLB", - "season": "2026", - "date": "2026-06-03", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "AZ", - "away_team_abbrev": "LAD", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_chc_0603", - "sport": "MLB", - "season": "2026", - "date": "2026-06-03", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Athletics", - "home_team_abbrev": "CHC", - "away_team_abbrev": "ATH", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_hou_0603", - "sport": "MLB", - "season": "2026", - "date": "2026-06-03", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "HOU", - "away_team_abbrev": "PIT", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_phi_0604", - "sport": "MLB", - "season": "2026", - "date": "2026-06-04", - "time": "17:05", - "home_team": "Philadelphia Phillies", - "away_team": "San Diego Padres", - "home_team_abbrev": "PHI", - "away_team_abbrev": "SD", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_bos_0604", - "sport": "MLB", - "season": "2026", - "date": "2026-06-04", - "time": "17:35", - "home_team": "Boston Red Sox", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "BOS", - "away_team_abbrev": "BAL", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_nyy_0604", - "sport": "MLB", - "season": "2026", - "date": "2026-06-04", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "NYY", - "away_team_abbrev": "CLE", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_mil_0604", - "sport": "MLB", - "season": "2026", - "date": "2026-06-04", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "San Francisco Giants", - "home_team_abbrev": "MIL", - "away_team_abbrev": "SF", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_atl_0604", - "sport": "MLB", - "season": "2026", - "date": "2026-06-04", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "ATL", - "away_team_abbrev": "TOR", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_min_0604", - "sport": "MLB", - "season": "2026", - "date": "2026-06-04", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Kansas City Royals", - "home_team_abbrev": "MIN", - "away_team_abbrev": "KC", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_az_0604", - "sport": "MLB", - "season": "2026", - "date": "2026-06-04", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "AZ", - "away_team_abbrev": "LAD", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_chc_0604", - "sport": "MLB", - "season": "2026", - "date": "2026-06-04", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Athletics", - "home_team_abbrev": "CHC", - "away_team_abbrev": "ATH", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_hou_0604", - "sport": "MLB", - "season": "2026", - "date": "2026-06-04", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "HOU", - "away_team_abbrev": "PIT", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_det_0605", - "sport": "MLB", - "season": "2026", - "date": "2026-06-05", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Seattle Mariners", - "home_team_abbrev": "DET", - "away_team_abbrev": "SEA", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_phi_0605", - "sport": "MLB", - "season": "2026", - "date": "2026-06-05", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Chicago White Sox", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CWS", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_nyy_0605", - "sport": "MLB", - "season": "2026", - "date": "2026-06-05", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Boston Red Sox", - "home_team_abbrev": "NYY", - "away_team_abbrev": "BOS", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_tor_0605", - "sport": "MLB", - "season": "2026", - "date": "2026-06-05", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BAL", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_mia_0605", - "sport": "MLB", - "season": "2026", - "date": "2026-06-05", - "time": "23:10", - "home_team": "Miami Marlins", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "MIA", - "away_team_abbrev": "TB", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_atl_0605", - "sport": "MLB", - "season": "2026", - "date": "2026-06-05", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "ATL", - "away_team_abbrev": "PIT", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_tex_0605", - "sport": "MLB", - "season": "2026", - "date": "2026-06-05", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "TEX", - "away_team_abbrev": "CLE", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_min_0605", - "sport": "MLB", - "season": "2026", - "date": "2026-06-05", - "time": "00:10", - "home_team": "Minnesota Twins", - "away_team": "Kansas City Royals", - "home_team_abbrev": "MIN", - "away_team_abbrev": "KC", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_stl_0605", - "sport": "MLB", - "season": "2026", - "date": "2026-06-05", - "time": "00:15", - "home_team": "St. Louis Cardinals", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "STL", - "away_team_abbrev": "CIN", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_col_0605", - "sport": "MLB", - "season": "2026", - "date": "2026-06-05", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "COL", - "away_team_abbrev": "MIL", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_az_0605", - "sport": "MLB", - "season": "2026", - "date": "2026-06-05", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Washington Nationals", - "home_team_abbrev": "AZ", - "away_team_abbrev": "WSH", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_sd_0605", - "sport": "MLB", - "season": "2026", - "date": "2026-06-05", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "New York Mets", - "home_team_abbrev": "SD", - "away_team_abbrev": "NYM", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_lad_0605", - "sport": "MLB", - "season": "2026", - "date": "2026-06-05", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "LAD", - "away_team_abbrev": "LAA", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_hou_0605", - "sport": "MLB", - "season": "2026", - "date": "2026-06-05", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Athletics", - "home_team_abbrev": "HOU", - "away_team_abbrev": "ATH", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_chc_0605", - "sport": "MLB", - "season": "2026", - "date": "2026-06-05", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "San Francisco Giants", - "home_team_abbrev": "CHC", - "away_team_abbrev": "SF", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_det_0606", - "sport": "MLB", - "season": "2026", - "date": "2026-06-06", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Seattle Mariners", - "home_team_abbrev": "DET", - "away_team_abbrev": "SEA", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_min_0606", - "sport": "MLB", - "season": "2026", - "date": "2026-06-06", - "time": "18:10", - "home_team": "Minnesota Twins", - "away_team": "Kansas City Royals", - "home_team_abbrev": "MIN", - "away_team_abbrev": "KC", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_stl_0606", - "sport": "MLB", - "season": "2026", - "date": "2026-06-06", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "STL", - "away_team_abbrev": "CIN", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_tor_0606", - "sport": "MLB", - "season": "2026", - "date": "2026-06-06", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BAL", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_phi_0606", - "sport": "MLB", - "season": "2026", - "date": "2026-06-06", - "time": "20:05", - "home_team": "Philadelphia Phillies", - "away_team": "Chicago White Sox", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CWS", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_az_0606", - "sport": "MLB", - "season": "2026", - "date": "2026-06-06", - "time": "20:10", - "home_team": "Arizona Diamondbacks", - "away_team": "Washington Nationals", - "home_team_abbrev": "AZ", - "away_team_abbrev": "WSH", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_atl_0606", - "sport": "MLB", - "season": "2026", - "date": "2026-06-06", - "time": "20:10", - "home_team": "Atlanta Braves", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "ATL", - "away_team_abbrev": "PIT", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_mia_0606", - "sport": "MLB", - "season": "2026", - "date": "2026-06-06", - "time": "20:10", - "home_team": "Miami Marlins", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "MIA", - "away_team_abbrev": "TB", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_tex_0606", - "sport": "MLB", - "season": "2026", - "date": "2026-06-06", - "time": "23:35", - "home_team": "Texas Rangers", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "TEX", - "away_team_abbrev": "CLE", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_nyy_0606", - "sport": "MLB", - "season": "2026", - "date": "2026-06-06", - "time": "23:35", - "home_team": "New York Yankees", - "away_team": "Boston Red Sox", - "home_team_abbrev": "NYY", - "away_team_abbrev": "BOS", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_col_0606", - "sport": "MLB", - "season": "2026", - "date": "2026-06-06", - "time": "01:10", - "home_team": "Colorado Rockies", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "COL", - "away_team_abbrev": "MIL", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_lad_0606", - "sport": "MLB", - "season": "2026", - "date": "2026-06-06", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "LAD", - "away_team_abbrev": "LAA", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_sd_0606", - "sport": "MLB", - "season": "2026", - "date": "2026-06-06", - "time": "02:10", - "home_team": "San Diego Padres", - "away_team": "New York Mets", - "home_team_abbrev": "SD", - "away_team_abbrev": "NYM", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_hou_0606", - "sport": "MLB", - "season": "2026", - "date": "2026-06-06", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Athletics", - "home_team_abbrev": "HOU", - "away_team_abbrev": "ATH", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_chc_0606", - "sport": "MLB", - "season": "2026", - "date": "2026-06-06", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "San Francisco Giants", - "home_team_abbrev": "CHC", - "away_team_abbrev": "SF", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_atl_0607", - "sport": "MLB", - "season": "2026", - "date": "2026-06-07", - "time": "17:35", - "home_team": "Atlanta Braves", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "ATL", - "away_team_abbrev": "PIT", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_phi_0607", - "sport": "MLB", - "season": "2026", - "date": "2026-06-07", - "time": "17:35", - "home_team": "Philadelphia Phillies", - "away_team": "Chicago White Sox", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CWS", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_nyy_0607", - "sport": "MLB", - "season": "2026", - "date": "2026-06-07", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Boston Red Sox", - "home_team_abbrev": "NYY", - "away_team_abbrev": "BOS", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_tor_0607", - "sport": "MLB", - "season": "2026", - "date": "2026-06-07", - "time": "17:37", - "home_team": "Toronto Blue Jays", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BAL", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_det_0607", - "sport": "MLB", - "season": "2026", - "date": "2026-06-07", - "time": "17:40", - "home_team": "Detroit Tigers", - "away_team": "Seattle Mariners", - "home_team_abbrev": "DET", - "away_team_abbrev": "SEA", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_mia_0607", - "sport": "MLB", - "season": "2026", - "date": "2026-06-07", - "time": "17:40", - "home_team": "Miami Marlins", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "MIA", - "away_team_abbrev": "TB", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_min_0607", - "sport": "MLB", - "season": "2026", - "date": "2026-06-07", - "time": "18:10", - "home_team": "Minnesota Twins", - "away_team": "Kansas City Royals", - "home_team_abbrev": "MIN", - "away_team_abbrev": "KC", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_stl_0607", - "sport": "MLB", - "season": "2026", - "date": "2026-06-07", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "STL", - "away_team_abbrev": "CIN", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_tex_0607", - "sport": "MLB", - "season": "2026", - "date": "2026-06-07", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "TEX", - "away_team_abbrev": "CLE", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_col_0607", - "sport": "MLB", - "season": "2026", - "date": "2026-06-07", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "COL", - "away_team_abbrev": "MIL", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_lad_0607", - "sport": "MLB", - "season": "2026", - "date": "2026-06-07", - "time": "20:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "LAD", - "away_team_abbrev": "LAA", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_az_0607", - "sport": "MLB", - "season": "2026", - "date": "2026-06-07", - "time": "20:10", - "home_team": "Arizona Diamondbacks", - "away_team": "Washington Nationals", - "home_team_abbrev": "AZ", - "away_team_abbrev": "WSH", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_sd_0607", - "sport": "MLB", - "season": "2026", - "date": "2026-06-07", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "New York Mets", - "home_team_abbrev": "SD", - "away_team_abbrev": "NYM", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_hou_0607", - "sport": "MLB", - "season": "2026", - "date": "2026-06-07", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Athletics", - "home_team_abbrev": "HOU", - "away_team_abbrev": "ATH", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_chc_0607", - "sport": "MLB", - "season": "2026", - "date": "2026-06-07", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "San Francisco Giants", - "home_team_abbrev": "CHC", - "away_team_abbrev": "SF", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_bal_0608", - "sport": "MLB", - "season": "2026", - "date": "2026-06-08", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Seattle Mariners", - "home_team_abbrev": "BAL", - "away_team_abbrev": "SEA", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_tb_0608", - "sport": "MLB", - "season": "2026", - "date": "2026-06-08", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Boston Red Sox", - "home_team_abbrev": "TB", - "away_team_abbrev": "BOS", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_tor_0608", - "sport": "MLB", - "season": "2026", - "date": "2026-06-08", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "TOR", - "away_team_abbrev": "PHI", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_laa_0608", - "sport": "MLB", - "season": "2026", - "date": "2026-06-08", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Houston Astros", - "home_team_abbrev": "LAA", - "away_team_abbrev": "HOU", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_sd_0608", - "sport": "MLB", - "season": "2026", - "date": "2026-06-08", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "SD", - "away_team_abbrev": "CIN", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_sf_0608", - "sport": "MLB", - "season": "2026", - "date": "2026-06-08", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Washington Nationals", - "home_team_abbrev": "SF", - "away_team_abbrev": "WSH", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_ath_0608", - "sport": "MLB", - "season": "2026", - "date": "2026-06-08", - "time": "02:05", - "home_team": "Athletics", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "ATH", - "away_team_abbrev": "MIL", - "venue": "Las Vegas Ballpark", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_cle_0608", - "sport": "MLB", - "season": "2026", - "date": "2026-06-08", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "New York Yankees", - "home_team_abbrev": "CLE", - "away_team_abbrev": "NYY", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_bal_0609", - "sport": "MLB", - "season": "2026", - "date": "2026-06-09", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Seattle Mariners", - "home_team_abbrev": "BAL", - "away_team_abbrev": "SEA", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_pit_0609", - "sport": "MLB", - "season": "2026", - "date": "2026-06-09", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "PIT", - "away_team_abbrev": "LAD", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_tb_0609", - "sport": "MLB", - "season": "2026", - "date": "2026-06-09", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Boston Red Sox", - "home_team_abbrev": "TB", - "away_team_abbrev": "BOS", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_det_0609", - "sport": "MLB", - "season": "2026", - "date": "2026-06-09", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Minnesota Twins", - "home_team_abbrev": "DET", - "away_team_abbrev": "MIN", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_mia_0609", - "sport": "MLB", - "season": "2026", - "date": "2026-06-09", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "MIA", - "away_team_abbrev": "AZ", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_tor_0609", - "sport": "MLB", - "season": "2026", - "date": "2026-06-09", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "TOR", - "away_team_abbrev": "PHI", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_nym_0609", - "sport": "MLB", - "season": "2026", - "date": "2026-06-09", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "NYM", - "away_team_abbrev": "STL", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_kc_0609", - "sport": "MLB", - "season": "2026", - "date": "2026-06-09", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Texas Rangers", - "home_team_abbrev": "KC", - "away_team_abbrev": "TEX", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_cws_0609", - "sport": "MLB", - "season": "2026", - "date": "2026-06-09", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Atlanta Braves", - "home_team_abbrev": "CWS", - "away_team_abbrev": "ATL", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_col_0609", - "sport": "MLB", - "season": "2026", - "date": "2026-06-09", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Chicago Cubs", - "home_team_abbrev": "COL", - "away_team_abbrev": "CHC", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_laa_0609", - "sport": "MLB", - "season": "2026", - "date": "2026-06-09", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Houston Astros", - "home_team_abbrev": "LAA", - "away_team_abbrev": "HOU", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_sd_0609", - "sport": "MLB", - "season": "2026", - "date": "2026-06-09", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "SD", - "away_team_abbrev": "CIN", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_sf_0609", - "sport": "MLB", - "season": "2026", - "date": "2026-06-09", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Washington Nationals", - "home_team_abbrev": "SF", - "away_team_abbrev": "WSH", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_ath_0609", - "sport": "MLB", - "season": "2026", - "date": "2026-06-09", - "time": "02:05", - "home_team": "Athletics", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "ATH", - "away_team_abbrev": "MIL", - "venue": "Las Vegas Ballpark", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_cle_0609", - "sport": "MLB", - "season": "2026", - "date": "2026-06-09", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "New York Yankees", - "home_team_abbrev": "CLE", - "away_team_abbrev": "NYY", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_tb_0610", - "sport": "MLB", - "season": "2026", - "date": "2026-06-10", - "time": "17:10", - "home_team": "Tampa Bay Rays", - "away_team": "Boston Red Sox", - "home_team_abbrev": "TB", - "away_team_abbrev": "BOS", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_sf_0610", - "sport": "MLB", - "season": "2026", - "date": "2026-06-10", - "time": "19:45", - "home_team": "San Francisco Giants", - "away_team": "Washington Nationals", - "home_team_abbrev": "SF", - "away_team_abbrev": "WSH", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_sd_0610", - "sport": "MLB", - "season": "2026", - "date": "2026-06-10", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "SD", - "away_team_abbrev": "CIN", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_bal_0610", - "sport": "MLB", - "season": "2026", - "date": "2026-06-10", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Seattle Mariners", - "home_team_abbrev": "BAL", - "away_team_abbrev": "SEA", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_pit_0610", - "sport": "MLB", - "season": "2026", - "date": "2026-06-10", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "PIT", - "away_team_abbrev": "LAD", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_det_0610", - "sport": "MLB", - "season": "2026", - "date": "2026-06-10", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Minnesota Twins", - "home_team_abbrev": "DET", - "away_team_abbrev": "MIN", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_mia_0610", - "sport": "MLB", - "season": "2026", - "date": "2026-06-10", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "MIA", - "away_team_abbrev": "AZ", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_tor_0610", - "sport": "MLB", - "season": "2026", - "date": "2026-06-10", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "TOR", - "away_team_abbrev": "PHI", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_nym_0610", - "sport": "MLB", - "season": "2026", - "date": "2026-06-10", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "NYM", - "away_team_abbrev": "STL", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_kc_0610", - "sport": "MLB", - "season": "2026", - "date": "2026-06-10", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Texas Rangers", - "home_team_abbrev": "KC", - "away_team_abbrev": "TEX", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_cws_0610", - "sport": "MLB", - "season": "2026", - "date": "2026-06-10", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Atlanta Braves", - "home_team_abbrev": "CWS", - "away_team_abbrev": "ATL", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_col_0610", - "sport": "MLB", - "season": "2026", - "date": "2026-06-10", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Chicago Cubs", - "home_team_abbrev": "COL", - "away_team_abbrev": "CHC", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_ath_0610", - "sport": "MLB", - "season": "2026", - "date": "2026-06-10", - "time": "01:05", - "home_team": "Athletics", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "ATH", - "away_team_abbrev": "MIL", - "venue": "Las Vegas Ballpark", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_laa_0610", - "sport": "MLB", - "season": "2026", - "date": "2026-06-10", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Houston Astros", - "home_team_abbrev": "LAA", - "away_team_abbrev": "HOU", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_cle_0610", - "sport": "MLB", - "season": "2026", - "date": "2026-06-10", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "New York Yankees", - "home_team_abbrev": "CLE", - "away_team_abbrev": "NYY", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_nym_0611", - "sport": "MLB", - "season": "2026", - "date": "2026-06-11", - "time": "17:10", - "home_team": "New York Mets", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "NYM", - "away_team_abbrev": "STL", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_det_0611", - "sport": "MLB", - "season": "2026", - "date": "2026-06-11", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Minnesota Twins", - "home_team_abbrev": "DET", - "away_team_abbrev": "MIN", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_mia_0611", - "sport": "MLB", - "season": "2026", - "date": "2026-06-11", - "time": "17:10", - "home_team": "Miami Marlins", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "MIA", - "away_team_abbrev": "AZ", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_kc_0611", - "sport": "MLB", - "season": "2026", - "date": "2026-06-11", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "Texas Rangers", - "home_team_abbrev": "KC", - "away_team_abbrev": "TEX", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_col_0611", - "sport": "MLB", - "season": "2026", - "date": "2026-06-11", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Chicago Cubs", - "home_team_abbrev": "COL", - "away_team_abbrev": "CHC", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_bal_0611", - "sport": "MLB", - "season": "2026", - "date": "2026-06-11", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Seattle Mariners", - "home_team_abbrev": "BAL", - "away_team_abbrev": "SEA", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_pit_0611", - "sport": "MLB", - "season": "2026", - "date": "2026-06-11", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "PIT", - "away_team_abbrev": "LAD", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_cws_0611", - "sport": "MLB", - "season": "2026", - "date": "2026-06-11", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Atlanta Braves", - "home_team_abbrev": "CWS", - "away_team_abbrev": "ATL", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_pit_0612", - "sport": "MLB", - "season": "2026", - "date": "2026-06-12", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Miami Marlins", - "home_team_abbrev": "PIT", - "away_team_abbrev": "MIA", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_wsh_0612", - "sport": "MLB", - "season": "2026", - "date": "2026-06-12", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Seattle Mariners", - "home_team_abbrev": "WSH", - "away_team_abbrev": "SEA", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_bal_0612", - "sport": "MLB", - "season": "2026", - "date": "2026-06-12", - "time": "23:05", - "home_team": "Baltimore Orioles", - "away_team": "San Diego Padres", - "home_team_abbrev": "BAL", - "away_team_abbrev": "SD", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_cin_0612", - "sport": "MLB", - "season": "2026", - "date": "2026-06-12", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "CIN", - "away_team_abbrev": "AZ", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_bos_0612", - "sport": "MLB", - "season": "2026", - "date": "2026-06-12", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Texas Rangers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TEX", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_nym_0612", - "sport": "MLB", - "season": "2026", - "date": "2026-06-12", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Atlanta Braves", - "home_team_abbrev": "NYM", - "away_team_abbrev": "ATL", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_tor_0612", - "sport": "MLB", - "season": "2026", - "date": "2026-06-12", - "time": "23:37", - "home_team": "Toronto Blue Jays", - "away_team": "New York Yankees", - "home_team_abbrev": "TOR", - "away_team_abbrev": "NYY", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_cws_0612", - "sport": "MLB", - "season": "2026", - "date": "2026-06-12", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "CWS", - "away_team_abbrev": "LAD", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_mil_0612", - "sport": "MLB", - "season": "2026", - "date": "2026-06-12", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "MIL", - "away_team_abbrev": "PHI", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_kc_0612", - "sport": "MLB", - "season": "2026", - "date": "2026-06-12", - "time": "00:10", - "home_team": "Kansas City Royals", - "away_team": "Houston Astros", - "home_team_abbrev": "KC", - "away_team_abbrev": "HOU", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_min_0612", - "sport": "MLB", - "season": "2026", - "date": "2026-06-12", - "time": "00:10", - "home_team": "Minnesota Twins", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "MIN", - "away_team_abbrev": "STL", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_laa_0612", - "sport": "MLB", - "season": "2026", - "date": "2026-06-12", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "LAA", - "away_team_abbrev": "TB", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_ath_0612", - "sport": "MLB", - "season": "2026", - "date": "2026-06-12", - "time": "02:05", - "home_team": "Athletics", - "away_team": "Colorado Rockies", - "home_team_abbrev": "ATH", - "away_team_abbrev": "COL", - "venue": "Las Vegas Ballpark", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_sf_0612", - "sport": "MLB", - "season": "2026", - "date": "2026-06-12", - "time": "02:15", - "home_team": "San Francisco Giants", - "away_team": "Chicago Cubs", - "home_team_abbrev": "SF", - "away_team_abbrev": "CHC", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_cle_0612", - "sport": "MLB", - "season": "2026", - "date": "2026-06-12", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Detroit Tigers", - "home_team_abbrev": "CLE", - "away_team_abbrev": "DET", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_min_0613", - "sport": "MLB", - "season": "2026", - "date": "2026-06-13", - "time": "18:10", - "home_team": "Minnesota Twins", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "MIN", - "away_team_abbrev": "STL", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_tor_0613", - "sport": "MLB", - "season": "2026", - "date": "2026-06-13", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "New York Yankees", - "home_team_abbrev": "TOR", - "away_team_abbrev": "NYY", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_bal_0613", - "sport": "MLB", - "season": "2026", - "date": "2026-06-13", - "time": "20:05", - "home_team": "Baltimore Orioles", - "away_team": "San Diego Padres", - "home_team_abbrev": "BAL", - "away_team_abbrev": "SD", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_wsh_0613", - "sport": "MLB", - "season": "2026", - "date": "2026-06-13", - "time": "20:05", - "home_team": "Washington Nationals", - "away_team": "Seattle Mariners", - "home_team_abbrev": "WSH", - "away_team_abbrev": "SEA", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_pit_0613", - "sport": "MLB", - "season": "2026", - "date": "2026-06-13", - "time": "20:05", - "home_team": "Pittsburgh Pirates", - "away_team": "Miami Marlins", - "home_team_abbrev": "PIT", - "away_team_abbrev": "MIA", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_cin_0613", - "sport": "MLB", - "season": "2026", - "date": "2026-06-13", - "time": "20:10", - "home_team": "Cincinnati Reds", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "CIN", - "away_team_abbrev": "AZ", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_bos_0613", - "sport": "MLB", - "season": "2026", - "date": "2026-06-13", - "time": "20:10", - "home_team": "Boston Red Sox", - "away_team": "Texas Rangers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TEX", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_nym_0613", - "sport": "MLB", - "season": "2026", - "date": "2026-06-13", - "time": "20:10", - "home_team": "New York Mets", - "away_team": "Atlanta Braves", - "home_team_abbrev": "NYM", - "away_team_abbrev": "ATL", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_cws_0613", - "sport": "MLB", - "season": "2026", - "date": "2026-06-13", - "time": "20:10", - "home_team": "Chicago White Sox", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "CWS", - "away_team_abbrev": "LAD", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_kc_0613", - "sport": "MLB", - "season": "2026", - "date": "2026-06-13", - "time": "23:15", - "home_team": "Kansas City Royals", - "away_team": "Houston Astros", - "home_team_abbrev": "KC", - "away_team_abbrev": "HOU", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_mil_0613", - "sport": "MLB", - "season": "2026", - "date": "2026-06-13", - "time": "23:15", - "home_team": "Milwaukee Brewers", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "MIL", - "away_team_abbrev": "PHI", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_ath_0613", - "sport": "MLB", - "season": "2026", - "date": "2026-06-13", - "time": "02:05", - "home_team": "Athletics", - "away_team": "Colorado Rockies", - "home_team_abbrev": "ATH", - "away_team_abbrev": "COL", - "venue": "Las Vegas Ballpark", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_laa_0613", - "sport": "MLB", - "season": "2026", - "date": "2026-06-13", - "time": "02:07", - "home_team": "Los Angeles Angels", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "LAA", - "away_team_abbrev": "TB", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_cle_0613", - "sport": "MLB", - "season": "2026", - "date": "2026-06-13", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Detroit Tigers", - "home_team_abbrev": "CLE", - "away_team_abbrev": "DET", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_sf_0613", - "sport": "MLB", - "season": "2026", - "date": "2026-06-13", - "time": "10:33", - "home_team": "San Francisco Giants", - "away_team": "Chicago Cubs", - "home_team_abbrev": "SF", - "away_team_abbrev": "CHC", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_bal_0614", - "sport": "MLB", - "season": "2026", - "date": "2026-06-14", - "time": "17:35", - "home_team": "Baltimore Orioles", - "away_team": "San Diego Padres", - "home_team_abbrev": "BAL", - "away_team_abbrev": "SD", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_wsh_0614", - "sport": "MLB", - "season": "2026", - "date": "2026-06-14", - "time": "17:35", - "home_team": "Washington Nationals", - "away_team": "Seattle Mariners", - "home_team_abbrev": "WSH", - "away_team_abbrev": "SEA", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_bos_0614", - "sport": "MLB", - "season": "2026", - "date": "2026-06-14", - "time": "17:35", - "home_team": "Boston Red Sox", - "away_team": "Texas Rangers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TEX", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_pit_0614", - "sport": "MLB", - "season": "2026", - "date": "2026-06-14", - "time": "17:35", - "home_team": "Pittsburgh Pirates", - "away_team": "Miami Marlins", - "home_team_abbrev": "PIT", - "away_team_abbrev": "MIA", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_tor_0614", - "sport": "MLB", - "season": "2026", - "date": "2026-06-14", - "time": "17:37", - "home_team": "Toronto Blue Jays", - "away_team": "New York Yankees", - "home_team_abbrev": "TOR", - "away_team_abbrev": "NYY", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_cin_0614", - "sport": "MLB", - "season": "2026", - "date": "2026-06-14", - "time": "17:40", - "home_team": "Cincinnati Reds", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "CIN", - "away_team_abbrev": "AZ", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_nym_0614", - "sport": "MLB", - "season": "2026", - "date": "2026-06-14", - "time": "17:40", - "home_team": "New York Mets", - "away_team": "Atlanta Braves", - "home_team_abbrev": "NYM", - "away_team_abbrev": "ATL", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_kc_0614", - "sport": "MLB", - "season": "2026", - "date": "2026-06-14", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "Houston Astros", - "home_team_abbrev": "KC", - "away_team_abbrev": "HOU", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_min_0614", - "sport": "MLB", - "season": "2026", - "date": "2026-06-14", - "time": "18:10", - "home_team": "Minnesota Twins", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "MIN", - "away_team_abbrev": "STL", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_cws_0614", - "sport": "MLB", - "season": "2026", - "date": "2026-06-14", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "CWS", - "away_team_abbrev": "LAD", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_mil_0614", - "sport": "MLB", - "season": "2026", - "date": "2026-06-14", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "MIL", - "away_team_abbrev": "PHI", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_ath_0614", - "sport": "MLB", - "season": "2026", - "date": "2026-06-14", - "time": "19:05", - "home_team": "Athletics", - "away_team": "Colorado Rockies", - "home_team_abbrev": "ATH", - "away_team_abbrev": "COL", - "venue": "Las Vegas Ballpark", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_sf_0614", - "sport": "MLB", - "season": "2026", - "date": "2026-06-14", - "time": "20:05", - "home_team": "San Francisco Giants", - "away_team": "Chicago Cubs", - "home_team_abbrev": "SF", - "away_team_abbrev": "CHC", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_laa_0614", - "sport": "MLB", - "season": "2026", - "date": "2026-06-14", - "time": "20:07", - "home_team": "Los Angeles Angels", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "LAA", - "away_team_abbrev": "TB", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_cle_0614", - "sport": "MLB", - "season": "2026", - "date": "2026-06-14", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Detroit Tigers", - "home_team_abbrev": "CLE", - "away_team_abbrev": "DET", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_phi_0615", - "sport": "MLB", - "season": "2026", - "date": "2026-06-15", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Miami Marlins", - "home_team_abbrev": "PHI", - "away_team_abbrev": "MIA", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_wsh_0615", - "sport": "MLB", - "season": "2026", - "date": "2026-06-15", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Kansas City Royals", - "home_team_abbrev": "WSH", - "away_team_abbrev": "KC", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_cin_0615", - "sport": "MLB", - "season": "2026", - "date": "2026-06-15", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "New York Mets", - "home_team_abbrev": "CIN", - "away_team_abbrev": "NYM", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_stl_0615", - "sport": "MLB", - "season": "2026", - "date": "2026-06-15", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "San Diego Padres", - "home_team_abbrev": "STL", - "away_team_abbrev": "SD", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_tex_0615", - "sport": "MLB", - "season": "2026", - "date": "2026-06-15", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Minnesota Twins", - "home_team_abbrev": "TEX", - "away_team_abbrev": "MIN", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_az_0615", - "sport": "MLB", - "season": "2026", - "date": "2026-06-15", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "AZ", - "away_team_abbrev": "LAA", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_ath_0615", - "sport": "MLB", - "season": "2026", - "date": "2026-06-15", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "ATH", - "away_team_abbrev": "PIT", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_lad_0615", - "sport": "MLB", - "season": "2026", - "date": "2026-06-15", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "LAD", - "away_team_abbrev": "TB", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_chc_0615", - "sport": "MLB", - "season": "2026", - "date": "2026-06-15", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Colorado Rockies", - "home_team_abbrev": "CHC", - "away_team_abbrev": "COL", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_hou_0615", - "sport": "MLB", - "season": "2026", - "date": "2026-06-15", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Detroit Tigers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "DET", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_phi_0616", - "sport": "MLB", - "season": "2026", - "date": "2026-06-16", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Miami Marlins", - "home_team_abbrev": "PHI", - "away_team_abbrev": "MIA", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_wsh_0616", - "sport": "MLB", - "season": "2026", - "date": "2026-06-16", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Kansas City Royals", - "home_team_abbrev": "WSH", - "away_team_abbrev": "KC", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_bos_0616", - "sport": "MLB", - "season": "2026", - "date": "2026-06-16", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TOR", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_nyy_0616", - "sport": "MLB", - "season": "2026", - "date": "2026-06-16", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Chicago White Sox", - "home_team_abbrev": "NYY", - "away_team_abbrev": "CWS", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_cin_0616", - "sport": "MLB", - "season": "2026", - "date": "2026-06-16", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "New York Mets", - "home_team_abbrev": "CIN", - "away_team_abbrev": "NYM", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_atl_0616", - "sport": "MLB", - "season": "2026", - "date": "2026-06-16", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "San Francisco Giants", - "home_team_abbrev": "ATL", - "away_team_abbrev": "SF", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_mil_0616", - "sport": "MLB", - "season": "2026", - "date": "2026-06-16", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CLE", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_stl_0616", - "sport": "MLB", - "season": "2026", - "date": "2026-06-16", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "San Diego Padres", - "home_team_abbrev": "STL", - "away_team_abbrev": "SD", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_tex_0616", - "sport": "MLB", - "season": "2026", - "date": "2026-06-16", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Minnesota Twins", - "home_team_abbrev": "TEX", - "away_team_abbrev": "MIN", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_az_0616", - "sport": "MLB", - "season": "2026", - "date": "2026-06-16", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "AZ", - "away_team_abbrev": "LAA", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_ath_0616", - "sport": "MLB", - "season": "2026", - "date": "2026-06-16", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "ATH", - "away_team_abbrev": "PIT", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_sea_0616", - "sport": "MLB", - "season": "2026", - "date": "2026-06-16", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "SEA", - "away_team_abbrev": "BAL", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_lad_0616", - "sport": "MLB", - "season": "2026", - "date": "2026-06-16", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "LAD", - "away_team_abbrev": "TB", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_chc_0616", - "sport": "MLB", - "season": "2026", - "date": "2026-06-16", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Colorado Rockies", - "home_team_abbrev": "CHC", - "away_team_abbrev": "COL", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_hou_0616", - "sport": "MLB", - "season": "2026", - "date": "2026-06-16", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Detroit Tigers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "DET", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_cin_0617", - "sport": "MLB", - "season": "2026", - "date": "2026-06-17", - "time": "16:40", - "home_team": "Cincinnati Reds", - "away_team": "New York Mets", - "home_team_abbrev": "CIN", - "away_team_abbrev": "NYM", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_wsh_0617", - "sport": "MLB", - "season": "2026", - "date": "2026-06-17", - "time": "17:05", - "home_team": "Washington Nationals", - "away_team": "Kansas City Royals", - "home_team_abbrev": "WSH", - "away_team_abbrev": "KC", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_phi_0617", - "sport": "MLB", - "season": "2026", - "date": "2026-06-17", - "time": "17:05", - "home_team": "Philadelphia Phillies", - "away_team": "Miami Marlins", - "home_team_abbrev": "PHI", - "away_team_abbrev": "MIA", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_stl_0617", - "sport": "MLB", - "season": "2026", - "date": "2026-06-17", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "San Diego Padres", - "home_team_abbrev": "STL", - "away_team_abbrev": "SD", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_lad_0617", - "sport": "MLB", - "season": "2026", - "date": "2026-06-17", - "time": "19:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "LAD", - "away_team_abbrev": "TB", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_az_0617", - "sport": "MLB", - "season": "2026", - "date": "2026-06-17", - "time": "19:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "AZ", - "away_team_abbrev": "LAA", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_bos_0617", - "sport": "MLB", - "season": "2026", - "date": "2026-06-17", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TOR", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_nyy_0617", - "sport": "MLB", - "season": "2026", - "date": "2026-06-17", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Chicago White Sox", - "home_team_abbrev": "NYY", - "away_team_abbrev": "CWS", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_atl_0617", - "sport": "MLB", - "season": "2026", - "date": "2026-06-17", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "San Francisco Giants", - "home_team_abbrev": "ATL", - "away_team_abbrev": "SF", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_mil_0617", - "sport": "MLB", - "season": "2026", - "date": "2026-06-17", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CLE", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_ath_0617", - "sport": "MLB", - "season": "2026", - "date": "2026-06-17", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "ATH", - "away_team_abbrev": "PIT", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_sea_0617", - "sport": "MLB", - "season": "2026", - "date": "2026-06-17", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "SEA", - "away_team_abbrev": "BAL", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_chc_0617", - "sport": "MLB", - "season": "2026", - "date": "2026-06-17", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Colorado Rockies", - "home_team_abbrev": "CHC", - "away_team_abbrev": "COL", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_hou_0617", - "sport": "MLB", - "season": "2026", - "date": "2026-06-17", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Detroit Tigers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "DET", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_bos_0618", - "sport": "MLB", - "season": "2026", - "date": "2026-06-18", - "time": "17:35", - "home_team": "Boston Red Sox", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TOR", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_mil_0618", - "sport": "MLB", - "season": "2026", - "date": "2026-06-18", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CLE", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_tex_0618", - "sport": "MLB", - "season": "2026", - "date": "2026-06-18", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "Minnesota Twins", - "home_team_abbrev": "TEX", - "away_team_abbrev": "MIN", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_sea_0618", - "sport": "MLB", - "season": "2026", - "date": "2026-06-18", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "SEA", - "away_team_abbrev": "BAL", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_phi_0618", - "sport": "MLB", - "season": "2026", - "date": "2026-06-18", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "New York Mets", - "home_team_abbrev": "PHI", - "away_team_abbrev": "NYM", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_nyy_0618", - "sport": "MLB", - "season": "2026", - "date": "2026-06-18", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Chicago White Sox", - "home_team_abbrev": "NYY", - "away_team_abbrev": "CWS", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_atl_0618", - "sport": "MLB", - "season": "2026", - "date": "2026-06-18", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "San Francisco Giants", - "home_team_abbrev": "ATL", - "away_team_abbrev": "SF", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_kc_0618", - "sport": "MLB", - "season": "2026", - "date": "2026-06-18", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "KC", - "away_team_abbrev": "STL", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_ath_0618", - "sport": "MLB", - "season": "2026", - "date": "2026-06-18", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "ATH", - "away_team_abbrev": "LAA", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_det_0619", - "sport": "MLB", - "season": "2026", - "date": "2026-06-19", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Chicago White Sox", - "home_team_abbrev": "DET", - "away_team_abbrev": "CWS", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_nyy_0619", - "sport": "MLB", - "season": "2026", - "date": "2026-06-19", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "NYY", - "away_team_abbrev": "CIN", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_tb_0619", - "sport": "MLB", - "season": "2026", - "date": "2026-06-19", - "time": "23:10", - "home_team": "Tampa Bay Rays", - "away_team": "Washington Nationals", - "home_team_abbrev": "TB", - "away_team_abbrev": "WSH", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_mia_0619", - "sport": "MLB", - "season": "2026", - "date": "2026-06-19", - "time": "23:10", - "home_team": "Miami Marlins", - "away_team": "San Francisco Giants", - "home_team_abbrev": "MIA", - "away_team_abbrev": "SF", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_atl_0619", - "sport": "MLB", - "season": "2026", - "date": "2026-06-19", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "MIL", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_tex_0619", - "sport": "MLB", - "season": "2026", - "date": "2026-06-19", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "San Diego Padres", - "home_team_abbrev": "TEX", - "away_team_abbrev": "SD", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_kc_0619", - "sport": "MLB", - "season": "2026", - "date": "2026-06-19", - "time": "00:10", - "home_team": "Kansas City Royals", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "KC", - "away_team_abbrev": "STL", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_col_0619", - "sport": "MLB", - "season": "2026", - "date": "2026-06-19", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "COL", - "away_team_abbrev": "PIT", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_ath_0619", - "sport": "MLB", - "season": "2026", - "date": "2026-06-19", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "ATH", - "away_team_abbrev": "LAA", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_az_0619", - "sport": "MLB", - "season": "2026", - "date": "2026-06-19", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Minnesota Twins", - "home_team_abbrev": "AZ", - "away_team_abbrev": "MIN", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_lad_0619", - "sport": "MLB", - "season": "2026", - "date": "2026-06-19", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "LAD", - "away_team_abbrev": "BAL", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_hou_0619", - "sport": "MLB", - "season": "2026", - "date": "2026-06-19", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "HOU", - "away_team_abbrev": "CLE", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_chc_0619", - "sport": "MLB", - "season": "2026", - "date": "2026-06-19", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "CHC", - "away_team_abbrev": "TOR", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_det_0620", - "sport": "MLB", - "season": "2026", - "date": "2026-06-20", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Chicago White Sox", - "home_team_abbrev": "DET", - "away_team_abbrev": "CWS", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_nyy_0620", - "sport": "MLB", - "season": "2026", - "date": "2026-06-20", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "NYY", - "away_team_abbrev": "CIN", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_tex_0620", - "sport": "MLB", - "season": "2026", - "date": "2026-06-20", - "time": "20:05", - "home_team": "Texas Rangers", - "away_team": "San Diego Padres", - "home_team_abbrev": "TEX", - "away_team_abbrev": "SD", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_sea_0620", - "sport": "MLB", - "season": "2026", - "date": "2026-06-20", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Boston Red Sox", - "home_team_abbrev": "SEA", - "away_team_abbrev": "BOS", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_sea_0620_2", - "sport": "MLB", - "season": "2026", - "date": "2026-06-20", - "time": "02:15", - "home_team": "Seattle Mariners", - "away_team": "Boston Red Sox", - "home_team_abbrev": "SEA", - "away_team_abbrev": "BOS", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_tb_0620", - "sport": "MLB", - "season": "2026", - "date": "2026-06-20", - "time": "20:10", - "home_team": "Tampa Bay Rays", - "away_team": "Washington Nationals", - "home_team_abbrev": "TB", - "away_team_abbrev": "WSH", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_mia_0620", - "sport": "MLB", - "season": "2026", - "date": "2026-06-20", - "time": "20:10", - "home_team": "Miami Marlins", - "away_team": "San Francisco Giants", - "home_team_abbrev": "MIA", - "away_team_abbrev": "SF", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_atl_0620", - "sport": "MLB", - "season": "2026", - "date": "2026-06-20", - "time": "20:10", - "home_team": "Atlanta Braves", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "MIL", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_phi_0620", - "sport": "MLB", - "season": "2026", - "date": "2026-06-20", - "time": "23:15", - "home_team": "Philadelphia Phillies", - "away_team": "New York Mets", - "home_team_abbrev": "PHI", - "away_team_abbrev": "NYM", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_col_0620", - "sport": "MLB", - "season": "2026", - "date": "2026-06-20", - "time": "01:10", - "home_team": "Colorado Rockies", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "COL", - "away_team_abbrev": "PIT", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_ath_0620", - "sport": "MLB", - "season": "2026", - "date": "2026-06-20", - "time": "02:05", - "home_team": "Athletics", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "ATH", - "away_team_abbrev": "LAA", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_lad_0620", - "sport": "MLB", - "season": "2026", - "date": "2026-06-20", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "LAD", - "away_team_abbrev": "BAL", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_az_0620", - "sport": "MLB", - "season": "2026", - "date": "2026-06-20", - "time": "02:10", - "home_team": "Arizona Diamondbacks", - "away_team": "Minnesota Twins", - "home_team_abbrev": "AZ", - "away_team_abbrev": "MIN", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_hou_0620", - "sport": "MLB", - "season": "2026", - "date": "2026-06-20", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "HOU", - "away_team_abbrev": "CLE", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_chc_0620", - "sport": "MLB", - "season": "2026", - "date": "2026-06-20", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "CHC", - "away_team_abbrev": "TOR", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_phi_0621", - "sport": "MLB", - "season": "2026", - "date": "2026-06-21", - "time": "17:35", - "home_team": "Philadelphia Phillies", - "away_team": "New York Mets", - "home_team_abbrev": "PHI", - "away_team_abbrev": "NYM", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_nyy_0621", - "sport": "MLB", - "season": "2026", - "date": "2026-06-21", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "NYY", - "away_team_abbrev": "CIN", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_atl_0621", - "sport": "MLB", - "season": "2026", - "date": "2026-06-21", - "time": "17:35", - "home_team": "Atlanta Braves", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "MIL", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_tb_0621", - "sport": "MLB", - "season": "2026", - "date": "2026-06-21", - "time": "17:40", - "home_team": "Tampa Bay Rays", - "away_team": "Washington Nationals", - "home_team_abbrev": "TB", - "away_team_abbrev": "WSH", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_det_0621", - "sport": "MLB", - "season": "2026", - "date": "2026-06-21", - "time": "17:40", - "home_team": "Detroit Tigers", - "away_team": "Chicago White Sox", - "home_team_abbrev": "DET", - "away_team_abbrev": "CWS", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_mia_0621", - "sport": "MLB", - "season": "2026", - "date": "2026-06-21", - "time": "17:40", - "home_team": "Miami Marlins", - "away_team": "San Francisco Giants", - "home_team_abbrev": "MIA", - "away_team_abbrev": "SF", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_kc_0621", - "sport": "MLB", - "season": "2026", - "date": "2026-06-21", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "KC", - "away_team_abbrev": "STL", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_tex_0621", - "sport": "MLB", - "season": "2026", - "date": "2026-06-21", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "San Diego Padres", - "home_team_abbrev": "TEX", - "away_team_abbrev": "SD", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_col_0621", - "sport": "MLB", - "season": "2026", - "date": "2026-06-21", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "COL", - "away_team_abbrev": "PIT", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_ath_0621", - "sport": "MLB", - "season": "2026", - "date": "2026-06-21", - "time": "20:05", - "home_team": "Athletics", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "ATH", - "away_team_abbrev": "LAA", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_lad_0621", - "sport": "MLB", - "season": "2026", - "date": "2026-06-21", - "time": "20:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "LAD", - "away_team_abbrev": "BAL", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_sea_0621", - "sport": "MLB", - "season": "2026", - "date": "2026-06-21", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Boston Red Sox", - "home_team_abbrev": "SEA", - "away_team_abbrev": "BOS", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_az_0621", - "sport": "MLB", - "season": "2026", - "date": "2026-06-21", - "time": "20:10", - "home_team": "Arizona Diamondbacks", - "away_team": "Minnesota Twins", - "home_team_abbrev": "AZ", - "away_team_abbrev": "MIN", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_hou_0621", - "sport": "MLB", - "season": "2026", - "date": "2026-06-21", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "HOU", - "away_team_abbrev": "CLE", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_chc_0621", - "sport": "MLB", - "season": "2026", - "date": "2026-06-21", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "CHC", - "away_team_abbrev": "TOR", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_tb_0622", - "sport": "MLB", - "season": "2026", - "date": "2026-06-22", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Kansas City Royals", - "home_team_abbrev": "TB", - "away_team_abbrev": "KC", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_mia_0622", - "sport": "MLB", - "season": "2026", - "date": "2026-06-22", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Texas Rangers", - "home_team_abbrev": "MIA", - "away_team_abbrev": "TEX", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_det_0622", - "sport": "MLB", - "season": "2026", - "date": "2026-06-22", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "New York Yankees", - "home_team_abbrev": "DET", - "away_team_abbrev": "NYY", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_wsh_0622", - "sport": "MLB", - "season": "2026", - "date": "2026-06-22", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "WSH", - "away_team_abbrev": "PHI", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_tor_0622", - "sport": "MLB", - "season": "2026", - "date": "2026-06-22", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Houston Astros", - "home_team_abbrev": "TOR", - "away_team_abbrev": "HOU", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_nym_0622", - "sport": "MLB", - "season": "2026", - "date": "2026-06-22", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Chicago Cubs", - "home_team_abbrev": "NYM", - "away_team_abbrev": "CHC", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_cin_0622", - "sport": "MLB", - "season": "2026", - "date": "2026-06-22", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "CIN", - "away_team_abbrev": "MIL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_min_0622", - "sport": "MLB", - "season": "2026", - "date": "2026-06-22", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "LAD", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_cws_0622", - "sport": "MLB", - "season": "2026", - "date": "2026-06-22", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "CWS", - "away_team_abbrev": "CLE", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_stl_0622", - "sport": "MLB", - "season": "2026", - "date": "2026-06-22", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "STL", - "away_team_abbrev": "AZ", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_col_0622", - "sport": "MLB", - "season": "2026", - "date": "2026-06-22", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Boston Red Sox", - "home_team_abbrev": "COL", - "away_team_abbrev": "BOS", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_laa_0622", - "sport": "MLB", - "season": "2026", - "date": "2026-06-22", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "LAA", - "away_team_abbrev": "BAL", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_sd_0622", - "sport": "MLB", - "season": "2026", - "date": "2026-06-22", - "time": "02:10", - "home_team": "San Diego Padres", - "away_team": "Atlanta Braves", - "home_team_abbrev": "SD", - "away_team_abbrev": "ATL", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_pit_0623", - "sport": "MLB", - "season": "2026", - "date": "2026-06-23", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Seattle Mariners", - "home_team_abbrev": "PIT", - "away_team_abbrev": "SEA", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_tb_0623", - "sport": "MLB", - "season": "2026", - "date": "2026-06-23", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Kansas City Royals", - "home_team_abbrev": "TB", - "away_team_abbrev": "KC", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_mia_0623", - "sport": "MLB", - "season": "2026", - "date": "2026-06-23", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Texas Rangers", - "home_team_abbrev": "MIA", - "away_team_abbrev": "TEX", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_det_0623", - "sport": "MLB", - "season": "2026", - "date": "2026-06-23", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "New York Yankees", - "home_team_abbrev": "DET", - "away_team_abbrev": "NYY", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_wsh_0623", - "sport": "MLB", - "season": "2026", - "date": "2026-06-23", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "WSH", - "away_team_abbrev": "PHI", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_tor_0623", - "sport": "MLB", - "season": "2026", - "date": "2026-06-23", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Houston Astros", - "home_team_abbrev": "TOR", - "away_team_abbrev": "HOU", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_nym_0623", - "sport": "MLB", - "season": "2026", - "date": "2026-06-23", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Chicago Cubs", - "home_team_abbrev": "NYM", - "away_team_abbrev": "CHC", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_cin_0623", - "sport": "MLB", - "season": "2026", - "date": "2026-06-23", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "CIN", - "away_team_abbrev": "MIL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_min_0623", - "sport": "MLB", - "season": "2026", - "date": "2026-06-23", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "LAD", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_cws_0623", - "sport": "MLB", - "season": "2026", - "date": "2026-06-23", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "CWS", - "away_team_abbrev": "CLE", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_stl_0623", - "sport": "MLB", - "season": "2026", - "date": "2026-06-23", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "STL", - "away_team_abbrev": "AZ", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_col_0623", - "sport": "MLB", - "season": "2026", - "date": "2026-06-23", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Boston Red Sox", - "home_team_abbrev": "COL", - "away_team_abbrev": "BOS", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_laa_0623", - "sport": "MLB", - "season": "2026", - "date": "2026-06-23", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "LAA", - "away_team_abbrev": "BAL", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_sd_0623", - "sport": "MLB", - "season": "2026", - "date": "2026-06-23", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Atlanta Braves", - "home_team_abbrev": "SD", - "away_team_abbrev": "ATL", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_sf_0623", - "sport": "MLB", - "season": "2026", - "date": "2026-06-23", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Athletics", - "home_team_abbrev": "SF", - "away_team_abbrev": "ATH", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_mia_0624", - "sport": "MLB", - "season": "2026", - "date": "2026-06-24", - "time": "16:10", - "home_team": "Miami Marlins", - "away_team": "Texas Rangers", - "home_team_abbrev": "MIA", - "away_team_abbrev": "TEX", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_cws_0624", - "sport": "MLB", - "season": "2026", - "date": "2026-06-24", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "CWS", - "away_team_abbrev": "CLE", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_col_0624", - "sport": "MLB", - "season": "2026", - "date": "2026-06-24", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Boston Red Sox", - "home_team_abbrev": "COL", - "away_team_abbrev": "BOS", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_laa_0624", - "sport": "MLB", - "season": "2026", - "date": "2026-06-24", - "time": "20:07", - "home_team": "Los Angeles Angels", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "LAA", - "away_team_abbrev": "BAL", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_pit_0624", - "sport": "MLB", - "season": "2026", - "date": "2026-06-24", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Seattle Mariners", - "home_team_abbrev": "PIT", - "away_team_abbrev": "SEA", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_tb_0624", - "sport": "MLB", - "season": "2026", - "date": "2026-06-24", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Kansas City Royals", - "home_team_abbrev": "TB", - "away_team_abbrev": "KC", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_det_0624", - "sport": "MLB", - "season": "2026", - "date": "2026-06-24", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "New York Yankees", - "home_team_abbrev": "DET", - "away_team_abbrev": "NYY", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_wsh_0624", - "sport": "MLB", - "season": "2026", - "date": "2026-06-24", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "WSH", - "away_team_abbrev": "PHI", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_tor_0624", - "sport": "MLB", - "season": "2026", - "date": "2026-06-24", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Houston Astros", - "home_team_abbrev": "TOR", - "away_team_abbrev": "HOU", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_nym_0624", - "sport": "MLB", - "season": "2026", - "date": "2026-06-24", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Chicago Cubs", - "home_team_abbrev": "NYM", - "away_team_abbrev": "CHC", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_cin_0624", - "sport": "MLB", - "season": "2026", - "date": "2026-06-24", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "CIN", - "away_team_abbrev": "MIL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_min_0624", - "sport": "MLB", - "season": "2026", - "date": "2026-06-24", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "LAD", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_stl_0624", - "sport": "MLB", - "season": "2026", - "date": "2026-06-24", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "STL", - "away_team_abbrev": "AZ", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_sd_0624", - "sport": "MLB", - "season": "2026", - "date": "2026-06-24", - "time": "00:40", - "home_team": "San Diego Padres", - "away_team": "Atlanta Braves", - "home_team_abbrev": "SD", - "away_team_abbrev": "ATL", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_sf_0624", - "sport": "MLB", - "season": "2026", - "date": "2026-06-24", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Athletics", - "home_team_abbrev": "SF", - "away_team_abbrev": "ATH", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_tb_0625", - "sport": "MLB", - "season": "2026", - "date": "2026-06-25", - "time": "16:10", - "home_team": "Tampa Bay Rays", - "away_team": "Kansas City Royals", - "home_team_abbrev": "TB", - "away_team_abbrev": "KC", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_pit_0625", - "sport": "MLB", - "season": "2026", - "date": "2026-06-25", - "time": "16:35", - "home_team": "Pittsburgh Pirates", - "away_team": "Seattle Mariners", - "home_team_abbrev": "PIT", - "away_team_abbrev": "SEA", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_sf_0625", - "sport": "MLB", - "season": "2026", - "date": "2026-06-25", - "time": "19:45", - "home_team": "San Francisco Giants", - "away_team": "Athletics", - "home_team_abbrev": "SF", - "away_team_abbrev": "ATH", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_det_0625", - "sport": "MLB", - "season": "2026", - "date": "2026-06-25", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Houston Astros", - "home_team_abbrev": "DET", - "away_team_abbrev": "HOU", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_wsh_0625", - "sport": "MLB", - "season": "2026", - "date": "2026-06-25", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "WSH", - "away_team_abbrev": "PHI", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_tor_0625", - "sport": "MLB", - "season": "2026", - "date": "2026-06-25", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Texas Rangers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "TEX", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_nym_0625", - "sport": "MLB", - "season": "2026", - "date": "2026-06-25", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Chicago Cubs", - "home_team_abbrev": "NYM", - "away_team_abbrev": "CHC", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_bos_0625", - "sport": "MLB", - "season": "2026", - "date": "2026-06-25", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "New York Yankees", - "home_team_abbrev": "BOS", - "away_team_abbrev": "NYY", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_stl_0625", - "sport": "MLB", - "season": "2026", - "date": "2026-06-25", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "STL", - "away_team_abbrev": "AZ", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_det_0626", - "sport": "MLB", - "season": "2026", - "date": "2026-06-26", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Houston Astros", - "home_team_abbrev": "DET", - "away_team_abbrev": "HOU", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_pit_0626", - "sport": "MLB", - "season": "2026", - "date": "2026-06-26", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "PIT", - "away_team_abbrev": "CIN", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_bal_0626", - "sport": "MLB", - "season": "2026", - "date": "2026-06-26", - "time": "23:05", - "home_team": "Baltimore Orioles", - "away_team": "Washington Nationals", - "home_team_abbrev": "BAL", - "away_team_abbrev": "WSH", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_tor_0626", - "sport": "MLB", - "season": "2026", - "date": "2026-06-26", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Texas Rangers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "TEX", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_tb_0626", - "sport": "MLB", - "season": "2026", - "date": "2026-06-26", - "time": "23:10", - "home_team": "Tampa Bay Rays", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "TB", - "away_team_abbrev": "AZ", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_nym_0626", - "sport": "MLB", - "season": "2026", - "date": "2026-06-26", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "NYM", - "away_team_abbrev": "PHI", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_bos_0626", - "sport": "MLB", - "season": "2026", - "date": "2026-06-26", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "New York Yankees", - "home_team_abbrev": "BOS", - "away_team_abbrev": "NYY", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_cws_0626", - "sport": "MLB", - "season": "2026", - "date": "2026-06-26", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Kansas City Royals", - "home_team_abbrev": "CWS", - "away_team_abbrev": "KC", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_mil_0626", - "sport": "MLB", - "season": "2026", - "date": "2026-06-26", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Chicago Cubs", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CHC", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_min_0626", - "sport": "MLB", - "season": "2026", - "date": "2026-06-26", - "time": "00:10", - "home_team": "Minnesota Twins", - "away_team": "Colorado Rockies", - "home_team_abbrev": "MIN", - "away_team_abbrev": "COL", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_stl_0626", - "sport": "MLB", - "season": "2026", - "date": "2026-06-26", - "time": "00:15", - "home_team": "St. Louis Cardinals", - "away_team": "Miami Marlins", - "home_team_abbrev": "STL", - "away_team_abbrev": "MIA", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_laa_0626", - "sport": "MLB", - "season": "2026", - "date": "2026-06-26", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Athletics", - "home_team_abbrev": "LAA", - "away_team_abbrev": "ATH", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_sd_0626", - "sport": "MLB", - "season": "2026", - "date": "2026-06-26", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "SD", - "away_team_abbrev": "LAD", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_sf_0626", - "sport": "MLB", - "season": "2026", - "date": "2026-06-26", - "time": "02:15", - "home_team": "San Francisco Giants", - "away_team": "Atlanta Braves", - "home_team_abbrev": "SF", - "away_team_abbrev": "ATL", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_cle_0626", - "sport": "MLB", - "season": "2026", - "date": "2026-06-26", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Seattle Mariners", - "home_team_abbrev": "CLE", - "away_team_abbrev": "SEA", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_det_0627", - "sport": "MLB", - "season": "2026", - "date": "2026-06-27", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Houston Astros", - "home_team_abbrev": "DET", - "away_team_abbrev": "HOU", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_bos_0627", - "sport": "MLB", - "season": "2026", - "date": "2026-06-27", - "time": "17:10", - "home_team": "Boston Red Sox", - "away_team": "New York Yankees", - "home_team_abbrev": "BOS", - "away_team_abbrev": "NYY", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_tor_0627", - "sport": "MLB", - "season": "2026", - "date": "2026-06-27", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "Texas Rangers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "TEX", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_pit_0627", - "sport": "MLB", - "season": "2026", - "date": "2026-06-27", - "time": "20:05", - "home_team": "Pittsburgh Pirates", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "PIT", - "away_team_abbrev": "CIN", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_nym_0627", - "sport": "MLB", - "season": "2026", - "date": "2026-06-27", - "time": "20:10", - "home_team": "New York Mets", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "NYM", - "away_team_abbrev": "PHI", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_cws_0627", - "sport": "MLB", - "season": "2026", - "date": "2026-06-27", - "time": "20:10", - "home_team": "Chicago White Sox", - "away_team": "Kansas City Royals", - "home_team_abbrev": "CWS", - "away_team_abbrev": "KC", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_stl_0627", - "sport": "MLB", - "season": "2026", - "date": "2026-06-27", - "time": "20:15", - "home_team": "St. Louis Cardinals", - "away_team": "Miami Marlins", - "home_team_abbrev": "STL", - "away_team_abbrev": "MIA", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_tb_0627", - "sport": "MLB", - "season": "2026", - "date": "2026-06-27", - "time": "22:10", - "home_team": "Tampa Bay Rays", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "TB", - "away_team_abbrev": "AZ", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_bal_0627", - "sport": "MLB", - "season": "2026", - "date": "2026-06-27", - "time": "23:05", - "home_team": "Baltimore Orioles", - "away_team": "Washington Nationals", - "home_team_abbrev": "BAL", - "away_team_abbrev": "WSH", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_min_0627", - "sport": "MLB", - "season": "2026", - "date": "2026-06-27", - "time": "23:10", - "home_team": "Minnesota Twins", - "away_team": "Colorado Rockies", - "home_team_abbrev": "MIN", - "away_team_abbrev": "COL", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_mil_0627", - "sport": "MLB", - "season": "2026", - "date": "2026-06-27", - "time": "23:10", - "home_team": "Milwaukee Brewers", - "away_team": "Chicago Cubs", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CHC", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_sd_0627", - "sport": "MLB", - "season": "2026", - "date": "2026-06-27", - "time": "00:40", - "home_team": "San Diego Padres", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "SD", - "away_team_abbrev": "LAD", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_laa_0627", - "sport": "MLB", - "season": "2026", - "date": "2026-06-27", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Athletics", - "home_team_abbrev": "LAA", - "away_team_abbrev": "ATH", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_cle_0627", - "sport": "MLB", - "season": "2026", - "date": "2026-06-27", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Seattle Mariners", - "home_team_abbrev": "CLE", - "away_team_abbrev": "SEA", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_sf_0627", - "sport": "MLB", - "season": "2026", - "date": "2026-06-27", - "time": "10:33", - "home_team": "San Francisco Giants", - "away_team": "Atlanta Braves", - "home_team_abbrev": "SF", - "away_team_abbrev": "ATL", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_bal_0628", - "sport": "MLB", - "season": "2026", - "date": "2026-06-28", - "time": "17:35", - "home_team": "Baltimore Orioles", - "away_team": "Washington Nationals", - "home_team_abbrev": "BAL", - "away_team_abbrev": "WSH", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_pit_0628", - "sport": "MLB", - "season": "2026", - "date": "2026-06-28", - "time": "17:35", - "home_team": "Pittsburgh Pirates", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "PIT", - "away_team_abbrev": "CIN", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_bos_0628", - "sport": "MLB", - "season": "2026", - "date": "2026-06-28", - "time": "17:35", - "home_team": "Boston Red Sox", - "away_team": "New York Yankees", - "home_team_abbrev": "BOS", - "away_team_abbrev": "NYY", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_tor_0628", - "sport": "MLB", - "season": "2026", - "date": "2026-06-28", - "time": "17:37", - "home_team": "Toronto Blue Jays", - "away_team": "Texas Rangers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "TEX", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_det_0628", - "sport": "MLB", - "season": "2026", - "date": "2026-06-28", - "time": "17:40", - "home_team": "Detroit Tigers", - "away_team": "Houston Astros", - "home_team_abbrev": "DET", - "away_team_abbrev": "HOU", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_tb_0628", - "sport": "MLB", - "season": "2026", - "date": "2026-06-28", - "time": "17:40", - "home_team": "Tampa Bay Rays", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "TB", - "away_team_abbrev": "AZ", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_nym_0628", - "sport": "MLB", - "season": "2026", - "date": "2026-06-28", - "time": "17:40", - "home_team": "New York Mets", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "NYM", - "away_team_abbrev": "PHI", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_min_0628", - "sport": "MLB", - "season": "2026", - "date": "2026-06-28", - "time": "18:10", - "home_team": "Minnesota Twins", - "away_team": "Colorado Rockies", - "home_team_abbrev": "MIN", - "away_team_abbrev": "COL", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_cws_0628", - "sport": "MLB", - "season": "2026", - "date": "2026-06-28", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Kansas City Royals", - "home_team_abbrev": "CWS", - "away_team_abbrev": "KC", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_mil_0628", - "sport": "MLB", - "season": "2026", - "date": "2026-06-28", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "Chicago Cubs", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CHC", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_stl_0628", - "sport": "MLB", - "season": "2026", - "date": "2026-06-28", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Miami Marlins", - "home_team_abbrev": "STL", - "away_team_abbrev": "MIA", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_sf_0628", - "sport": "MLB", - "season": "2026", - "date": "2026-06-28", - "time": "20:05", - "home_team": "San Francisco Giants", - "away_team": "Atlanta Braves", - "home_team_abbrev": "SF", - "away_team_abbrev": "ATL", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_laa_0628", - "sport": "MLB", - "season": "2026", - "date": "2026-06-28", - "time": "20:07", - "home_team": "Los Angeles Angels", - "away_team": "Athletics", - "home_team_abbrev": "LAA", - "away_team_abbrev": "ATH", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_sd_0628", - "sport": "MLB", - "season": "2026", - "date": "2026-06-28", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "SD", - "away_team_abbrev": "LAD", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_cle_0628", - "sport": "MLB", - "season": "2026", - "date": "2026-06-28", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Seattle Mariners", - "home_team_abbrev": "CLE", - "away_team_abbrev": "SEA", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_bal_0629", - "sport": "MLB", - "season": "2026", - "date": "2026-06-29", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Chicago White Sox", - "home_team_abbrev": "BAL", - "away_team_abbrev": "CWS", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_phi_0629", - "sport": "MLB", - "season": "2026", - "date": "2026-06-29", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "PHI", - "away_team_abbrev": "PIT", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_nyy_0629", - "sport": "MLB", - "season": "2026", - "date": "2026-06-29", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Detroit Tigers", - "home_team_abbrev": "NYY", - "away_team_abbrev": "DET", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_tor_0629", - "sport": "MLB", - "season": "2026", - "date": "2026-06-29", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "New York Mets", - "home_team_abbrev": "TOR", - "away_team_abbrev": "NYM", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_bos_0629", - "sport": "MLB", - "season": "2026", - "date": "2026-06-29", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Washington Nationals", - "home_team_abbrev": "BOS", - "away_team_abbrev": "WSH", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_mil_0629", - "sport": "MLB", - "season": "2026", - "date": "2026-06-29", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CIN", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_col_0629", - "sport": "MLB", - "season": "2026", - "date": "2026-06-29", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Miami Marlins", - "home_team_abbrev": "COL", - "away_team_abbrev": "MIA", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_ath_0629", - "sport": "MLB", - "season": "2026", - "date": "2026-06-29", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "ATH", - "away_team_abbrev": "LAD", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_sea_0629", - "sport": "MLB", - "season": "2026", - "date": "2026-06-29", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "SEA", - "away_team_abbrev": "LAA", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_az_0629", - "sport": "MLB", - "season": "2026", - "date": "2026-06-29", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "San Francisco Giants", - "home_team_abbrev": "AZ", - "away_team_abbrev": "SF", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_cle_0629", - "sport": "MLB", - "season": "2026", - "date": "2026-06-29", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Texas Rangers", - "home_team_abbrev": "CLE", - "away_team_abbrev": "TEX", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_chc_0629", - "sport": "MLB", - "season": "2026", - "date": "2026-06-29", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "San Diego Padres", - "home_team_abbrev": "CHC", - "away_team_abbrev": "SD", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_hou_0629", - "sport": "MLB", - "season": "2026", - "date": "2026-06-29", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Minnesota Twins", - "home_team_abbrev": "HOU", - "away_team_abbrev": "MIN", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_bal_0630", - "sport": "MLB", - "season": "2026", - "date": "2026-06-30", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Chicago White Sox", - "home_team_abbrev": "BAL", - "away_team_abbrev": "CWS", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_phi_0630", - "sport": "MLB", - "season": "2026", - "date": "2026-06-30", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "PHI", - "away_team_abbrev": "PIT", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_nyy_0630", - "sport": "MLB", - "season": "2026", - "date": "2026-06-30", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Detroit Tigers", - "home_team_abbrev": "NYY", - "away_team_abbrev": "DET", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_tor_0630", - "sport": "MLB", - "season": "2026", - "date": "2026-06-30", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "New York Mets", - "home_team_abbrev": "TOR", - "away_team_abbrev": "NYM", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_bos_0630", - "sport": "MLB", - "season": "2026", - "date": "2026-06-30", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Washington Nationals", - "home_team_abbrev": "BOS", - "away_team_abbrev": "WSH", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_atl_0630", - "sport": "MLB", - "season": "2026", - "date": "2026-06-30", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "ATL", - "away_team_abbrev": "STL", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_kc_0630", - "sport": "MLB", - "season": "2026", - "date": "2026-06-30", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "KC", - "away_team_abbrev": "TB", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_mil_0630", - "sport": "MLB", - "season": "2026", - "date": "2026-06-30", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CIN", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_col_0630", - "sport": "MLB", - "season": "2026", - "date": "2026-06-30", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Miami Marlins", - "home_team_abbrev": "COL", - "away_team_abbrev": "MIA", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_ath_0630", - "sport": "MLB", - "season": "2026", - "date": "2026-06-30", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "ATH", - "away_team_abbrev": "LAD", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_sea_0630", - "sport": "MLB", - "season": "2026", - "date": "2026-06-30", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "SEA", - "away_team_abbrev": "LAA", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_az_0630", - "sport": "MLB", - "season": "2026", - "date": "2026-06-30", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "San Francisco Giants", - "home_team_abbrev": "AZ", - "away_team_abbrev": "SF", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_cle_0630", - "sport": "MLB", - "season": "2026", - "date": "2026-06-30", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Texas Rangers", - "home_team_abbrev": "CLE", - "away_team_abbrev": "TEX", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_chc_0630", - "sport": "MLB", - "season": "2026", - "date": "2026-06-30", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "San Diego Padres", - "home_team_abbrev": "CHC", - "away_team_abbrev": "SD", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_hou_0630", - "sport": "MLB", - "season": "2026", - "date": "2026-06-30", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Minnesota Twins", - "home_team_abbrev": "HOU", - "away_team_abbrev": "MIN", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_bal_0701", - "sport": "MLB", - "season": "2026", - "date": "2026-07-01", - "time": "16:35", - "home_team": "Baltimore Orioles", - "away_team": "Chicago White Sox", - "home_team_abbrev": "BAL", - "away_team_abbrev": "CWS", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_bos_0701", - "sport": "MLB", - "season": "2026", - "date": "2026-07-01", - "time": "17:35", - "home_team": "Boston Red Sox", - "away_team": "Washington Nationals", - "home_team_abbrev": "BOS", - "away_team_abbrev": "WSH", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_nyy_0701", - "sport": "MLB", - "season": "2026", - "date": "2026-07-01", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Detroit Tigers", - "home_team_abbrev": "NYY", - "away_team_abbrev": "DET", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_tor_0701", - "sport": "MLB", - "season": "2026", - "date": "2026-07-01", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "New York Mets", - "home_team_abbrev": "TOR", - "away_team_abbrev": "NYM", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_phi_0701", - "sport": "MLB", - "season": "2026", - "date": "2026-07-01", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "PHI", - "away_team_abbrev": "PIT", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_atl_0701", - "sport": "MLB", - "season": "2026", - "date": "2026-07-01", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "ATL", - "away_team_abbrev": "STL", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_kc_0701", - "sport": "MLB", - "season": "2026", - "date": "2026-07-01", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "KC", - "away_team_abbrev": "TB", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_mil_0701", - "sport": "MLB", - "season": "2026", - "date": "2026-07-01", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CIN", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_col_0701", - "sport": "MLB", - "season": "2026", - "date": "2026-07-01", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Miami Marlins", - "home_team_abbrev": "COL", - "away_team_abbrev": "MIA", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_ath_0701", - "sport": "MLB", - "season": "2026", - "date": "2026-07-01", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "ATH", - "away_team_abbrev": "LAD", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_az_0701", - "sport": "MLB", - "season": "2026", - "date": "2026-07-01", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "San Francisco Giants", - "home_team_abbrev": "AZ", - "away_team_abbrev": "SF", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_cle_0701", - "sport": "MLB", - "season": "2026", - "date": "2026-07-01", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Texas Rangers", - "home_team_abbrev": "CLE", - "away_team_abbrev": "TEX", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_chc_0701", - "sport": "MLB", - "season": "2026", - "date": "2026-07-01", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "San Diego Padres", - "home_team_abbrev": "CHC", - "away_team_abbrev": "SD", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_hou_0701", - "sport": "MLB", - "season": "2026", - "date": "2026-07-01", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Minnesota Twins", - "home_team_abbrev": "HOU", - "away_team_abbrev": "MIN", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_phi_0702", - "sport": "MLB", - "season": "2026", - "date": "2026-07-02", - "time": "16:35", - "home_team": "Philadelphia Phillies", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "PHI", - "away_team_abbrev": "PIT", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_mil_0702", - "sport": "MLB", - "season": "2026", - "date": "2026-07-02", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CIN", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_col_0702", - "sport": "MLB", - "season": "2026", - "date": "2026-07-02", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Miami Marlins", - "home_team_abbrev": "COL", - "away_team_abbrev": "MIA", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_atl_0702", - "sport": "MLB", - "season": "2026", - "date": "2026-07-02", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "ATL", - "away_team_abbrev": "STL", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_kc_0702", - "sport": "MLB", - "season": "2026", - "date": "2026-07-02", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "KC", - "away_team_abbrev": "TB", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_tex_0702", - "sport": "MLB", - "season": "2026", - "date": "2026-07-02", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Detroit Tigers", - "home_team_abbrev": "TEX", - "away_team_abbrev": "DET", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_sea_0702", - "sport": "MLB", - "season": "2026", - "date": "2026-07-02", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "SEA", - "away_team_abbrev": "LAA", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_lad_0702", - "sport": "MLB", - "season": "2026", - "date": "2026-07-02", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "San Diego Padres", - "home_team_abbrev": "LAD", - "away_team_abbrev": "SD", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_cle_0702", - "sport": "MLB", - "season": "2026", - "date": "2026-07-02", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Chicago White Sox", - "home_team_abbrev": "CLE", - "away_team_abbrev": "CWS", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_wsh_0703", - "sport": "MLB", - "season": "2026", - "date": "2026-07-03", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "WSH", - "away_team_abbrev": "PIT", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_nyy_0703", - "sport": "MLB", - "season": "2026", - "date": "2026-07-03", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Minnesota Twins", - "home_team_abbrev": "NYY", - "away_team_abbrev": "MIN", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_cin_0703", - "sport": "MLB", - "season": "2026", - "date": "2026-07-03", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "CIN", - "away_team_abbrev": "BAL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_atl_0703", - "sport": "MLB", - "season": "2026", - "date": "2026-07-03", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "New York Mets", - "home_team_abbrev": "ATL", - "away_team_abbrev": "NYM", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_col_0703", - "sport": "MLB", - "season": "2026", - "date": "2026-07-03", - "time": "00:10", - "home_team": "Colorado Rockies", - "away_team": "San Francisco Giants", - "home_team_abbrev": "COL", - "away_team_abbrev": "SF", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_laa_0703", - "sport": "MLB", - "season": "2026", - "date": "2026-07-03", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Boston Red Sox", - "home_team_abbrev": "LAA", - "away_team_abbrev": "BOS", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_ath_0703", - "sport": "MLB", - "season": "2026", - "date": "2026-07-03", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Miami Marlins", - "home_team_abbrev": "ATH", - "away_team_abbrev": "MIA", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_az_0703", - "sport": "MLB", - "season": "2026", - "date": "2026-07-03", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "AZ", - "away_team_abbrev": "MIL", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_lad_0703", - "sport": "MLB", - "season": "2026", - "date": "2026-07-03", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "San Diego Padres", - "home_team_abbrev": "LAD", - "away_team_abbrev": "SD", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_sea_0703", - "sport": "MLB", - "season": "2026", - "date": "2026-07-03", - "time": "02:10", - "home_team": "Seattle Mariners", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "SEA", - "away_team_abbrev": "TOR", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_cle_0703", - "sport": "MLB", - "season": "2026", - "date": "2026-07-03", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Chicago White Sox", - "home_team_abbrev": "CLE", - "away_team_abbrev": "CWS", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_chc_0703", - "sport": "MLB", - "season": "2026", - "date": "2026-07-03", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "CHC", - "away_team_abbrev": "STL", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_hou_0703", - "sport": "MLB", - "season": "2026", - "date": "2026-07-03", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "HOU", - "away_team_abbrev": "TB", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_wsh_0704", - "sport": "MLB", - "season": "2026", - "date": "2026-07-04", - "time": "15:05", - "home_team": "Washington Nationals", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "WSH", - "away_team_abbrev": "PIT", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_nyy_0704", - "sport": "MLB", - "season": "2026", - "date": "2026-07-04", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Minnesota Twins", - "home_team_abbrev": "NYY", - "away_team_abbrev": "MIN", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_tex_0704", - "sport": "MLB", - "season": "2026", - "date": "2026-07-04", - "time": "20:05", - "home_team": "Texas Rangers", - "away_team": "Detroit Tigers", - "home_team_abbrev": "TEX", - "away_team_abbrev": "DET", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_sea_0704", - "sport": "MLB", - "season": "2026", - "date": "2026-07-04", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "SEA", - "away_team_abbrev": "TOR", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_cin_0704", - "sport": "MLB", - "season": "2026", - "date": "2026-07-04", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "CIN", - "away_team_abbrev": "BAL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_atl_0704", - "sport": "MLB", - "season": "2026", - "date": "2026-07-04", - "time": "00:08", - "home_team": "Atlanta Braves", - "away_team": "New York Mets", - "home_team_abbrev": "ATL", - "away_team_abbrev": "NYM", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_col_0704", - "sport": "MLB", - "season": "2026", - "date": "2026-07-04", - "time": "00:10", - "home_team": "Colorado Rockies", - "away_team": "San Francisco Giants", - "home_team_abbrev": "COL", - "away_team_abbrev": "SF", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_kc_0704", - "sport": "MLB", - "season": "2026", - "date": "2026-07-04", - "time": "00:10", - "home_team": "Kansas City Royals", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "KC", - "away_team_abbrev": "PHI", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_laa_0704", - "sport": "MLB", - "season": "2026", - "date": "2026-07-04", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Boston Red Sox", - "home_team_abbrev": "LAA", - "away_team_abbrev": "BOS", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_ath_0704", - "sport": "MLB", - "season": "2026", - "date": "2026-07-04", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Miami Marlins", - "home_team_abbrev": "ATH", - "away_team_abbrev": "MIA", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_az_0704", - "sport": "MLB", - "season": "2026", - "date": "2026-07-04", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "AZ", - "away_team_abbrev": "MIL", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_lad_0704", - "sport": "MLB", - "season": "2026", - "date": "2026-07-04", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "San Diego Padres", - "home_team_abbrev": "LAD", - "away_team_abbrev": "SD", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_cle_0704", - "sport": "MLB", - "season": "2026", - "date": "2026-07-04", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Chicago White Sox", - "home_team_abbrev": "CLE", - "away_team_abbrev": "CWS", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_chc_0704", - "sport": "MLB", - "season": "2026", - "date": "2026-07-04", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "CHC", - "away_team_abbrev": "STL", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_hou_0704", - "sport": "MLB", - "season": "2026", - "date": "2026-07-04", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "HOU", - "away_team_abbrev": "TB", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_wsh_0705", - "sport": "MLB", - "season": "2026", - "date": "2026-07-05", - "time": "17:35", - "home_team": "Washington Nationals", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "WSH", - "away_team_abbrev": "PIT", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_atl_0705", - "sport": "MLB", - "season": "2026", - "date": "2026-07-05", - "time": "17:35", - "home_team": "Atlanta Braves", - "away_team": "New York Mets", - "home_team_abbrev": "ATL", - "away_team_abbrev": "NYM", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_nyy_0705", - "sport": "MLB", - "season": "2026", - "date": "2026-07-05", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Minnesota Twins", - "home_team_abbrev": "NYY", - "away_team_abbrev": "MIN", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_cin_0705", - "sport": "MLB", - "season": "2026", - "date": "2026-07-05", - "time": "17:40", - "home_team": "Cincinnati Reds", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "CIN", - "away_team_abbrev": "BAL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_kc_0705", - "sport": "MLB", - "season": "2026", - "date": "2026-07-05", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "KC", - "away_team_abbrev": "PHI", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_tex_0705", - "sport": "MLB", - "season": "2026", - "date": "2026-07-05", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "Detroit Tigers", - "home_team_abbrev": "TEX", - "away_team_abbrev": "DET", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_col_0705", - "sport": "MLB", - "season": "2026", - "date": "2026-07-05", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "San Francisco Giants", - "home_team_abbrev": "COL", - "away_team_abbrev": "SF", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_ath_0705", - "sport": "MLB", - "season": "2026", - "date": "2026-07-05", - "time": "20:05", - "home_team": "Athletics", - "away_team": "Miami Marlins", - "home_team_abbrev": "ATH", - "away_team_abbrev": "MIA", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_laa_0705", - "sport": "MLB", - "season": "2026", - "date": "2026-07-05", - "time": "20:07", - "home_team": "Los Angeles Angels", - "away_team": "Boston Red Sox", - "home_team_abbrev": "LAA", - "away_team_abbrev": "BOS", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_sea_0705", - "sport": "MLB", - "season": "2026", - "date": "2026-07-05", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "SEA", - "away_team_abbrev": "TOR", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_az_0705", - "sport": "MLB", - "season": "2026", - "date": "2026-07-05", - "time": "20:10", - "home_team": "Arizona Diamondbacks", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "AZ", - "away_team_abbrev": "MIL", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_lad_0705", - "sport": "MLB", - "season": "2026", - "date": "2026-07-05", - "time": "23:20", - "home_team": "Los Angeles Dodgers", - "away_team": "San Diego Padres", - "home_team_abbrev": "LAD", - "away_team_abbrev": "SD", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_cle_0705", - "sport": "MLB", - "season": "2026", - "date": "2026-07-05", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Chicago White Sox", - "home_team_abbrev": "CLE", - "away_team_abbrev": "CWS", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_chc_0705", - "sport": "MLB", - "season": "2026", - "date": "2026-07-05", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "CHC", - "away_team_abbrev": "STL", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_hou_0705", - "sport": "MLB", - "season": "2026", - "date": "2026-07-05", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "HOU", - "away_team_abbrev": "TB", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_kc_0706", - "sport": "MLB", - "season": "2026", - "date": "2026-07-06", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "KC", - "away_team_abbrev": "PHI", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_tb_0706", - "sport": "MLB", - "season": "2026", - "date": "2026-07-06", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "New York Yankees", - "home_team_abbrev": "TB", - "away_team_abbrev": "NYY", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_wsh_0706", - "sport": "MLB", - "season": "2026", - "date": "2026-07-06", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Houston Astros", - "home_team_abbrev": "WSH", - "away_team_abbrev": "HOU", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_atl_0706", - "sport": "MLB", - "season": "2026", - "date": "2026-07-06", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "New York Mets", - "home_team_abbrev": "ATL", - "away_team_abbrev": "NYM", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_stl_0706", - "sport": "MLB", - "season": "2026", - "date": "2026-07-06", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "STL", - "away_team_abbrev": "MIL", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_sd_0706", - "sport": "MLB", - "season": "2026", - "date": "2026-07-06", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "SD", - "away_team_abbrev": "AZ", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_sf_0706", - "sport": "MLB", - "season": "2026", - "date": "2026-07-06", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "SF", - "away_team_abbrev": "TOR", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_lad_0706", - "sport": "MLB", - "season": "2026", - "date": "2026-07-06", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Colorado Rockies", - "home_team_abbrev": "LAD", - "away_team_abbrev": "COL", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_bal_0707", - "sport": "MLB", - "season": "2026", - "date": "2026-07-07", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Chicago Cubs", - "home_team_abbrev": "BAL", - "away_team_abbrev": "CHC", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_det_0707", - "sport": "MLB", - "season": "2026", - "date": "2026-07-07", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Athletics", - "home_team_abbrev": "DET", - "away_team_abbrev": "ATH", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_pit_0707", - "sport": "MLB", - "season": "2026", - "date": "2026-07-07", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Atlanta Braves", - "home_team_abbrev": "PIT", - "away_team_abbrev": "ATL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_mia_0707", - "sport": "MLB", - "season": "2026", - "date": "2026-07-07", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Seattle Mariners", - "home_team_abbrev": "MIA", - "away_team_abbrev": "SEA", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_tb_0707", - "sport": "MLB", - "season": "2026", - "date": "2026-07-07", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "New York Yankees", - "home_team_abbrev": "TB", - "away_team_abbrev": "NYY", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_wsh_0707", - "sport": "MLB", - "season": "2026", - "date": "2026-07-07", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Houston Astros", - "home_team_abbrev": "WSH", - "away_team_abbrev": "HOU", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_nym_0707", - "sport": "MLB", - "season": "2026", - "date": "2026-07-07", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Kansas City Royals", - "home_team_abbrev": "NYM", - "away_team_abbrev": "KC", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_cin_0707", - "sport": "MLB", - "season": "2026", - "date": "2026-07-07", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "CIN", - "away_team_abbrev": "PHI", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_min_0707", - "sport": "MLB", - "season": "2026", - "date": "2026-07-07", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CLE", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_cws_0707", - "sport": "MLB", - "season": "2026", - "date": "2026-07-07", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Boston Red Sox", - "home_team_abbrev": "CWS", - "away_team_abbrev": "BOS", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_stl_0707", - "sport": "MLB", - "season": "2026", - "date": "2026-07-07", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "STL", - "away_team_abbrev": "MIL", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_tex_0707", - "sport": "MLB", - "season": "2026", - "date": "2026-07-07", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "TEX", - "away_team_abbrev": "LAA", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_sd_0707", - "sport": "MLB", - "season": "2026", - "date": "2026-07-07", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "SD", - "away_team_abbrev": "AZ", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_sf_0707", - "sport": "MLB", - "season": "2026", - "date": "2026-07-07", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "SF", - "away_team_abbrev": "TOR", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_lad_0707", - "sport": "MLB", - "season": "2026", - "date": "2026-07-07", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Colorado Rockies", - "home_team_abbrev": "LAD", - "away_team_abbrev": "COL", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_sf_0708", - "sport": "MLB", - "season": "2026", - "date": "2026-07-08", - "time": "19:45", - "home_team": "San Francisco Giants", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "SF", - "away_team_abbrev": "TOR", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_bal_0708", - "sport": "MLB", - "season": "2026", - "date": "2026-07-08", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Chicago Cubs", - "home_team_abbrev": "BAL", - "away_team_abbrev": "CHC", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_det_0708", - "sport": "MLB", - "season": "2026", - "date": "2026-07-08", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Athletics", - "home_team_abbrev": "DET", - "away_team_abbrev": "ATH", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_pit_0708", - "sport": "MLB", - "season": "2026", - "date": "2026-07-08", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Atlanta Braves", - "home_team_abbrev": "PIT", - "away_team_abbrev": "ATL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_mia_0708", - "sport": "MLB", - "season": "2026", - "date": "2026-07-08", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Seattle Mariners", - "home_team_abbrev": "MIA", - "away_team_abbrev": "SEA", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_tb_0708", - "sport": "MLB", - "season": "2026", - "date": "2026-07-08", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "New York Yankees", - "home_team_abbrev": "TB", - "away_team_abbrev": "NYY", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_wsh_0708", - "sport": "MLB", - "season": "2026", - "date": "2026-07-08", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Houston Astros", - "home_team_abbrev": "WSH", - "away_team_abbrev": "HOU", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_nym_0708", - "sport": "MLB", - "season": "2026", - "date": "2026-07-08", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Kansas City Royals", - "home_team_abbrev": "NYM", - "away_team_abbrev": "KC", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_cin_0708", - "sport": "MLB", - "season": "2026", - "date": "2026-07-08", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "CIN", - "away_team_abbrev": "PHI", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_min_0708", - "sport": "MLB", - "season": "2026", - "date": "2026-07-08", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CLE", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_cws_0708", - "sport": "MLB", - "season": "2026", - "date": "2026-07-08", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Boston Red Sox", - "home_team_abbrev": "CWS", - "away_team_abbrev": "BOS", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_stl_0708", - "sport": "MLB", - "season": "2026", - "date": "2026-07-08", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "STL", - "away_team_abbrev": "MIL", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_tex_0708", - "sport": "MLB", - "season": "2026", - "date": "2026-07-08", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "TEX", - "away_team_abbrev": "LAA", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_lad_0708", - "sport": "MLB", - "season": "2026", - "date": "2026-07-08", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Colorado Rockies", - "home_team_abbrev": "LAD", - "away_team_abbrev": "COL", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_sd_0708", - "sport": "MLB", - "season": "2026", - "date": "2026-07-08", - "time": "02:10", - "home_team": "San Diego Padres", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "SD", - "away_team_abbrev": "AZ", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_pit_0709", - "sport": "MLB", - "season": "2026", - "date": "2026-07-09", - "time": "16:35", - "home_team": "Pittsburgh Pirates", - "away_team": "Atlanta Braves", - "home_team_abbrev": "PIT", - "away_team_abbrev": "ATL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_nym_0709", - "sport": "MLB", - "season": "2026", - "date": "2026-07-09", - "time": "17:10", - "home_team": "New York Mets", - "away_team": "Kansas City Royals", - "home_team_abbrev": "NYM", - "away_team_abbrev": "KC", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_tb_0709", - "sport": "MLB", - "season": "2026", - "date": "2026-07-09", - "time": "17:10", - "home_team": "Tampa Bay Rays", - "away_team": "New York Yankees", - "home_team_abbrev": "TB", - "away_team_abbrev": "NYY", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_min_0709", - "sport": "MLB", - "season": "2026", - "date": "2026-07-09", - "time": "17:40", - "home_team": "Minnesota Twins", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CLE", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_cws_0709", - "sport": "MLB", - "season": "2026", - "date": "2026-07-09", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Boston Red Sox", - "home_team_abbrev": "CWS", - "away_team_abbrev": "BOS", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_bal_0709", - "sport": "MLB", - "season": "2026", - "date": "2026-07-09", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Chicago Cubs", - "home_team_abbrev": "BAL", - "away_team_abbrev": "CHC", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_det_0709", - "sport": "MLB", - "season": "2026", - "date": "2026-07-09", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Athletics", - "home_team_abbrev": "DET", - "away_team_abbrev": "ATH", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_mia_0709", - "sport": "MLB", - "season": "2026", - "date": "2026-07-09", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Seattle Mariners", - "home_team_abbrev": "MIA", - "away_team_abbrev": "SEA", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_cin_0709", - "sport": "MLB", - "season": "2026", - "date": "2026-07-09", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "CIN", - "away_team_abbrev": "PHI", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_stl_0709", - "sport": "MLB", - "season": "2026", - "date": "2026-07-09", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "STL", - "away_team_abbrev": "MIL", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_tex_0709", - "sport": "MLB", - "season": "2026", - "date": "2026-07-09", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "TEX", - "away_team_abbrev": "LAA", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_sd_0709", - "sport": "MLB", - "season": "2026", - "date": "2026-07-09", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "SD", - "away_team_abbrev": "AZ", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_sf_0709", - "sport": "MLB", - "season": "2026", - "date": "2026-07-09", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Colorado Rockies", - "home_team_abbrev": "SF", - "away_team_abbrev": "COL", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_det_0710", - "sport": "MLB", - "season": "2026", - "date": "2026-07-10", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "DET", - "away_team_abbrev": "PHI", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_pit_0710", - "sport": "MLB", - "season": "2026", - "date": "2026-07-10", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "PIT", - "away_team_abbrev": "MIL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_wsh_0710", - "sport": "MLB", - "season": "2026", - "date": "2026-07-10", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "New York Yankees", - "home_team_abbrev": "WSH", - "away_team_abbrev": "NYY", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_bal_0710", - "sport": "MLB", - "season": "2026", - "date": "2026-07-10", - "time": "23:05", - "home_team": "Baltimore Orioles", - "away_team": "Kansas City Royals", - "home_team_abbrev": "BAL", - "away_team_abbrev": "KC", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_cin_0710", - "sport": "MLB", - "season": "2026", - "date": "2026-07-10", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "Chicago Cubs", - "home_team_abbrev": "CIN", - "away_team_abbrev": "CHC", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_nym_0710", - "sport": "MLB", - "season": "2026", - "date": "2026-07-10", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Boston Red Sox", - "home_team_abbrev": "NYM", - "away_team_abbrev": "BOS", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_tb_0710", - "sport": "MLB", - "season": "2026", - "date": "2026-07-10", - "time": "23:10", - "home_team": "Tampa Bay Rays", - "away_team": "Seattle Mariners", - "home_team_abbrev": "TB", - "away_team_abbrev": "SEA", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_mia_0710", - "sport": "MLB", - "season": "2026", - "date": "2026-07-10", - "time": "23:10", - "home_team": "Miami Marlins", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "MIA", - "away_team_abbrev": "CLE", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_cws_0710", - "sport": "MLB", - "season": "2026", - "date": "2026-07-10", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Athletics", - "home_team_abbrev": "CWS", - "away_team_abbrev": "ATH", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_tex_0710", - "sport": "MLB", - "season": "2026", - "date": "2026-07-10", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Houston Astros", - "home_team_abbrev": "TEX", - "away_team_abbrev": "HOU", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_min_0710", - "sport": "MLB", - "season": "2026", - "date": "2026-07-10", - "time": "00:10", - "home_team": "Minnesota Twins", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "MIN", - "away_team_abbrev": "LAA", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_stl_0710", - "sport": "MLB", - "season": "2026", - "date": "2026-07-10", - "time": "00:15", - "home_team": "St. Louis Cardinals", - "away_team": "Atlanta Braves", - "home_team_abbrev": "STL", - "away_team_abbrev": "ATL", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_sd_0710", - "sport": "MLB", - "season": "2026", - "date": "2026-07-10", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "SD", - "away_team_abbrev": "TOR", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_lad_0710", - "sport": "MLB", - "season": "2026", - "date": "2026-07-10", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "LAD", - "away_team_abbrev": "AZ", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_sf_0710", - "sport": "MLB", - "season": "2026", - "date": "2026-07-10", - "time": "02:15", - "home_team": "San Francisco Giants", - "away_team": "Colorado Rockies", - "home_team_abbrev": "SF", - "away_team_abbrev": "COL", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_min_0711", - "sport": "MLB", - "season": "2026", - "date": "2026-07-11", - "time": "18:10", - "home_team": "Minnesota Twins", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "MIN", - "away_team_abbrev": "LAA", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_cws_0711", - "sport": "MLB", - "season": "2026", - "date": "2026-07-11", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Athletics", - "home_team_abbrev": "CWS", - "away_team_abbrev": "ATH", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_mia_0711", - "sport": "MLB", - "season": "2026", - "date": "2026-07-11", - "time": "20:05", - "home_team": "Miami Marlins", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "MIA", - "away_team_abbrev": "CLE", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_wsh_0711", - "sport": "MLB", - "season": "2026", - "date": "2026-07-11", - "time": "20:05", - "home_team": "Washington Nationals", - "away_team": "New York Yankees", - "home_team_abbrev": "WSH", - "away_team_abbrev": "NYY", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_pit_0711", - "sport": "MLB", - "season": "2026", - "date": "2026-07-11", - "time": "20:05", - "home_team": "Pittsburgh Pirates", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "PIT", - "away_team_abbrev": "MIL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_nym_0711", - "sport": "MLB", - "season": "2026", - "date": "2026-07-11", - "time": "20:10", - "home_team": "New York Mets", - "away_team": "Boston Red Sox", - "home_team_abbrev": "NYM", - "away_team_abbrev": "BOS", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_tb_0711", - "sport": "MLB", - "season": "2026", - "date": "2026-07-11", - "time": "20:10", - "home_team": "Tampa Bay Rays", - "away_team": "Seattle Mariners", - "home_team_abbrev": "TB", - "away_team_abbrev": "SEA", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_det_0711", - "sport": "MLB", - "season": "2026", - "date": "2026-07-11", - "time": "22:10", - "home_team": "Detroit Tigers", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "DET", - "away_team_abbrev": "PHI", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_bal_0711", - "sport": "MLB", - "season": "2026", - "date": "2026-07-11", - "time": "23:05", - "home_team": "Baltimore Orioles", - "away_team": "Kansas City Royals", - "home_team_abbrev": "BAL", - "away_team_abbrev": "KC", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_tex_0711", - "sport": "MLB", - "season": "2026", - "date": "2026-07-11", - "time": "23:05", - "home_team": "Texas Rangers", - "away_team": "Houston Astros", - "home_team_abbrev": "TEX", - "away_team_abbrev": "HOU", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_cin_0711", - "sport": "MLB", - "season": "2026", - "date": "2026-07-11", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "Chicago Cubs", - "home_team_abbrev": "CIN", - "away_team_abbrev": "CHC", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_stl_0711", - "sport": "MLB", - "season": "2026", - "date": "2026-07-11", - "time": "23:15", - "home_team": "St. Louis Cardinals", - "away_team": "Atlanta Braves", - "home_team_abbrev": "STL", - "away_team_abbrev": "ATL", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_sd_0711", - "sport": "MLB", - "season": "2026", - "date": "2026-07-11", - "time": "00:40", - "home_team": "San Diego Padres", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "SD", - "away_team_abbrev": "TOR", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_lad_0711", - "sport": "MLB", - "season": "2026", - "date": "2026-07-11", - "time": "01:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "LAD", - "away_team_abbrev": "AZ", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_sf_0711", - "sport": "MLB", - "season": "2026", - "date": "2026-07-11", - "time": "10:33", - "home_team": "San Francisco Giants", - "away_team": "Colorado Rockies", - "home_team_abbrev": "SF", - "away_team_abbrev": "COL", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_bal_0712", - "sport": "MLB", - "season": "2026", - "date": "2026-07-12", - "time": "17:35", - "home_team": "Baltimore Orioles", - "away_team": "Kansas City Royals", - "home_team_abbrev": "BAL", - "away_team_abbrev": "KC", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_wsh_0712", - "sport": "MLB", - "season": "2026", - "date": "2026-07-12", - "time": "17:35", - "home_team": "Washington Nationals", - "away_team": "New York Yankees", - "home_team_abbrev": "WSH", - "away_team_abbrev": "NYY", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_pit_0712", - "sport": "MLB", - "season": "2026", - "date": "2026-07-12", - "time": "17:35", - "home_team": "Pittsburgh Pirates", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "PIT", - "away_team_abbrev": "MIL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_cin_0712", - "sport": "MLB", - "season": "2026", - "date": "2026-07-12", - "time": "17:40", - "home_team": "Cincinnati Reds", - "away_team": "Chicago Cubs", - "home_team_abbrev": "CIN", - "away_team_abbrev": "CHC", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_nym_0712", - "sport": "MLB", - "season": "2026", - "date": "2026-07-12", - "time": "17:40", - "home_team": "New York Mets", - "away_team": "Boston Red Sox", - "home_team_abbrev": "NYM", - "away_team_abbrev": "BOS", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_tb_0712", - "sport": "MLB", - "season": "2026", - "date": "2026-07-12", - "time": "17:40", - "home_team": "Tampa Bay Rays", - "away_team": "Seattle Mariners", - "home_team_abbrev": "TB", - "away_team_abbrev": "SEA", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_det_0712", - "sport": "MLB", - "season": "2026", - "date": "2026-07-12", - "time": "17:40", - "home_team": "Detroit Tigers", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "DET", - "away_team_abbrev": "PHI", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_mia_0712", - "sport": "MLB", - "season": "2026", - "date": "2026-07-12", - "time": "17:40", - "home_team": "Miami Marlins", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "MIA", - "away_team_abbrev": "CLE", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_min_0712", - "sport": "MLB", - "season": "2026", - "date": "2026-07-12", - "time": "18:10", - "home_team": "Minnesota Twins", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "MIN", - "away_team_abbrev": "LAA", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_cws_0712", - "sport": "MLB", - "season": "2026", - "date": "2026-07-12", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Athletics", - "home_team_abbrev": "CWS", - "away_team_abbrev": "ATH", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_stl_0712", - "sport": "MLB", - "season": "2026", - "date": "2026-07-12", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Atlanta Braves", - "home_team_abbrev": "STL", - "away_team_abbrev": "ATL", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_tex_0712", - "sport": "MLB", - "season": "2026", - "date": "2026-07-12", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "Houston Astros", - "home_team_abbrev": "TEX", - "away_team_abbrev": "HOU", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_sf_0712", - "sport": "MLB", - "season": "2026", - "date": "2026-07-12", - "time": "20:05", - "home_team": "San Francisco Giants", - "away_team": "Colorado Rockies", - "home_team_abbrev": "SF", - "away_team_abbrev": "COL", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_lad_0712", - "sport": "MLB", - "season": "2026", - "date": "2026-07-12", - "time": "20:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "LAD", - "away_team_abbrev": "AZ", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_sd_0712", - "sport": "MLB", - "season": "2026", - "date": "2026-07-12", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "SD", - "away_team_abbrev": "TOR", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_phi_0716", - "sport": "MLB", - "season": "2026", - "date": "2026-07-16", - "time": "23:10", - "home_team": "Philadelphia Phillies", - "away_team": "New York Mets", - "home_team_abbrev": "PHI", - "away_team_abbrev": "NYM", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_nyy_0717", - "sport": "MLB", - "season": "2026", - "date": "2026-07-17", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "NYY", - "away_team_abbrev": "LAD", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_tor_0717", - "sport": "MLB", - "season": "2026", - "date": "2026-07-17", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Chicago White Sox", - "home_team_abbrev": "TOR", - "away_team_abbrev": "CWS", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_bos_0717", - "sport": "MLB", - "season": "2026", - "date": "2026-07-17", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TB", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_atl_0717", - "sport": "MLB", - "season": "2026", - "date": "2026-07-17", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Texas Rangers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "TEX", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_mil_0717", - "sport": "MLB", - "season": "2026", - "date": "2026-07-17", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Miami Marlins", - "home_team_abbrev": "MIL", - "away_team_abbrev": "MIA", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_kc_0717", - "sport": "MLB", - "season": "2026", - "date": "2026-07-17", - "time": "00:10", - "home_team": "Kansas City Royals", - "away_team": "San Diego Padres", - "home_team_abbrev": "KC", - "away_team_abbrev": "SD", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_col_0717", - "sport": "MLB", - "season": "2026", - "date": "2026-07-17", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "COL", - "away_team_abbrev": "CIN", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_laa_0717", - "sport": "MLB", - "season": "2026", - "date": "2026-07-17", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Detroit Tigers", - "home_team_abbrev": "LAA", - "away_team_abbrev": "DET", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_ath_0717", - "sport": "MLB", - "season": "2026", - "date": "2026-07-17", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Washington Nationals", - "home_team_abbrev": "ATH", - "away_team_abbrev": "WSH", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_az_0717", - "sport": "MLB", - "season": "2026", - "date": "2026-07-17", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "AZ", - "away_team_abbrev": "STL", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_sea_0717", - "sport": "MLB", - "season": "2026", - "date": "2026-07-17", - "time": "02:10", - "home_team": "Seattle Mariners", - "away_team": "San Francisco Giants", - "home_team_abbrev": "SEA", - "away_team_abbrev": "SF", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_cle_0717", - "sport": "MLB", - "season": "2026", - "date": "2026-07-17", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "CLE", - "away_team_abbrev": "PIT", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_hou_0717", - "sport": "MLB", - "season": "2026", - "date": "2026-07-17", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "HOU", - "away_team_abbrev": "BAL", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_chc_0717", - "sport": "MLB", - "season": "2026", - "date": "2026-07-17", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Minnesota Twins", - "home_team_abbrev": "CHC", - "away_team_abbrev": "MIN", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_tor_0718", - "sport": "MLB", - "season": "2026", - "date": "2026-07-18", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "Chicago White Sox", - "home_team_abbrev": "TOR", - "away_team_abbrev": "CWS", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_col_0718", - "sport": "MLB", - "season": "2026", - "date": "2026-07-18", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "COL", - "away_team_abbrev": "CIN", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_phi_0718", - "sport": "MLB", - "season": "2026", - "date": "2026-07-18", - "time": "20:05", - "home_team": "Philadelphia Phillies", - "away_team": "New York Mets", - "home_team_abbrev": "PHI", - "away_team_abbrev": "NYM", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_kc_0718", - "sport": "MLB", - "season": "2026", - "date": "2026-07-18", - "time": "20:10", - "home_team": "Kansas City Royals", - "away_team": "San Diego Padres", - "home_team_abbrev": "KC", - "away_team_abbrev": "SD", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_az_0718", - "sport": "MLB", - "season": "2026", - "date": "2026-07-18", - "time": "20:10", - "home_team": "Arizona Diamondbacks", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "AZ", - "away_team_abbrev": "STL", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_bos_0718", - "sport": "MLB", - "season": "2026", - "date": "2026-07-18", - "time": "20:10", - "home_team": "Boston Red Sox", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TB", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_atl_0718", - "sport": "MLB", - "season": "2026", - "date": "2026-07-18", - "time": "20:10", - "home_team": "Atlanta Braves", - "away_team": "Texas Rangers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "TEX", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_mil_0718", - "sport": "MLB", - "season": "2026", - "date": "2026-07-18", - "time": "20:10", - "home_team": "Milwaukee Brewers", - "away_team": "Miami Marlins", - "home_team_abbrev": "MIL", - "away_team_abbrev": "MIA", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_sea_0718", - "sport": "MLB", - "season": "2026", - "date": "2026-07-18", - "time": "23:15", - "home_team": "Seattle Mariners", - "away_team": "San Francisco Giants", - "home_team_abbrev": "SEA", - "away_team_abbrev": "SF", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_nyy_0718", - "sport": "MLB", - "season": "2026", - "date": "2026-07-18", - "time": "23:15", - "home_team": "New York Yankees", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "NYY", - "away_team_abbrev": "LAD", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_ath_0718", - "sport": "MLB", - "season": "2026", - "date": "2026-07-18", - "time": "02:05", - "home_team": "Athletics", - "away_team": "Washington Nationals", - "home_team_abbrev": "ATH", - "away_team_abbrev": "WSH", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_laa_0718", - "sport": "MLB", - "season": "2026", - "date": "2026-07-18", - "time": "02:07", - "home_team": "Los Angeles Angels", - "away_team": "Detroit Tigers", - "home_team_abbrev": "LAA", - "away_team_abbrev": "DET", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_cle_0718", - "sport": "MLB", - "season": "2026", - "date": "2026-07-18", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "CLE", - "away_team_abbrev": "PIT", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_hou_0718", - "sport": "MLB", - "season": "2026", - "date": "2026-07-18", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "HOU", - "away_team_abbrev": "BAL", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_chc_0718", - "sport": "MLB", - "season": "2026", - "date": "2026-07-18", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Minnesota Twins", - "home_team_abbrev": "CHC", - "away_team_abbrev": "MIN", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_bos_0719", - "sport": "MLB", - "season": "2026", - "date": "2026-07-19", - "time": "17:35", - "home_team": "Boston Red Sox", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TB", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_phi_0719", - "sport": "MLB", - "season": "2026", - "date": "2026-07-19", - "time": "17:35", - "home_team": "Philadelphia Phillies", - "away_team": "New York Mets", - "home_team_abbrev": "PHI", - "away_team_abbrev": "NYM", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_atl_0719", - "sport": "MLB", - "season": "2026", - "date": "2026-07-19", - "time": "17:35", - "home_team": "Atlanta Braves", - "away_team": "Texas Rangers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "TEX", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_tor_0719", - "sport": "MLB", - "season": "2026", - "date": "2026-07-19", - "time": "17:37", - "home_team": "Toronto Blue Jays", - "away_team": "Chicago White Sox", - "home_team_abbrev": "TOR", - "away_team_abbrev": "CWS", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_kc_0719", - "sport": "MLB", - "season": "2026", - "date": "2026-07-19", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "San Diego Padres", - "home_team_abbrev": "KC", - "away_team_abbrev": "SD", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_mil_0719", - "sport": "MLB", - "season": "2026", - "date": "2026-07-19", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "Miami Marlins", - "home_team_abbrev": "MIL", - "away_team_abbrev": "MIA", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_col_0719", - "sport": "MLB", - "season": "2026", - "date": "2026-07-19", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "COL", - "away_team_abbrev": "CIN", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_ath_0719", - "sport": "MLB", - "season": "2026", - "date": "2026-07-19", - "time": "20:05", - "home_team": "Athletics", - "away_team": "Washington Nationals", - "home_team_abbrev": "ATH", - "away_team_abbrev": "WSH", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_laa_0719", - "sport": "MLB", - "season": "2026", - "date": "2026-07-19", - "time": "20:07", - "home_team": "Los Angeles Angels", - "away_team": "Detroit Tigers", - "home_team_abbrev": "LAA", - "away_team_abbrev": "DET", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_sea_0719", - "sport": "MLB", - "season": "2026", - "date": "2026-07-19", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "San Francisco Giants", - "home_team_abbrev": "SEA", - "away_team_abbrev": "SF", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_az_0719", - "sport": "MLB", - "season": "2026", - "date": "2026-07-19", - "time": "20:10", - "home_team": "Arizona Diamondbacks", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "AZ", - "away_team_abbrev": "STL", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_nyy_0719", - "sport": "MLB", - "season": "2026", - "date": "2026-07-19", - "time": "23:20", - "home_team": "New York Yankees", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "NYY", - "away_team_abbrev": "LAD", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_cle_0719", - "sport": "MLB", - "season": "2026", - "date": "2026-07-19", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "CLE", - "away_team_abbrev": "PIT", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_hou_0719", - "sport": "MLB", - "season": "2026", - "date": "2026-07-19", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "HOU", - "away_team_abbrev": "BAL", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_chc_0719", - "sport": "MLB", - "season": "2026", - "date": "2026-07-19", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Minnesota Twins", - "home_team_abbrev": "CHC", - "away_team_abbrev": "MIN", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_phi_0720", - "sport": "MLB", - "season": "2026", - "date": "2026-07-20", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "LAD", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_nyy_0720", - "sport": "MLB", - "season": "2026", - "date": "2026-07-20", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "NYY", - "away_team_abbrev": "PIT", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_tor_0720", - "sport": "MLB", - "season": "2026", - "date": "2026-07-20", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "TOR", - "away_team_abbrev": "TB", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_bos_0720", - "sport": "MLB", - "season": "2026", - "date": "2026-07-20", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "BOS", - "away_team_abbrev": "BAL", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_atl_0720", - "sport": "MLB", - "season": "2026", - "date": "2026-07-20", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "San Diego Padres", - "home_team_abbrev": "ATL", - "away_team_abbrev": "SD", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_kc_0720", - "sport": "MLB", - "season": "2026", - "date": "2026-07-20", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "San Francisco Giants", - "home_team_abbrev": "KC", - "away_team_abbrev": "SF", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_mil_0720", - "sport": "MLB", - "season": "2026", - "date": "2026-07-20", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "New York Mets", - "home_team_abbrev": "MIL", - "away_team_abbrev": "NYM", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_tex_0720", - "sport": "MLB", - "season": "2026", - "date": "2026-07-20", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Chicago White Sox", - "home_team_abbrev": "TEX", - "away_team_abbrev": "CWS", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_col_0720", - "sport": "MLB", - "season": "2026", - "date": "2026-07-20", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Washington Nationals", - "home_team_abbrev": "COL", - "away_team_abbrev": "WSH", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_laa_0720", - "sport": "MLB", - "season": "2026", - "date": "2026-07-20", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "LAA", - "away_team_abbrev": "STL", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_az_0720", - "sport": "MLB", - "season": "2026", - "date": "2026-07-20", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Athletics", - "home_team_abbrev": "AZ", - "away_team_abbrev": "ATH", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_sea_0720", - "sport": "MLB", - "season": "2026", - "date": "2026-07-20", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "SEA", - "away_team_abbrev": "CIN", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_cle_0720", - "sport": "MLB", - "season": "2026", - "date": "2026-07-20", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Minnesota Twins", - "home_team_abbrev": "CLE", - "away_team_abbrev": "MIN", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_chc_0720", - "sport": "MLB", - "season": "2026", - "date": "2026-07-20", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Detroit Tigers", - "home_team_abbrev": "CHC", - "away_team_abbrev": "DET", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_hou_0720", - "sport": "MLB", - "season": "2026", - "date": "2026-07-20", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Miami Marlins", - "home_team_abbrev": "HOU", - "away_team_abbrev": "MIA", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_phi_0721", - "sport": "MLB", - "season": "2026", - "date": "2026-07-21", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "LAD", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_nyy_0721", - "sport": "MLB", - "season": "2026", - "date": "2026-07-21", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "NYY", - "away_team_abbrev": "PIT", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_tor_0721", - "sport": "MLB", - "season": "2026", - "date": "2026-07-21", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "TOR", - "away_team_abbrev": "TB", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_bos_0721", - "sport": "MLB", - "season": "2026", - "date": "2026-07-21", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "BOS", - "away_team_abbrev": "BAL", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_atl_0721", - "sport": "MLB", - "season": "2026", - "date": "2026-07-21", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "San Diego Padres", - "home_team_abbrev": "ATL", - "away_team_abbrev": "SD", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_kc_0721", - "sport": "MLB", - "season": "2026", - "date": "2026-07-21", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "San Francisco Giants", - "home_team_abbrev": "KC", - "away_team_abbrev": "SF", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_mil_0721", - "sport": "MLB", - "season": "2026", - "date": "2026-07-21", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "New York Mets", - "home_team_abbrev": "MIL", - "away_team_abbrev": "NYM", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_tex_0721", - "sport": "MLB", - "season": "2026", - "date": "2026-07-21", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Chicago White Sox", - "home_team_abbrev": "TEX", - "away_team_abbrev": "CWS", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_col_0721", - "sport": "MLB", - "season": "2026", - "date": "2026-07-21", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Washington Nationals", - "home_team_abbrev": "COL", - "away_team_abbrev": "WSH", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_laa_0721", - "sport": "MLB", - "season": "2026", - "date": "2026-07-21", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "LAA", - "away_team_abbrev": "STL", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_az_0721", - "sport": "MLB", - "season": "2026", - "date": "2026-07-21", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Athletics", - "home_team_abbrev": "AZ", - "away_team_abbrev": "ATH", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_sea_0721", - "sport": "MLB", - "season": "2026", - "date": "2026-07-21", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "SEA", - "away_team_abbrev": "CIN", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_cle_0721", - "sport": "MLB", - "season": "2026", - "date": "2026-07-21", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Minnesota Twins", - "home_team_abbrev": "CLE", - "away_team_abbrev": "MIN", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_chc_0721", - "sport": "MLB", - "season": "2026", - "date": "2026-07-21", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Detroit Tigers", - "home_team_abbrev": "CHC", - "away_team_abbrev": "DET", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_hou_0721", - "sport": "MLB", - "season": "2026", - "date": "2026-07-21", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Miami Marlins", - "home_team_abbrev": "HOU", - "away_team_abbrev": "MIA", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_nyy_0722", - "sport": "MLB", - "season": "2026", - "date": "2026-07-22", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "NYY", - "away_team_abbrev": "PIT", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_kc_0722", - "sport": "MLB", - "season": "2026", - "date": "2026-07-22", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "San Francisco Giants", - "home_team_abbrev": "KC", - "away_team_abbrev": "SF", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_mil_0722", - "sport": "MLB", - "season": "2026", - "date": "2026-07-22", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "New York Mets", - "home_team_abbrev": "MIL", - "away_team_abbrev": "NYM", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_col_0722", - "sport": "MLB", - "season": "2026", - "date": "2026-07-22", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Washington Nationals", - "home_team_abbrev": "COL", - "away_team_abbrev": "WSH", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_az_0722", - "sport": "MLB", - "season": "2026", - "date": "2026-07-22", - "time": "19:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Athletics", - "home_team_abbrev": "AZ", - "away_team_abbrev": "ATH", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_sea_0722", - "sport": "MLB", - "season": "2026", - "date": "2026-07-22", - "time": "19:40", - "home_team": "Seattle Mariners", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "SEA", - "away_team_abbrev": "CIN", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_laa_0722", - "sport": "MLB", - "season": "2026", - "date": "2026-07-22", - "time": "20:07", - "home_team": "Los Angeles Angels", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "LAA", - "away_team_abbrev": "STL", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_phi_0722", - "sport": "MLB", - "season": "2026", - "date": "2026-07-22", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "LAD", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_tor_0722", - "sport": "MLB", - "season": "2026", - "date": "2026-07-22", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "TOR", - "away_team_abbrev": "TB", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_bos_0722", - "sport": "MLB", - "season": "2026", - "date": "2026-07-22", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "BOS", - "away_team_abbrev": "BAL", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_atl_0722", - "sport": "MLB", - "season": "2026", - "date": "2026-07-22", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "San Diego Padres", - "home_team_abbrev": "ATL", - "away_team_abbrev": "SD", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_tex_0722", - "sport": "MLB", - "season": "2026", - "date": "2026-07-22", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Chicago White Sox", - "home_team_abbrev": "TEX", - "away_team_abbrev": "CWS", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_cle_0722", - "sport": "MLB", - "season": "2026", - "date": "2026-07-22", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Minnesota Twins", - "home_team_abbrev": "CLE", - "away_team_abbrev": "MIN", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_chc_0722", - "sport": "MLB", - "season": "2026", - "date": "2026-07-22", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Detroit Tigers", - "home_team_abbrev": "CHC", - "away_team_abbrev": "DET", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_hou_0722", - "sport": "MLB", - "season": "2026", - "date": "2026-07-22", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Miami Marlins", - "home_team_abbrev": "HOU", - "away_team_abbrev": "MIA", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_atl_0723", - "sport": "MLB", - "season": "2026", - "date": "2026-07-23", - "time": "16:15", - "home_team": "Atlanta Braves", - "away_team": "San Diego Padres", - "home_team_abbrev": "ATL", - "away_team_abbrev": "SD", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_tor_0723", - "sport": "MLB", - "season": "2026", - "date": "2026-07-23", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "TOR", - "away_team_abbrev": "TB", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_det_0723", - "sport": "MLB", - "season": "2026", - "date": "2026-07-23", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Kansas City Royals", - "home_team_abbrev": "DET", - "away_team_abbrev": "KC", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_cle_0723", - "sport": "MLB", - "season": "2026", - "date": "2026-07-23", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Minnesota Twins", - "home_team_abbrev": "CLE", - "away_team_abbrev": "MIN", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_mil_0724", - "sport": "MLB", - "season": "2026", - "date": "2026-07-24", - "time": "20:10", - "home_team": "Milwaukee Brewers", - "away_team": "Colorado Rockies", - "home_team_abbrev": "MIL", - "away_team_abbrev": "COL", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_det_0724", - "sport": "MLB", - "season": "2026", - "date": "2026-07-24", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Kansas City Royals", - "home_team_abbrev": "DET", - "away_team_abbrev": "KC", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_pit_0724", - "sport": "MLB", - "season": "2026", - "date": "2026-07-24", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Chicago Cubs", - "home_team_abbrev": "PIT", - "away_team_abbrev": "CHC", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_phi_0724", - "sport": "MLB", - "season": "2026", - "date": "2026-07-24", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "New York Yankees", - "home_team_abbrev": "PHI", - "away_team_abbrev": "NYY", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_wsh_0724", - "sport": "MLB", - "season": "2026", - "date": "2026-07-24", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "WSH", - "away_team_abbrev": "AZ", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_bal_0724", - "sport": "MLB", - "season": "2026", - "date": "2026-07-24", - "time": "23:05", - "home_team": "Baltimore Orioles", - "away_team": "Atlanta Braves", - "home_team_abbrev": "BAL", - "away_team_abbrev": "ATL", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_nym_0724", - "sport": "MLB", - "season": "2026", - "date": "2026-07-24", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "NYM", - "away_team_abbrev": "LAD", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_tb_0724", - "sport": "MLB", - "season": "2026", - "date": "2026-07-24", - "time": "23:10", - "home_team": "Tampa Bay Rays", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "TB", - "away_team_abbrev": "CLE", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_bos_0724", - "sport": "MLB", - "season": "2026", - "date": "2026-07-24", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TOR", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_mia_0724", - "sport": "MLB", - "season": "2026", - "date": "2026-07-24", - "time": "23:10", - "home_team": "Miami Marlins", - "away_team": "San Diego Padres", - "home_team_abbrev": "MIA", - "away_team_abbrev": "SD", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_cws_0724", - "sport": "MLB", - "season": "2026", - "date": "2026-07-24", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Houston Astros", - "home_team_abbrev": "CWS", - "away_team_abbrev": "HOU", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_tex_0724", - "sport": "MLB", - "season": "2026", - "date": "2026-07-24", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Seattle Mariners", - "home_team_abbrev": "TEX", - "away_team_abbrev": "SEA", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_min_0724", - "sport": "MLB", - "season": "2026", - "date": "2026-07-24", - "time": "00:10", - "home_team": "Minnesota Twins", - "away_team": "Athletics", - "home_team_abbrev": "MIN", - "away_team_abbrev": "ATH", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_stl_0724", - "sport": "MLB", - "season": "2026", - "date": "2026-07-24", - "time": "00:15", - "home_team": "St. Louis Cardinals", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "STL", - "away_team_abbrev": "CIN", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_sf_0724", - "sport": "MLB", - "season": "2026", - "date": "2026-07-24", - "time": "02:15", - "home_team": "San Francisco Giants", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "SF", - "away_team_abbrev": "LAA", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_det_0725", - "sport": "MLB", - "season": "2026", - "date": "2026-07-25", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Kansas City Royals", - "home_team_abbrev": "DET", - "away_team_abbrev": "KC", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_wsh_0725", - "sport": "MLB", - "season": "2026", - "date": "2026-07-25", - "time": "20:05", - "home_team": "Washington Nationals", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "WSH", - "away_team_abbrev": "AZ", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_bos_0725", - "sport": "MLB", - "season": "2026", - "date": "2026-07-25", - "time": "20:10", - "home_team": "Boston Red Sox", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TOR", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_mia_0725", - "sport": "MLB", - "season": "2026", - "date": "2026-07-25", - "time": "20:10", - "home_team": "Miami Marlins", - "away_team": "San Diego Padres", - "home_team_abbrev": "MIA", - "away_team_abbrev": "SD", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_phi_0725", - "sport": "MLB", - "season": "2026", - "date": "2026-07-25", - "time": "22:05", - "home_team": "Philadelphia Phillies", - "away_team": "New York Yankees", - "home_team_abbrev": "PHI", - "away_team_abbrev": "NYY", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_tb_0725", - "sport": "MLB", - "season": "2026", - "date": "2026-07-25", - "time": "22:10", - "home_team": "Tampa Bay Rays", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "TB", - "away_team_abbrev": "CLE", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_pit_0725", - "sport": "MLB", - "season": "2026", - "date": "2026-07-25", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Chicago Cubs", - "home_team_abbrev": "PIT", - "away_team_abbrev": "CHC", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_bal_0725", - "sport": "MLB", - "season": "2026", - "date": "2026-07-25", - "time": "23:05", - "home_team": "Baltimore Orioles", - "away_team": "Atlanta Braves", - "home_team_abbrev": "BAL", - "away_team_abbrev": "ATL", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_min_0725", - "sport": "MLB", - "season": "2026", - "date": "2026-07-25", - "time": "23:10", - "home_team": "Minnesota Twins", - "away_team": "Athletics", - "home_team_abbrev": "MIN", - "away_team_abbrev": "ATH", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_cws_0725", - "sport": "MLB", - "season": "2026", - "date": "2026-07-25", - "time": "23:10", - "home_team": "Chicago White Sox", - "away_team": "Houston Astros", - "home_team_abbrev": "CWS", - "away_team_abbrev": "HOU", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_mil_0725", - "sport": "MLB", - "season": "2026", - "date": "2026-07-25", - "time": "23:10", - "home_team": "Milwaukee Brewers", - "away_team": "Colorado Rockies", - "home_team_abbrev": "MIL", - "away_team_abbrev": "COL", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_nym_0725", - "sport": "MLB", - "season": "2026", - "date": "2026-07-25", - "time": "23:15", - "home_team": "New York Mets", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "NYM", - "away_team_abbrev": "LAD", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_stl_0725", - "sport": "MLB", - "season": "2026", - "date": "2026-07-25", - "time": "23:15", - "home_team": "St. Louis Cardinals", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "STL", - "away_team_abbrev": "CIN", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_tex_0725", - "sport": "MLB", - "season": "2026", - "date": "2026-07-25", - "time": "23:15", - "home_team": "Texas Rangers", - "away_team": "Seattle Mariners", - "home_team_abbrev": "TEX", - "away_team_abbrev": "SEA", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_sf_0725", - "sport": "MLB", - "season": "2026", - "date": "2026-07-25", - "time": "10:33", - "home_team": "San Francisco Giants", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "SF", - "away_team_abbrev": "LAA", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_wsh_0726", - "sport": "MLB", - "season": "2026", - "date": "2026-07-26", - "time": "17:35", - "home_team": "Washington Nationals", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "WSH", - "away_team_abbrev": "AZ", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_pit_0726", - "sport": "MLB", - "season": "2026", - "date": "2026-07-26", - "time": "17:35", - "home_team": "Pittsburgh Pirates", - "away_team": "Chicago Cubs", - "home_team_abbrev": "PIT", - "away_team_abbrev": "CHC", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_bos_0726", - "sport": "MLB", - "season": "2026", - "date": "2026-07-26", - "time": "17:35", - "home_team": "Boston Red Sox", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TOR", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_bal_0726", - "sport": "MLB", - "season": "2026", - "date": "2026-07-26", - "time": "17:35", - "home_team": "Baltimore Orioles", - "away_team": "Atlanta Braves", - "home_team_abbrev": "BAL", - "away_team_abbrev": "ATL", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_phi_0726", - "sport": "MLB", - "season": "2026", - "date": "2026-07-26", - "time": "17:35", - "home_team": "Philadelphia Phillies", - "away_team": "New York Yankees", - "home_team_abbrev": "PHI", - "away_team_abbrev": "NYY", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_det_0726", - "sport": "MLB", - "season": "2026", - "date": "2026-07-26", - "time": "17:40", - "home_team": "Detroit Tigers", - "away_team": "Kansas City Royals", - "home_team_abbrev": "DET", - "away_team_abbrev": "KC", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_nym_0726", - "sport": "MLB", - "season": "2026", - "date": "2026-07-26", - "time": "17:40", - "home_team": "New York Mets", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "NYM", - "away_team_abbrev": "LAD", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_tb_0726", - "sport": "MLB", - "season": "2026", - "date": "2026-07-26", - "time": "17:40", - "home_team": "Tampa Bay Rays", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "TB", - "away_team_abbrev": "CLE", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_mia_0726", - "sport": "MLB", - "season": "2026", - "date": "2026-07-26", - "time": "17:40", - "home_team": "Miami Marlins", - "away_team": "San Diego Padres", - "home_team_abbrev": "MIA", - "away_team_abbrev": "SD", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_min_0726", - "sport": "MLB", - "season": "2026", - "date": "2026-07-26", - "time": "18:10", - "home_team": "Minnesota Twins", - "away_team": "Athletics", - "home_team_abbrev": "MIN", - "away_team_abbrev": "ATH", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_cws_0726", - "sport": "MLB", - "season": "2026", - "date": "2026-07-26", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Houston Astros", - "home_team_abbrev": "CWS", - "away_team_abbrev": "HOU", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_mil_0726", - "sport": "MLB", - "season": "2026", - "date": "2026-07-26", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "Colorado Rockies", - "home_team_abbrev": "MIL", - "away_team_abbrev": "COL", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_stl_0726", - "sport": "MLB", - "season": "2026", - "date": "2026-07-26", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "STL", - "away_team_abbrev": "CIN", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_tex_0726", - "sport": "MLB", - "season": "2026", - "date": "2026-07-26", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "Seattle Mariners", - "home_team_abbrev": "TEX", - "away_team_abbrev": "SEA", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_sf_0726", - "sport": "MLB", - "season": "2026", - "date": "2026-07-26", - "time": "20:05", - "home_team": "San Francisco Giants", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "SF", - "away_team_abbrev": "LAA", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_tex_0727", - "sport": "MLB", - "season": "2026", - "date": "2026-07-27", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "Seattle Mariners", - "home_team_abbrev": "TEX", - "away_team_abbrev": "SEA", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_det_0727", - "sport": "MLB", - "season": "2026", - "date": "2026-07-27", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "DET", - "away_team_abbrev": "BAL", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_pit_0727", - "sport": "MLB", - "season": "2026", - "date": "2026-07-27", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "PIT", - "away_team_abbrev": "AZ", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_mia_0727", - "sport": "MLB", - "season": "2026", - "date": "2026-07-27", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "MIA", - "away_team_abbrev": "PHI", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_wsh_0727", - "sport": "MLB", - "season": "2026", - "date": "2026-07-27", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "WSH", - "away_team_abbrev": "TOR", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_cin_0727", - "sport": "MLB", - "season": "2026", - "date": "2026-07-27", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "CIN", - "away_team_abbrev": "CLE", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_nym_0727", - "sport": "MLB", - "season": "2026", - "date": "2026-07-27", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Atlanta Braves", - "home_team_abbrev": "NYM", - "away_team_abbrev": "ATL", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_cws_0727", - "sport": "MLB", - "season": "2026", - "date": "2026-07-27", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "New York Yankees", - "home_team_abbrev": "CWS", - "away_team_abbrev": "NYY", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_stl_0727", - "sport": "MLB", - "season": "2026", - "date": "2026-07-27", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Chicago Cubs", - "home_team_abbrev": "STL", - "away_team_abbrev": "CHC", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_laa_0727", - "sport": "MLB", - "season": "2026", - "date": "2026-07-27", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Houston Astros", - "home_team_abbrev": "LAA", - "away_team_abbrev": "HOU", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_ath_0727", - "sport": "MLB", - "season": "2026", - "date": "2026-07-27", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Boston Red Sox", - "home_team_abbrev": "ATH", - "away_team_abbrev": "BOS", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_sf_0727", - "sport": "MLB", - "season": "2026", - "date": "2026-07-27", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "SF", - "away_team_abbrev": "MIL", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_det_0728", - "sport": "MLB", - "season": "2026", - "date": "2026-07-28", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "DET", - "away_team_abbrev": "BAL", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_pit_0728", - "sport": "MLB", - "season": "2026", - "date": "2026-07-28", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "PIT", - "away_team_abbrev": "AZ", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_tb_0728", - "sport": "MLB", - "season": "2026", - "date": "2026-07-28", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Texas Rangers", - "home_team_abbrev": "TB", - "away_team_abbrev": "TEX", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_mia_0728", - "sport": "MLB", - "season": "2026", - "date": "2026-07-28", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "MIA", - "away_team_abbrev": "PHI", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_wsh_0728", - "sport": "MLB", - "season": "2026", - "date": "2026-07-28", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "WSH", - "away_team_abbrev": "TOR", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_cin_0728", - "sport": "MLB", - "season": "2026", - "date": "2026-07-28", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "CIN", - "away_team_abbrev": "CLE", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_nym_0728", - "sport": "MLB", - "season": "2026", - "date": "2026-07-28", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Atlanta Braves", - "home_team_abbrev": "NYM", - "away_team_abbrev": "ATL", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_min_0728", - "sport": "MLB", - "season": "2026", - "date": "2026-07-28", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Kansas City Royals", - "home_team_abbrev": "MIN", - "away_team_abbrev": "KC", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_cws_0728", - "sport": "MLB", - "season": "2026", - "date": "2026-07-28", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "New York Yankees", - "home_team_abbrev": "CWS", - "away_team_abbrev": "NYY", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_stl_0728", - "sport": "MLB", - "season": "2026", - "date": "2026-07-28", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Chicago Cubs", - "home_team_abbrev": "STL", - "away_team_abbrev": "CHC", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_laa_0728", - "sport": "MLB", - "season": "2026", - "date": "2026-07-28", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Houston Astros", - "home_team_abbrev": "LAA", - "away_team_abbrev": "HOU", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_ath_0728", - "sport": "MLB", - "season": "2026", - "date": "2026-07-28", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Boston Red Sox", - "home_team_abbrev": "ATH", - "away_team_abbrev": "BOS", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_sd_0728", - "sport": "MLB", - "season": "2026", - "date": "2026-07-28", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Colorado Rockies", - "home_team_abbrev": "SD", - "away_team_abbrev": "COL", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_sf_0728", - "sport": "MLB", - "season": "2026", - "date": "2026-07-28", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "SF", - "away_team_abbrev": "MIL", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_lad_0728", - "sport": "MLB", - "season": "2026", - "date": "2026-07-28", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Seattle Mariners", - "home_team_abbrev": "LAD", - "away_team_abbrev": "SEA", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_mia_0729", - "sport": "MLB", - "season": "2026", - "date": "2026-07-29", - "time": "16:10", - "home_team": "Miami Marlins", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "MIA", - "away_team_abbrev": "PHI", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_pit_0729", - "sport": "MLB", - "season": "2026", - "date": "2026-07-29", - "time": "16:35", - "home_team": "Pittsburgh Pirates", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "PIT", - "away_team_abbrev": "AZ", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_wsh_0729", - "sport": "MLB", - "season": "2026", - "date": "2026-07-29", - "time": "17:05", - "home_team": "Washington Nationals", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "WSH", - "away_team_abbrev": "TOR", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_det_0729", - "sport": "MLB", - "season": "2026", - "date": "2026-07-29", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "DET", - "away_team_abbrev": "BAL", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_nym_0729", - "sport": "MLB", - "season": "2026", - "date": "2026-07-29", - "time": "17:10", - "home_team": "New York Mets", - "away_team": "Atlanta Braves", - "home_team_abbrev": "NYM", - "away_team_abbrev": "ATL", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_sf_0729", - "sport": "MLB", - "season": "2026", - "date": "2026-07-29", - "time": "19:45", - "home_team": "San Francisco Giants", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "SF", - "away_team_abbrev": "MIL", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_sd_0729", - "sport": "MLB", - "season": "2026", - "date": "2026-07-29", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "Colorado Rockies", - "home_team_abbrev": "SD", - "away_team_abbrev": "COL", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_tb_0729", - "sport": "MLB", - "season": "2026", - "date": "2026-07-29", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Texas Rangers", - "home_team_abbrev": "TB", - "away_team_abbrev": "TEX", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_cin_0729", - "sport": "MLB", - "season": "2026", - "date": "2026-07-29", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "CIN", - "away_team_abbrev": "CLE", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_min_0729", - "sport": "MLB", - "season": "2026", - "date": "2026-07-29", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Kansas City Royals", - "home_team_abbrev": "MIN", - "away_team_abbrev": "KC", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_cws_0729", - "sport": "MLB", - "season": "2026", - "date": "2026-07-29", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "New York Yankees", - "home_team_abbrev": "CWS", - "away_team_abbrev": "NYY", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_stl_0729", - "sport": "MLB", - "season": "2026", - "date": "2026-07-29", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Chicago Cubs", - "home_team_abbrev": "STL", - "away_team_abbrev": "CHC", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_laa_0729", - "sport": "MLB", - "season": "2026", - "date": "2026-07-29", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Houston Astros", - "home_team_abbrev": "LAA", - "away_team_abbrev": "HOU", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_ath_0729", - "sport": "MLB", - "season": "2026", - "date": "2026-07-29", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Boston Red Sox", - "home_team_abbrev": "ATH", - "away_team_abbrev": "BOS", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_lad_0729", - "sport": "MLB", - "season": "2026", - "date": "2026-07-29", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Seattle Mariners", - "home_team_abbrev": "LAD", - "away_team_abbrev": "SEA", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_tb_0730", - "sport": "MLB", - "season": "2026", - "date": "2026-07-30", - "time": "16:10", - "home_team": "Tampa Bay Rays", - "away_team": "Texas Rangers", - "home_team_abbrev": "TB", - "away_team_abbrev": "TEX", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_min_0730", - "sport": "MLB", - "season": "2026", - "date": "2026-07-30", - "time": "17:40", - "home_team": "Minnesota Twins", - "away_team": "Kansas City Royals", - "home_team_abbrev": "MIN", - "away_team_abbrev": "KC", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_cws_0730", - "sport": "MLB", - "season": "2026", - "date": "2026-07-30", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "New York Yankees", - "home_team_abbrev": "CWS", - "away_team_abbrev": "NYY", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_stl_0730", - "sport": "MLB", - "season": "2026", - "date": "2026-07-30", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Chicago Cubs", - "home_team_abbrev": "STL", - "away_team_abbrev": "CHC", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_cin_0730", - "sport": "MLB", - "season": "2026", - "date": "2026-07-30", - "time": "23:10", - "home_team": "Cincinnati Reds", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "CIN", - "away_team_abbrev": "PIT", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_nym_0730", - "sport": "MLB", - "season": "2026", - "date": "2026-07-30", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Miami Marlins", - "home_team_abbrev": "NYM", - "away_team_abbrev": "MIA", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_atl_0730", - "sport": "MLB", - "season": "2026", - "date": "2026-07-30", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Washington Nationals", - "home_team_abbrev": "ATL", - "away_team_abbrev": "WSH", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_ath_0730", - "sport": "MLB", - "season": "2026", - "date": "2026-07-30", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Boston Red Sox", - "home_team_abbrev": "ATH", - "away_team_abbrev": "BOS", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_sd_0730", - "sport": "MLB", - "season": "2026", - "date": "2026-07-30", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "San Francisco Giants", - "home_team_abbrev": "SD", - "away_team_abbrev": "SF", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_lad_0730", - "sport": "MLB", - "season": "2026", - "date": "2026-07-30", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Seattle Mariners", - "home_team_abbrev": "LAD", - "away_team_abbrev": "SEA", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_cin_0731", - "sport": "MLB", - "season": "2026", - "date": "2026-07-31", - "time": "22:10", - "home_team": "Cincinnati Reds", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "CIN", - "away_team_abbrev": "PIT", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_bal_0731", - "sport": "MLB", - "season": "2026", - "date": "2026-07-31", - "time": "23:05", - "home_team": "Baltimore Orioles", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "BAL", - "away_team_abbrev": "PHI", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_tor_0731", - "sport": "MLB", - "season": "2026", - "date": "2026-07-31", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "TOR", - "away_team_abbrev": "STL", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_tb_0731", - "sport": "MLB", - "season": "2026", - "date": "2026-07-31", - "time": "23:10", - "home_team": "Tampa Bay Rays", - "away_team": "Chicago White Sox", - "home_team_abbrev": "TB", - "away_team_abbrev": "CWS", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_nym_0731", - "sport": "MLB", - "season": "2026", - "date": "2026-07-31", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Miami Marlins", - "home_team_abbrev": "NYM", - "away_team_abbrev": "MIA", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_atl_0731", - "sport": "MLB", - "season": "2026", - "date": "2026-07-31", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Washington Nationals", - "home_team_abbrev": "ATL", - "away_team_abbrev": "WSH", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_col_0731", - "sport": "MLB", - "season": "2026", - "date": "2026-07-31", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Kansas City Royals", - "home_team_abbrev": "COL", - "away_team_abbrev": "KC", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_laa_0731", - "sport": "MLB", - "season": "2026", - "date": "2026-07-31", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "LAA", - "away_team_abbrev": "MIL", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_ath_0731", - "sport": "MLB", - "season": "2026", - "date": "2026-07-31", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Detroit Tigers", - "home_team_abbrev": "ATH", - "away_team_abbrev": "DET", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_sd_0731", - "sport": "MLB", - "season": "2026", - "date": "2026-07-31", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "San Francisco Giants", - "home_team_abbrev": "SD", - "away_team_abbrev": "SF", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_lad_0731", - "sport": "MLB", - "season": "2026", - "date": "2026-07-31", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Boston Red Sox", - "home_team_abbrev": "LAD", - "away_team_abbrev": "BOS", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_sea_0731", - "sport": "MLB", - "season": "2026", - "date": "2026-07-31", - "time": "02:10", - "home_team": "Seattle Mariners", - "away_team": "Minnesota Twins", - "home_team_abbrev": "SEA", - "away_team_abbrev": "MIN", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_cle_0731", - "sport": "MLB", - "season": "2026", - "date": "2026-07-31", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "CLE", - "away_team_abbrev": "AZ", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_hou_0731", - "sport": "MLB", - "season": "2026", - "date": "2026-07-31", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Texas Rangers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "TEX", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_chc_0731", - "sport": "MLB", - "season": "2026", - "date": "2026-07-31", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "New York Yankees", - "home_team_abbrev": "CHC", - "away_team_abbrev": "NYY", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_tor_0801", - "sport": "MLB", - "season": "2026", - "date": "2026-08-01", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "TOR", - "away_team_abbrev": "STL", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_sea_0801", - "sport": "MLB", - "season": "2026", - "date": "2026-08-01", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Minnesota Twins", - "home_team_abbrev": "SEA", - "away_team_abbrev": "MIN", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_tb_0801", - "sport": "MLB", - "season": "2026", - "date": "2026-08-01", - "time": "20:10", - "home_team": "Tampa Bay Rays", - "away_team": "Chicago White Sox", - "home_team_abbrev": "TB", - "away_team_abbrev": "CWS", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_nym_0801", - "sport": "MLB", - "season": "2026", - "date": "2026-08-01", - "time": "20:10", - "home_team": "New York Mets", - "away_team": "Miami Marlins", - "home_team_abbrev": "NYM", - "away_team_abbrev": "MIA", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_cin_0801", - "sport": "MLB", - "season": "2026", - "date": "2026-08-01", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "CIN", - "away_team_abbrev": "PIT", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_bal_0801", - "sport": "MLB", - "season": "2026", - "date": "2026-08-01", - "time": "23:05", - "home_team": "Baltimore Orioles", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "BAL", - "away_team_abbrev": "PHI", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_atl_0801", - "sport": "MLB", - "season": "2026", - "date": "2026-08-01", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Washington Nationals", - "home_team_abbrev": "ATL", - "away_team_abbrev": "WSH", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_col_0801", - "sport": "MLB", - "season": "2026", - "date": "2026-08-01", - "time": "00:10", - "home_team": "Colorado Rockies", - "away_team": "Kansas City Royals", - "home_team_abbrev": "COL", - "away_team_abbrev": "KC", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_sd_0801", - "sport": "MLB", - "season": "2026", - "date": "2026-08-01", - "time": "00:40", - "home_team": "San Diego Padres", - "away_team": "San Francisco Giants", - "home_team_abbrev": "SD", - "away_team_abbrev": "SF", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_lad_0801", - "sport": "MLB", - "season": "2026", - "date": "2026-08-01", - "time": "01:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Boston Red Sox", - "home_team_abbrev": "LAD", - "away_team_abbrev": "BOS", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_laa_0801", - "sport": "MLB", - "season": "2026", - "date": "2026-08-01", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "LAA", - "away_team_abbrev": "MIL", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_ath_0801", - "sport": "MLB", - "season": "2026", - "date": "2026-08-01", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Detroit Tigers", - "home_team_abbrev": "ATH", - "away_team_abbrev": "DET", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_cle_0801", - "sport": "MLB", - "season": "2026", - "date": "2026-08-01", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "CLE", - "away_team_abbrev": "AZ", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_hou_0801", - "sport": "MLB", - "season": "2026", - "date": "2026-08-01", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Texas Rangers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "TEX", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_chc_0801", - "sport": "MLB", - "season": "2026", - "date": "2026-08-01", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "New York Yankees", - "home_team_abbrev": "CHC", - "away_team_abbrev": "NYY", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_bal_0802", - "sport": "MLB", - "season": "2026", - "date": "2026-08-02", - "time": "17:35", - "home_team": "Baltimore Orioles", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "BAL", - "away_team_abbrev": "PHI", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_atl_0802", - "sport": "MLB", - "season": "2026", - "date": "2026-08-02", - "time": "17:35", - "home_team": "Atlanta Braves", - "away_team": "Washington Nationals", - "home_team_abbrev": "ATL", - "away_team_abbrev": "WSH", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_tor_0802", - "sport": "MLB", - "season": "2026", - "date": "2026-08-02", - "time": "17:37", - "home_team": "Toronto Blue Jays", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "TOR", - "away_team_abbrev": "STL", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_cin_0802", - "sport": "MLB", - "season": "2026", - "date": "2026-08-02", - "time": "17:40", - "home_team": "Cincinnati Reds", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "CIN", - "away_team_abbrev": "PIT", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_tb_0802", - "sport": "MLB", - "season": "2026", - "date": "2026-08-02", - "time": "17:40", - "home_team": "Tampa Bay Rays", - "away_team": "Chicago White Sox", - "home_team_abbrev": "TB", - "away_team_abbrev": "CWS", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_nym_0802", - "sport": "MLB", - "season": "2026", - "date": "2026-08-02", - "time": "17:40", - "home_team": "New York Mets", - "away_team": "Miami Marlins", - "home_team_abbrev": "NYM", - "away_team_abbrev": "MIA", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_col_0802", - "sport": "MLB", - "season": "2026", - "date": "2026-08-02", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Kansas City Royals", - "home_team_abbrev": "COL", - "away_team_abbrev": "KC", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_ath_0802", - "sport": "MLB", - "season": "2026", - "date": "2026-08-02", - "time": "20:05", - "home_team": "Athletics", - "away_team": "Detroit Tigers", - "home_team_abbrev": "ATH", - "away_team_abbrev": "DET", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_laa_0802", - "sport": "MLB", - "season": "2026", - "date": "2026-08-02", - "time": "20:07", - "home_team": "Los Angeles Angels", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "LAA", - "away_team_abbrev": "MIL", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_lad_0802", - "sport": "MLB", - "season": "2026", - "date": "2026-08-02", - "time": "20:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Boston Red Sox", - "home_team_abbrev": "LAD", - "away_team_abbrev": "BOS", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_sd_0802", - "sport": "MLB", - "season": "2026", - "date": "2026-08-02", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "San Francisco Giants", - "home_team_abbrev": "SD", - "away_team_abbrev": "SF", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_sea_0802", - "sport": "MLB", - "season": "2026", - "date": "2026-08-02", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Minnesota Twins", - "home_team_abbrev": "SEA", - "away_team_abbrev": "MIN", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_cle_0802", - "sport": "MLB", - "season": "2026", - "date": "2026-08-02", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "CLE", - "away_team_abbrev": "AZ", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_hou_0802", - "sport": "MLB", - "season": "2026", - "date": "2026-08-02", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Texas Rangers", - "home_team_abbrev": "HOU", - "away_team_abbrev": "TEX", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_chc_0802", - "sport": "MLB", - "season": "2026", - "date": "2026-08-02", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "New York Yankees", - "home_team_abbrev": "CHC", - "away_team_abbrev": "NYY", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_phi_0803", - "sport": "MLB", - "season": "2026", - "date": "2026-08-03", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Washington Nationals", - "home_team_abbrev": "PHI", - "away_team_abbrev": "WSH", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_nyy_0803", - "sport": "MLB", - "season": "2026", - "date": "2026-08-03", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "NYY", - "away_team_abbrev": "STL", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_mil_0803", - "sport": "MLB", - "season": "2026", - "date": "2026-08-03", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "MIL", - "away_team_abbrev": "PIT", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_tex_0803", - "sport": "MLB", - "season": "2026", - "date": "2026-08-03", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "San Francisco Giants", - "home_team_abbrev": "TEX", - "away_team_abbrev": "SF", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_col_0803", - "sport": "MLB", - "season": "2026", - "date": "2026-08-03", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "COL", - "away_team_abbrev": "TB", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_az_0803", - "sport": "MLB", - "season": "2026", - "date": "2026-08-03", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "San Diego Padres", - "home_team_abbrev": "AZ", - "away_team_abbrev": "SD", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_chc_0803", - "sport": "MLB", - "season": "2026", - "date": "2026-08-03", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "CHC", - "away_team_abbrev": "LAD", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_hou_0803", - "sport": "MLB", - "season": "2026", - "date": "2026-08-03", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "HOU", - "away_team_abbrev": "TOR", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_bal_0804", - "sport": "MLB", - "season": "2026", - "date": "2026-08-04", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "BAL", - "away_team_abbrev": "LAA", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_cin_0804", - "sport": "MLB", - "season": "2026", - "date": "2026-08-04", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Athletics", - "home_team_abbrev": "CIN", - "away_team_abbrev": "ATH", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_phi_0804", - "sport": "MLB", - "season": "2026", - "date": "2026-08-04", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Washington Nationals", - "home_team_abbrev": "PHI", - "away_team_abbrev": "WSH", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_nyy_0804", - "sport": "MLB", - "season": "2026", - "date": "2026-08-04", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "NYY", - "away_team_abbrev": "STL", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_bos_0804", - "sport": "MLB", - "season": "2026", - "date": "2026-08-04", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Chicago White Sox", - "home_team_abbrev": "BOS", - "away_team_abbrev": "CWS", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_atl_0804", - "sport": "MLB", - "season": "2026", - "date": "2026-08-04", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Miami Marlins", - "home_team_abbrev": "ATL", - "away_team_abbrev": "MIA", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_kc_0804", - "sport": "MLB", - "season": "2026", - "date": "2026-08-04", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Minnesota Twins", - "home_team_abbrev": "KC", - "away_team_abbrev": "MIN", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_mil_0804", - "sport": "MLB", - "season": "2026", - "date": "2026-08-04", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "MIL", - "away_team_abbrev": "PIT", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_tex_0804", - "sport": "MLB", - "season": "2026", - "date": "2026-08-04", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "San Francisco Giants", - "home_team_abbrev": "TEX", - "away_team_abbrev": "SF", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_col_0804", - "sport": "MLB", - "season": "2026", - "date": "2026-08-04", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "COL", - "away_team_abbrev": "TB", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_az_0804", - "sport": "MLB", - "season": "2026", - "date": "2026-08-04", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "San Diego Padres", - "home_team_abbrev": "AZ", - "away_team_abbrev": "SD", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_sea_0804", - "sport": "MLB", - "season": "2026", - "date": "2026-08-04", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Detroit Tigers", - "home_team_abbrev": "SEA", - "away_team_abbrev": "DET", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_cle_0804", - "sport": "MLB", - "season": "2026", - "date": "2026-08-04", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "New York Mets", - "home_team_abbrev": "CLE", - "away_team_abbrev": "NYM", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_chc_0804", - "sport": "MLB", - "season": "2026", - "date": "2026-08-04", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "CHC", - "away_team_abbrev": "LAD", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_hou_0804", - "sport": "MLB", - "season": "2026", - "date": "2026-08-04", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "HOU", - "away_team_abbrev": "TOR", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_tex_0805", - "sport": "MLB", - "season": "2026", - "date": "2026-08-05", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "San Francisco Giants", - "home_team_abbrev": "TEX", - "away_team_abbrev": "SF", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_col_0805", - "sport": "MLB", - "season": "2026", - "date": "2026-08-05", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "COL", - "away_team_abbrev": "TB", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_bal_0805", - "sport": "MLB", - "season": "2026", - "date": "2026-08-05", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "BAL", - "away_team_abbrev": "LAA", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_cin_0805", - "sport": "MLB", - "season": "2026", - "date": "2026-08-05", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Athletics", - "home_team_abbrev": "CIN", - "away_team_abbrev": "ATH", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_phi_0805", - "sport": "MLB", - "season": "2026", - "date": "2026-08-05", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Washington Nationals", - "home_team_abbrev": "PHI", - "away_team_abbrev": "WSH", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_nyy_0805", - "sport": "MLB", - "season": "2026", - "date": "2026-08-05", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "NYY", - "away_team_abbrev": "STL", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_bos_0805", - "sport": "MLB", - "season": "2026", - "date": "2026-08-05", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Chicago White Sox", - "home_team_abbrev": "BOS", - "away_team_abbrev": "CWS", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_atl_0805", - "sport": "MLB", - "season": "2026", - "date": "2026-08-05", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Miami Marlins", - "home_team_abbrev": "ATL", - "away_team_abbrev": "MIA", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_kc_0805", - "sport": "MLB", - "season": "2026", - "date": "2026-08-05", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Minnesota Twins", - "home_team_abbrev": "KC", - "away_team_abbrev": "MIN", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_mil_0805", - "sport": "MLB", - "season": "2026", - "date": "2026-08-05", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "MIL", - "away_team_abbrev": "PIT", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_az_0805", - "sport": "MLB", - "season": "2026", - "date": "2026-08-05", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "San Diego Padres", - "home_team_abbrev": "AZ", - "away_team_abbrev": "SD", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_sea_0805", - "sport": "MLB", - "season": "2026", - "date": "2026-08-05", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Detroit Tigers", - "home_team_abbrev": "SEA", - "away_team_abbrev": "DET", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_cle_0805", - "sport": "MLB", - "season": "2026", - "date": "2026-08-05", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "New York Mets", - "home_team_abbrev": "CLE", - "away_team_abbrev": "NYM", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_chc_0805", - "sport": "MLB", - "season": "2026", - "date": "2026-08-05", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "CHC", - "away_team_abbrev": "LAD", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_hou_0805", - "sport": "MLB", - "season": "2026", - "date": "2026-08-05", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "HOU", - "away_team_abbrev": "TOR", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_bal_0806", - "sport": "MLB", - "season": "2026", - "date": "2026-08-06", - "time": "16:35", - "home_team": "Baltimore Orioles", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "BAL", - "away_team_abbrev": "LAA", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_cin_0806", - "sport": "MLB", - "season": "2026", - "date": "2026-08-06", - "time": "16:40", - "home_team": "Cincinnati Reds", - "away_team": "Athletics", - "home_team_abbrev": "CIN", - "away_team_abbrev": "ATH", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_mil_0806", - "sport": "MLB", - "season": "2026", - "date": "2026-08-06", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "MIL", - "away_team_abbrev": "PIT", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_sea_0806", - "sport": "MLB", - "season": "2026", - "date": "2026-08-06", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Detroit Tigers", - "home_team_abbrev": "SEA", - "away_team_abbrev": "DET", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_phi_0806", - "sport": "MLB", - "season": "2026", - "date": "2026-08-06", - "time": "22:05", - "home_team": "Philadelphia Phillies", - "away_team": "Washington Nationals", - "home_team_abbrev": "PHI", - "away_team_abbrev": "WSH", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_bos_0806", - "sport": "MLB", - "season": "2026", - "date": "2026-08-06", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Chicago White Sox", - "home_team_abbrev": "BOS", - "away_team_abbrev": "CWS", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_atl_0806", - "sport": "MLB", - "season": "2026", - "date": "2026-08-06", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Miami Marlins", - "home_team_abbrev": "ATL", - "away_team_abbrev": "MIA", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_kc_0806", - "sport": "MLB", - "season": "2026", - "date": "2026-08-06", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Minnesota Twins", - "home_team_abbrev": "KC", - "away_team_abbrev": "MIN", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_az_0806", - "sport": "MLB", - "season": "2026", - "date": "2026-08-06", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "San Diego Padres", - "home_team_abbrev": "AZ", - "away_team_abbrev": "SD", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_cle_0806", - "sport": "MLB", - "season": "2026", - "date": "2026-08-06", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "New York Mets", - "home_team_abbrev": "CLE", - "away_team_abbrev": "NYM", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_pit_0807", - "sport": "MLB", - "season": "2026", - "date": "2026-08-07", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "New York Mets", - "home_team_abbrev": "PIT", - "away_team_abbrev": "NYM", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_phi_0807", - "sport": "MLB", - "season": "2026", - "date": "2026-08-07", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "PHI", - "away_team_abbrev": "TOR", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_wsh_0807", - "sport": "MLB", - "season": "2026", - "date": "2026-08-07", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "WSH", - "away_team_abbrev": "CIN", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_nyy_0807", - "sport": "MLB", - "season": "2026", - "date": "2026-08-07", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Atlanta Braves", - "home_team_abbrev": "NYY", - "away_team_abbrev": "ATL", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_bos_0807", - "sport": "MLB", - "season": "2026", - "date": "2026-08-07", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Athletics", - "home_team_abbrev": "BOS", - "away_team_abbrev": "ATH", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_mia_0807", - "sport": "MLB", - "season": "2026", - "date": "2026-08-07", - "time": "23:10", - "home_team": "Miami Marlins", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "MIA", - "away_team_abbrev": "LAA", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_cws_0807", - "sport": "MLB", - "season": "2026", - "date": "2026-08-07", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "CWS", - "away_team_abbrev": "CLE", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_mil_0807", - "sport": "MLB", - "season": "2026", - "date": "2026-08-07", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Minnesota Twins", - "home_team_abbrev": "MIL", - "away_team_abbrev": "MIN", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_tex_0807", - "sport": "MLB", - "season": "2026", - "date": "2026-08-07", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "TEX", - "away_team_abbrev": "BAL", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_kc_0807", - "sport": "MLB", - "season": "2026", - "date": "2026-08-07", - "time": "00:10", - "home_team": "Kansas City Royals", - "away_team": "Chicago Cubs", - "home_team_abbrev": "KC", - "away_team_abbrev": "CHC", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_stl_0807", - "sport": "MLB", - "season": "2026", - "date": "2026-08-07", - "time": "00:15", - "home_team": "St. Louis Cardinals", - "away_team": "Colorado Rockies", - "home_team_abbrev": "STL", - "away_team_abbrev": "COL", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_az_0807", - "sport": "MLB", - "season": "2026", - "date": "2026-08-07", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "AZ", - "away_team_abbrev": "LAD", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_sd_0807", - "sport": "MLB", - "season": "2026", - "date": "2026-08-07", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Houston Astros", - "home_team_abbrev": "SD", - "away_team_abbrev": "HOU", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_sea_0807", - "sport": "MLB", - "season": "2026", - "date": "2026-08-07", - "time": "02:10", - "home_team": "Seattle Mariners", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "SEA", - "away_team_abbrev": "TB", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_sf_0807", - "sport": "MLB", - "season": "2026", - "date": "2026-08-07", - "time": "02:15", - "home_team": "San Francisco Giants", - "away_team": "Detroit Tigers", - "home_team_abbrev": "SF", - "away_team_abbrev": "DET", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_nyy_0808", - "sport": "MLB", - "season": "2026", - "date": "2026-08-08", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Atlanta Braves", - "home_team_abbrev": "NYY", - "away_team_abbrev": "ATL", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_bos_0808", - "sport": "MLB", - "season": "2026", - "date": "2026-08-08", - "time": "20:10", - "home_team": "Boston Red Sox", - "away_team": "Athletics", - "home_team_abbrev": "BOS", - "away_team_abbrev": "ATH", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_mia_0808", - "sport": "MLB", - "season": "2026", - "date": "2026-08-08", - "time": "20:10", - "home_team": "Miami Marlins", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "MIA", - "away_team_abbrev": "LAA", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_phi_0808", - "sport": "MLB", - "season": "2026", - "date": "2026-08-08", - "time": "22:05", - "home_team": "Philadelphia Phillies", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "PHI", - "away_team_abbrev": "TOR", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_pit_0808", - "sport": "MLB", - "season": "2026", - "date": "2026-08-08", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "New York Mets", - "home_team_abbrev": "PIT", - "away_team_abbrev": "NYM", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_wsh_0808", - "sport": "MLB", - "season": "2026", - "date": "2026-08-08", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "WSH", - "away_team_abbrev": "CIN", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_kc_0808", - "sport": "MLB", - "season": "2026", - "date": "2026-08-08", - "time": "23:10", - "home_team": "Kansas City Royals", - "away_team": "Chicago Cubs", - "home_team_abbrev": "KC", - "away_team_abbrev": "CHC", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_cws_0808", - "sport": "MLB", - "season": "2026", - "date": "2026-08-08", - "time": "23:10", - "home_team": "Chicago White Sox", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "CWS", - "away_team_abbrev": "CLE", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_mil_0808", - "sport": "MLB", - "season": "2026", - "date": "2026-08-08", - "time": "23:10", - "home_team": "Milwaukee Brewers", - "away_team": "Minnesota Twins", - "home_team_abbrev": "MIL", - "away_team_abbrev": "MIN", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_sd_0808", - "sport": "MLB", - "season": "2026", - "date": "2026-08-08", - "time": "23:15", - "home_team": "San Diego Padres", - "away_team": "Houston Astros", - "home_team_abbrev": "SD", - "away_team_abbrev": "HOU", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_sf_0808", - "sport": "MLB", - "season": "2026", - "date": "2026-08-08", - "time": "23:15", - "home_team": "San Francisco Giants", - "away_team": "Detroit Tigers", - "home_team_abbrev": "SF", - "away_team_abbrev": "DET", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_stl_0808", - "sport": "MLB", - "season": "2026", - "date": "2026-08-08", - "time": "23:15", - "home_team": "St. Louis Cardinals", - "away_team": "Colorado Rockies", - "home_team_abbrev": "STL", - "away_team_abbrev": "COL", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_tex_0808", - "sport": "MLB", - "season": "2026", - "date": "2026-08-08", - "time": "23:15", - "home_team": "Texas Rangers", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "TEX", - "away_team_abbrev": "BAL", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_az_0808", - "sport": "MLB", - "season": "2026", - "date": "2026-08-08", - "time": "00:10", - "home_team": "Arizona Diamondbacks", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "AZ", - "away_team_abbrev": "LAD", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_sea_0808", - "sport": "MLB", - "season": "2026", - "date": "2026-08-08", - "time": "01:50", - "home_team": "Seattle Mariners", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "SEA", - "away_team_abbrev": "TB", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_wsh_0809", - "sport": "MLB", - "season": "2026", - "date": "2026-08-09", - "time": "17:35", - "home_team": "Washington Nationals", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "WSH", - "away_team_abbrev": "CIN", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_bos_0809", - "sport": "MLB", - "season": "2026", - "date": "2026-08-09", - "time": "17:35", - "home_team": "Boston Red Sox", - "away_team": "Athletics", - "home_team_abbrev": "BOS", - "away_team_abbrev": "ATH", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_pit_0809", - "sport": "MLB", - "season": "2026", - "date": "2026-08-09", - "time": "17:35", - "home_team": "Pittsburgh Pirates", - "away_team": "New York Mets", - "home_team_abbrev": "PIT", - "away_team_abbrev": "NYM", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_phi_0809", - "sport": "MLB", - "season": "2026", - "date": "2026-08-09", - "time": "17:35", - "home_team": "Philadelphia Phillies", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "PHI", - "away_team_abbrev": "TOR", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_nyy_0809", - "sport": "MLB", - "season": "2026", - "date": "2026-08-09", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Atlanta Braves", - "home_team_abbrev": "NYY", - "away_team_abbrev": "ATL", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_mia_0809", - "sport": "MLB", - "season": "2026", - "date": "2026-08-09", - "time": "17:40", - "home_team": "Miami Marlins", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "MIA", - "away_team_abbrev": "LAA", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_kc_0809", - "sport": "MLB", - "season": "2026", - "date": "2026-08-09", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "Chicago Cubs", - "home_team_abbrev": "KC", - "away_team_abbrev": "CHC", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_cws_0809", - "sport": "MLB", - "season": "2026", - "date": "2026-08-09", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "CWS", - "away_team_abbrev": "CLE", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_mil_0809", - "sport": "MLB", - "season": "2026", - "date": "2026-08-09", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "Minnesota Twins", - "home_team_abbrev": "MIL", - "away_team_abbrev": "MIN", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_stl_0809", - "sport": "MLB", - "season": "2026", - "date": "2026-08-09", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Colorado Rockies", - "home_team_abbrev": "STL", - "away_team_abbrev": "COL", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_tex_0809", - "sport": "MLB", - "season": "2026", - "date": "2026-08-09", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "TEX", - "away_team_abbrev": "BAL", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_sf_0809", - "sport": "MLB", - "season": "2026", - "date": "2026-08-09", - "time": "20:05", - "home_team": "San Francisco Giants", - "away_team": "Detroit Tigers", - "home_team_abbrev": "SF", - "away_team_abbrev": "DET", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_az_0809", - "sport": "MLB", - "season": "2026", - "date": "2026-08-09", - "time": "20:10", - "home_team": "Arizona Diamondbacks", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "AZ", - "away_team_abbrev": "LAD", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_sd_0809", - "sport": "MLB", - "season": "2026", - "date": "2026-08-09", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "Houston Astros", - "home_team_abbrev": "SD", - "away_team_abbrev": "HOU", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_sea_0809", - "sport": "MLB", - "season": "2026", - "date": "2026-08-09", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "SEA", - "away_team_abbrev": "TB", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_tor_0810", - "sport": "MLB", - "season": "2026", - "date": "2026-08-10", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Boston Red Sox", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BOS", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_atl_0810", - "sport": "MLB", - "season": "2026", - "date": "2026-08-10", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "New York Mets", - "home_team_abbrev": "ATL", - "away_team_abbrev": "NYM", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_min_0810", - "sport": "MLB", - "season": "2026", - "date": "2026-08-10", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "MIN", - "away_team_abbrev": "BAL", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_stl_0810", - "sport": "MLB", - "season": "2026", - "date": "2026-08-10", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "STL", - "away_team_abbrev": "PHI", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_laa_0810", - "sport": "MLB", - "season": "2026", - "date": "2026-08-10", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Texas Rangers", - "home_team_abbrev": "LAA", - "away_team_abbrev": "TEX", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_az_0810", - "sport": "MLB", - "season": "2026", - "date": "2026-08-10", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Colorado Rockies", - "home_team_abbrev": "AZ", - "away_team_abbrev": "COL", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_ath_0810", - "sport": "MLB", - "season": "2026", - "date": "2026-08-10", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "ATH", - "away_team_abbrev": "TB", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_sd_0810", - "sport": "MLB", - "season": "2026", - "date": "2026-08-10", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "SD", - "away_team_abbrev": "MIL", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_sf_0810", - "sport": "MLB", - "season": "2026", - "date": "2026-08-10", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Houston Astros", - "home_team_abbrev": "SF", - "away_team_abbrev": "HOU", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_lad_0810", - "sport": "MLB", - "season": "2026", - "date": "2026-08-10", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Kansas City Royals", - "home_team_abbrev": "LAD", - "away_team_abbrev": "KC", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_det_0811", - "sport": "MLB", - "season": "2026", - "date": "2026-08-11", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "DET", - "away_team_abbrev": "CLE", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_mia_0811", - "sport": "MLB", - "season": "2026", - "date": "2026-08-11", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "MIA", - "away_team_abbrev": "PIT", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_wsh_0811", - "sport": "MLB", - "season": "2026", - "date": "2026-08-11", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Chicago Cubs", - "home_team_abbrev": "WSH", - "away_team_abbrev": "CHC", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_nyy_0811", - "sport": "MLB", - "season": "2026", - "date": "2026-08-11", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Seattle Mariners", - "home_team_abbrev": "NYY", - "away_team_abbrev": "SEA", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_tor_0811", - "sport": "MLB", - "season": "2026", - "date": "2026-08-11", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Boston Red Sox", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BOS", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_atl_0811", - "sport": "MLB", - "season": "2026", - "date": "2026-08-11", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "New York Mets", - "home_team_abbrev": "ATL", - "away_team_abbrev": "NYM", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_min_0811", - "sport": "MLB", - "season": "2026", - "date": "2026-08-11", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "MIN", - "away_team_abbrev": "BAL", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_cws_0811", - "sport": "MLB", - "season": "2026", - "date": "2026-08-11", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "CWS", - "away_team_abbrev": "CIN", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_stl_0811", - "sport": "MLB", - "season": "2026", - "date": "2026-08-11", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "STL", - "away_team_abbrev": "PHI", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_laa_0811", - "sport": "MLB", - "season": "2026", - "date": "2026-08-11", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Texas Rangers", - "home_team_abbrev": "LAA", - "away_team_abbrev": "TEX", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_az_0811", - "sport": "MLB", - "season": "2026", - "date": "2026-08-11", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Colorado Rockies", - "home_team_abbrev": "AZ", - "away_team_abbrev": "COL", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_ath_0811", - "sport": "MLB", - "season": "2026", - "date": "2026-08-11", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "ATH", - "away_team_abbrev": "TB", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_sd_0811", - "sport": "MLB", - "season": "2026", - "date": "2026-08-11", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "SD", - "away_team_abbrev": "MIL", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_sf_0811", - "sport": "MLB", - "season": "2026", - "date": "2026-08-11", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Houston Astros", - "home_team_abbrev": "SF", - "away_team_abbrev": "HOU", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_lad_0811", - "sport": "MLB", - "season": "2026", - "date": "2026-08-11", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Kansas City Royals", - "home_team_abbrev": "LAD", - "away_team_abbrev": "KC", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_min_0812", - "sport": "MLB", - "season": "2026", - "date": "2026-08-12", - "time": "17:40", - "home_team": "Minnesota Twins", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "MIN", - "away_team_abbrev": "BAL", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_stl_0812", - "sport": "MLB", - "season": "2026", - "date": "2026-08-12", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "STL", - "away_team_abbrev": "PHI", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_ath_0812", - "sport": "MLB", - "season": "2026", - "date": "2026-08-12", - "time": "19:05", - "home_team": "Athletics", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "ATH", - "away_team_abbrev": "TB", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_az_0812", - "sport": "MLB", - "season": "2026", - "date": "2026-08-12", - "time": "19:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Colorado Rockies", - "home_team_abbrev": "AZ", - "away_team_abbrev": "COL", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_sf_0812", - "sport": "MLB", - "season": "2026", - "date": "2026-08-12", - "time": "19:45", - "home_team": "San Francisco Giants", - "away_team": "Houston Astros", - "home_team_abbrev": "SF", - "away_team_abbrev": "HOU", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_sd_0812", - "sport": "MLB", - "season": "2026", - "date": "2026-08-12", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "SD", - "away_team_abbrev": "MIL", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_det_0812", - "sport": "MLB", - "season": "2026", - "date": "2026-08-12", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "DET", - "away_team_abbrev": "CLE", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_mia_0812", - "sport": "MLB", - "season": "2026", - "date": "2026-08-12", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "MIA", - "away_team_abbrev": "PIT", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_wsh_0812", - "sport": "MLB", - "season": "2026", - "date": "2026-08-12", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Chicago Cubs", - "home_team_abbrev": "WSH", - "away_team_abbrev": "CHC", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_nyy_0812", - "sport": "MLB", - "season": "2026", - "date": "2026-08-12", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Seattle Mariners", - "home_team_abbrev": "NYY", - "away_team_abbrev": "SEA", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_tor_0812", - "sport": "MLB", - "season": "2026", - "date": "2026-08-12", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Boston Red Sox", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BOS", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_atl_0812", - "sport": "MLB", - "season": "2026", - "date": "2026-08-12", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "New York Mets", - "home_team_abbrev": "ATL", - "away_team_abbrev": "NYM", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_cws_0812", - "sport": "MLB", - "season": "2026", - "date": "2026-08-12", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "CWS", - "away_team_abbrev": "CIN", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_laa_0812", - "sport": "MLB", - "season": "2026", - "date": "2026-08-12", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Texas Rangers", - "home_team_abbrev": "LAA", - "away_team_abbrev": "TEX", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_lad_0812", - "sport": "MLB", - "season": "2026", - "date": "2026-08-12", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Kansas City Royals", - "home_team_abbrev": "LAD", - "away_team_abbrev": "KC", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_det_0813", - "sport": "MLB", - "season": "2026", - "date": "2026-08-13", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "DET", - "away_team_abbrev": "CLE", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_mia_0813", - "sport": "MLB", - "season": "2026", - "date": "2026-08-13", - "time": "17:10", - "home_team": "Miami Marlins", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "MIA", - "away_team_abbrev": "PIT", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_nyy_0813", - "sport": "MLB", - "season": "2026", - "date": "2026-08-13", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Seattle Mariners", - "home_team_abbrev": "NYY", - "away_team_abbrev": "SEA", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_cws_0813", - "sport": "MLB", - "season": "2026", - "date": "2026-08-13", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "CWS", - "away_team_abbrev": "CIN", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_tor_0813", - "sport": "MLB", - "season": "2026", - "date": "2026-08-13", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "Boston Red Sox", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BOS", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_wsh_0813", - "sport": "MLB", - "season": "2026", - "date": "2026-08-13", - "time": "20:05", - "home_team": "Washington Nationals", - "away_team": "Chicago Cubs", - "home_team_abbrev": "WSH", - "away_team_abbrev": "CHC", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_min_0813", - "sport": "MLB", - "season": "2026", - "date": "2026-08-13", - "time": "23:30", - "home_team": "Minnesota Twins", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "MIN", - "away_team_abbrev": "PHI", - "venue": "Field of Dreams", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_laa_0813", - "sport": "MLB", - "season": "2026", - "date": "2026-08-13", - "time": "02:07", - "home_team": "Los Angeles Angels", - "away_team": "Texas Rangers", - "home_team_abbrev": "LAA", - "away_team_abbrev": "TEX", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_lad_0813", - "sport": "MLB", - "season": "2026", - "date": "2026-08-13", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "LAD", - "away_team_abbrev": "MIL", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_pit_0814", - "sport": "MLB", - "season": "2026", - "date": "2026-08-14", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Boston Red Sox", - "home_team_abbrev": "PIT", - "away_team_abbrev": "BOS", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_det_0814", - "sport": "MLB", - "season": "2026", - "date": "2026-08-14", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Chicago White Sox", - "home_team_abbrev": "DET", - "away_team_abbrev": "CWS", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_cin_0814", - "sport": "MLB", - "season": "2026", - "date": "2026-08-14", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Miami Marlins", - "home_team_abbrev": "CIN", - "away_team_abbrev": "MIA", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_tor_0814", - "sport": "MLB", - "season": "2026", - "date": "2026-08-14", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "New York Yankees", - "home_team_abbrev": "TOR", - "away_team_abbrev": "NYY", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_nym_0814", - "sport": "MLB", - "season": "2026", - "date": "2026-08-14", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Washington Nationals", - "home_team_abbrev": "NYM", - "away_team_abbrev": "WSH", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_tb_0814", - "sport": "MLB", - "season": "2026", - "date": "2026-08-14", - "time": "23:10", - "home_team": "Tampa Bay Rays", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "TB", - "away_team_abbrev": "BAL", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_atl_0814", - "sport": "MLB", - "season": "2026", - "date": "2026-08-14", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "ATL", - "away_team_abbrev": "AZ", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_laa_0814", - "sport": "MLB", - "season": "2026", - "date": "2026-08-14", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Kansas City Royals", - "home_team_abbrev": "LAA", - "away_team_abbrev": "KC", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_ath_0814", - "sport": "MLB", - "season": "2026", - "date": "2026-08-14", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Texas Rangers", - "home_team_abbrev": "ATH", - "away_team_abbrev": "TEX", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_lad_0814", - "sport": "MLB", - "season": "2026", - "date": "2026-08-14", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "LAD", - "away_team_abbrev": "MIL", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_sf_0814", - "sport": "MLB", - "season": "2026", - "date": "2026-08-14", - "time": "02:15", - "home_team": "San Francisco Giants", - "away_team": "Colorado Rockies", - "home_team_abbrev": "SF", - "away_team_abbrev": "COL", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_cle_0814", - "sport": "MLB", - "season": "2026", - "date": "2026-08-14", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "San Diego Padres", - "home_team_abbrev": "CLE", - "away_team_abbrev": "SD", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_hou_0814", - "sport": "MLB", - "season": "2026", - "date": "2026-08-14", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Seattle Mariners", - "home_team_abbrev": "HOU", - "away_team_abbrev": "SEA", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_chc_0814", - "sport": "MLB", - "season": "2026", - "date": "2026-08-14", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "CHC", - "away_team_abbrev": "STL", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_det_0815", - "sport": "MLB", - "season": "2026", - "date": "2026-08-15", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Chicago White Sox", - "home_team_abbrev": "DET", - "away_team_abbrev": "CWS", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_tor_0815", - "sport": "MLB", - "season": "2026", - "date": "2026-08-15", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "New York Yankees", - "home_team_abbrev": "TOR", - "away_team_abbrev": "NYY", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_nym_0815", - "sport": "MLB", - "season": "2026", - "date": "2026-08-15", - "time": "20:10", - "home_team": "New York Mets", - "away_team": "Washington Nationals", - "home_team_abbrev": "NYM", - "away_team_abbrev": "WSH", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_tb_0815", - "sport": "MLB", - "season": "2026", - "date": "2026-08-15", - "time": "22:10", - "home_team": "Tampa Bay Rays", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "TB", - "away_team_abbrev": "BAL", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_pit_0815", - "sport": "MLB", - "season": "2026", - "date": "2026-08-15", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Boston Red Sox", - "home_team_abbrev": "PIT", - "away_team_abbrev": "BOS", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_cin_0815", - "sport": "MLB", - "season": "2026", - "date": "2026-08-15", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Miami Marlins", - "home_team_abbrev": "CIN", - "away_team_abbrev": "MIA", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_min_0815", - "sport": "MLB", - "season": "2026", - "date": "2026-08-15", - "time": "23:10", - "home_team": "Minnesota Twins", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "MIN", - "away_team_abbrev": "PHI", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_atl_0815", - "sport": "MLB", - "season": "2026", - "date": "2026-08-15", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "ATL", - "away_team_abbrev": "AZ", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_lad_0815", - "sport": "MLB", - "season": "2026", - "date": "2026-08-15", - "time": "01:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "LAD", - "away_team_abbrev": "MIL", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_laa_0815", - "sport": "MLB", - "season": "2026", - "date": "2026-08-15", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Kansas City Royals", - "home_team_abbrev": "LAA", - "away_team_abbrev": "KC", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_ath_0815", - "sport": "MLB", - "season": "2026", - "date": "2026-08-15", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Texas Rangers", - "home_team_abbrev": "ATH", - "away_team_abbrev": "TEX", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_cle_0815", - "sport": "MLB", - "season": "2026", - "date": "2026-08-15", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "San Diego Padres", - "home_team_abbrev": "CLE", - "away_team_abbrev": "SD", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_hou_0815", - "sport": "MLB", - "season": "2026", - "date": "2026-08-15", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Seattle Mariners", - "home_team_abbrev": "HOU", - "away_team_abbrev": "SEA", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_chc_0815", - "sport": "MLB", - "season": "2026", - "date": "2026-08-15", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "CHC", - "away_team_abbrev": "STL", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_sf_0815", - "sport": "MLB", - "season": "2026", - "date": "2026-08-15", - "time": "10:33", - "home_team": "San Francisco Giants", - "away_team": "Colorado Rockies", - "home_team_abbrev": "SF", - "away_team_abbrev": "COL", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_pit_0816", - "sport": "MLB", - "season": "2026", - "date": "2026-08-16", - "time": "17:35", - "home_team": "Pittsburgh Pirates", - "away_team": "Boston Red Sox", - "home_team_abbrev": "PIT", - "away_team_abbrev": "BOS", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_atl_0816", - "sport": "MLB", - "season": "2026", - "date": "2026-08-16", - "time": "17:35", - "home_team": "Atlanta Braves", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "ATL", - "away_team_abbrev": "AZ", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_tor_0816", - "sport": "MLB", - "season": "2026", - "date": "2026-08-16", - "time": "17:37", - "home_team": "Toronto Blue Jays", - "away_team": "New York Yankees", - "home_team_abbrev": "TOR", - "away_team_abbrev": "NYY", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_nym_0816", - "sport": "MLB", - "season": "2026", - "date": "2026-08-16", - "time": "17:40", - "home_team": "New York Mets", - "away_team": "Washington Nationals", - "home_team_abbrev": "NYM", - "away_team_abbrev": "WSH", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_tb_0816", - "sport": "MLB", - "season": "2026", - "date": "2026-08-16", - "time": "17:40", - "home_team": "Tampa Bay Rays", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "TB", - "away_team_abbrev": "BAL", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_det_0816", - "sport": "MLB", - "season": "2026", - "date": "2026-08-16", - "time": "17:40", - "home_team": "Detroit Tigers", - "away_team": "Chicago White Sox", - "home_team_abbrev": "DET", - "away_team_abbrev": "CWS", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_cin_0816", - "sport": "MLB", - "season": "2026", - "date": "2026-08-16", - "time": "17:40", - "home_team": "Cincinnati Reds", - "away_team": "Miami Marlins", - "home_team_abbrev": "CIN", - "away_team_abbrev": "MIA", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_min_0816", - "sport": "MLB", - "season": "2026", - "date": "2026-08-16", - "time": "18:10", - "home_team": "Minnesota Twins", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "MIN", - "away_team_abbrev": "PHI", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_sf_0816", - "sport": "MLB", - "season": "2026", - "date": "2026-08-16", - "time": "20:05", - "home_team": "San Francisco Giants", - "away_team": "Colorado Rockies", - "home_team_abbrev": "SF", - "away_team_abbrev": "COL", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_ath_0816", - "sport": "MLB", - "season": "2026", - "date": "2026-08-16", - "time": "20:05", - "home_team": "Athletics", - "away_team": "Texas Rangers", - "home_team_abbrev": "ATH", - "away_team_abbrev": "TEX", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_laa_0816", - "sport": "MLB", - "season": "2026", - "date": "2026-08-16", - "time": "20:07", - "home_team": "Los Angeles Angels", - "away_team": "Kansas City Royals", - "home_team_abbrev": "LAA", - "away_team_abbrev": "KC", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_lad_0816", - "sport": "MLB", - "season": "2026", - "date": "2026-08-16", - "time": "20:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "LAD", - "away_team_abbrev": "MIL", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_cle_0816", - "sport": "MLB", - "season": "2026", - "date": "2026-08-16", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "San Diego Padres", - "home_team_abbrev": "CLE", - "away_team_abbrev": "SD", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_hou_0816", - "sport": "MLB", - "season": "2026", - "date": "2026-08-16", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Seattle Mariners", - "home_team_abbrev": "HOU", - "away_team_abbrev": "SEA", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_chc_0816", - "sport": "MLB", - "season": "2026", - "date": "2026-08-16", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "CHC", - "away_team_abbrev": "STL", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_pit_0817", - "sport": "MLB", - "season": "2026", - "date": "2026-08-17", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Detroit Tigers", - "home_team_abbrev": "PIT", - "away_team_abbrev": "DET", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_cin_0817", - "sport": "MLB", - "season": "2026", - "date": "2026-08-17", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "CIN", - "away_team_abbrev": "STL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_tb_0817", - "sport": "MLB", - "season": "2026", - "date": "2026-08-17", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "TB", - "away_team_abbrev": "BAL", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_phi_0817", - "sport": "MLB", - "season": "2026", - "date": "2026-08-17", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Miami Marlins", - "home_team_abbrev": "PHI", - "away_team_abbrev": "MIA", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_bos_0817", - "sport": "MLB", - "season": "2026", - "date": "2026-08-17", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "BOS", - "away_team_abbrev": "AZ", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_nym_0817", - "sport": "MLB", - "season": "2026", - "date": "2026-08-17", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "San Diego Padres", - "home_team_abbrev": "NYM", - "away_team_abbrev": "SD", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_kc_0817", - "sport": "MLB", - "season": "2026", - "date": "2026-08-17", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Athletics", - "home_team_abbrev": "KC", - "away_team_abbrev": "ATH", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_min_0817", - "sport": "MLB", - "season": "2026", - "date": "2026-08-17", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Atlanta Braves", - "home_team_abbrev": "MIN", - "away_team_abbrev": "ATL", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_col_0817", - "sport": "MLB", - "season": "2026", - "date": "2026-08-17", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "COL", - "away_team_abbrev": "LAD", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_chc_0817", - "sport": "MLB", - "season": "2026", - "date": "2026-08-17", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Chicago White Sox", - "home_team_abbrev": "CHC", - "away_team_abbrev": "CWS", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_bal_0818", - "sport": "MLB", - "season": "2026", - "date": "2026-08-18", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "New York Yankees", - "home_team_abbrev": "BAL", - "away_team_abbrev": "NYY", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_pit_0818", - "sport": "MLB", - "season": "2026", - "date": "2026-08-18", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Detroit Tigers", - "home_team_abbrev": "PIT", - "away_team_abbrev": "DET", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_cin_0818", - "sport": "MLB", - "season": "2026", - "date": "2026-08-18", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "CIN", - "away_team_abbrev": "STL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_tb_0818", - "sport": "MLB", - "season": "2026", - "date": "2026-08-18", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "TB", - "away_team_abbrev": "TOR", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_phi_0818", - "sport": "MLB", - "season": "2026", - "date": "2026-08-18", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Miami Marlins", - "home_team_abbrev": "PHI", - "away_team_abbrev": "MIA", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_bos_0818", - "sport": "MLB", - "season": "2026", - "date": "2026-08-18", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "BOS", - "away_team_abbrev": "AZ", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_nym_0818", - "sport": "MLB", - "season": "2026", - "date": "2026-08-18", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "San Diego Padres", - "home_team_abbrev": "NYM", - "away_team_abbrev": "SD", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_kc_0818", - "sport": "MLB", - "season": "2026", - "date": "2026-08-18", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Athletics", - "home_team_abbrev": "KC", - "away_team_abbrev": "ATH", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_min_0818", - "sport": "MLB", - "season": "2026", - "date": "2026-08-18", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Atlanta Braves", - "home_team_abbrev": "MIN", - "away_team_abbrev": "ATL", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_mil_0818", - "sport": "MLB", - "season": "2026", - "date": "2026-08-18", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Seattle Mariners", - "home_team_abbrev": "MIL", - "away_team_abbrev": "SEA", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_tex_0818", - "sport": "MLB", - "season": "2026", - "date": "2026-08-18", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Washington Nationals", - "home_team_abbrev": "TEX", - "away_team_abbrev": "WSH", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_col_0818", - "sport": "MLB", - "season": "2026", - "date": "2026-08-18", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "COL", - "away_team_abbrev": "LAD", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_cle_0818", - "sport": "MLB", - "season": "2026", - "date": "2026-08-18", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "San Francisco Giants", - "home_team_abbrev": "CLE", - "away_team_abbrev": "SF", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_hou_0818", - "sport": "MLB", - "season": "2026", - "date": "2026-08-18", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "HOU", - "away_team_abbrev": "LAA", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_chc_0818", - "sport": "MLB", - "season": "2026", - "date": "2026-08-18", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Chicago White Sox", - "home_team_abbrev": "CHC", - "away_team_abbrev": "CWS", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_pit_0819", - "sport": "MLB", - "season": "2026", - "date": "2026-08-19", - "time": "16:35", - "home_team": "Pittsburgh Pirates", - "away_team": "Detroit Tigers", - "home_team_abbrev": "PIT", - "away_team_abbrev": "DET", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_nym_0819", - "sport": "MLB", - "season": "2026", - "date": "2026-08-19", - "time": "17:10", - "home_team": "New York Mets", - "away_team": "San Diego Padres", - "home_team_abbrev": "NYM", - "away_team_abbrev": "SD", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_min_0819", - "sport": "MLB", - "season": "2026", - "date": "2026-08-19", - "time": "17:40", - "home_team": "Minnesota Twins", - "away_team": "Atlanta Braves", - "home_team_abbrev": "MIN", - "away_team_abbrev": "ATL", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_bos_0819", - "sport": "MLB", - "season": "2026", - "date": "2026-08-19", - "time": "20:10", - "home_team": "Boston Red Sox", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "BOS", - "away_team_abbrev": "AZ", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_phi_0819", - "sport": "MLB", - "season": "2026", - "date": "2026-08-19", - "time": "22:05", - "home_team": "Philadelphia Phillies", - "away_team": "Miami Marlins", - "home_team_abbrev": "PHI", - "away_team_abbrev": "MIA", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_bal_0819", - "sport": "MLB", - "season": "2026", - "date": "2026-08-19", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "New York Yankees", - "home_team_abbrev": "BAL", - "away_team_abbrev": "NYY", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_cin_0819", - "sport": "MLB", - "season": "2026", - "date": "2026-08-19", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "CIN", - "away_team_abbrev": "STL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_tb_0819", - "sport": "MLB", - "season": "2026", - "date": "2026-08-19", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "TB", - "away_team_abbrev": "TOR", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_kc_0819", - "sport": "MLB", - "season": "2026", - "date": "2026-08-19", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Athletics", - "home_team_abbrev": "KC", - "away_team_abbrev": "ATH", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_mil_0819", - "sport": "MLB", - "season": "2026", - "date": "2026-08-19", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Seattle Mariners", - "home_team_abbrev": "MIL", - "away_team_abbrev": "SEA", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_tex_0819", - "sport": "MLB", - "season": "2026", - "date": "2026-08-19", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Washington Nationals", - "home_team_abbrev": "TEX", - "away_team_abbrev": "WSH", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_col_0819", - "sport": "MLB", - "season": "2026", - "date": "2026-08-19", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "COL", - "away_team_abbrev": "LAD", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_cle_0819", - "sport": "MLB", - "season": "2026", - "date": "2026-08-19", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "San Francisco Giants", - "home_team_abbrev": "CLE", - "away_team_abbrev": "SF", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_hou_0819", - "sport": "MLB", - "season": "2026", - "date": "2026-08-19", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "HOU", - "away_team_abbrev": "LAA", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_chc_0819", - "sport": "MLB", - "season": "2026", - "date": "2026-08-19", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Chicago White Sox", - "home_team_abbrev": "CHC", - "away_team_abbrev": "CWS", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_cin_0820", - "sport": "MLB", - "season": "2026", - "date": "2026-08-20", - "time": "16:40", - "home_team": "Cincinnati Reds", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "CIN", - "away_team_abbrev": "STL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_tb_0820", - "sport": "MLB", - "season": "2026", - "date": "2026-08-20", - "time": "17:10", - "home_team": "Tampa Bay Rays", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "TB", - "away_team_abbrev": "TOR", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_kc_0820", - "sport": "MLB", - "season": "2026", - "date": "2026-08-20", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "Athletics", - "home_team_abbrev": "KC", - "away_team_abbrev": "ATH", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_mil_0820", - "sport": "MLB", - "season": "2026", - "date": "2026-08-20", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "Seattle Mariners", - "home_team_abbrev": "MIL", - "away_team_abbrev": "SEA", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_bal_0820", - "sport": "MLB", - "season": "2026", - "date": "2026-08-20", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "New York Yankees", - "home_team_abbrev": "BAL", - "away_team_abbrev": "NYY", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_tex_0820", - "sport": "MLB", - "season": "2026", - "date": "2026-08-20", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Washington Nationals", - "home_team_abbrev": "TEX", - "away_team_abbrev": "WSH", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_cle_0820", - "sport": "MLB", - "season": "2026", - "date": "2026-08-20", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "San Francisco Giants", - "home_team_abbrev": "CLE", - "away_team_abbrev": "SF", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_hou_0820", - "sport": "MLB", - "season": "2026", - "date": "2026-08-20", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "HOU", - "away_team_abbrev": "LAA", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_mil_0821", - "sport": "MLB", - "season": "2026", - "date": "2026-08-21", - "time": "20:10", - "home_team": "Milwaukee Brewers", - "away_team": "Atlanta Braves", - "home_team_abbrev": "MIL", - "away_team_abbrev": "ATL", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_phi_0821", - "sport": "MLB", - "season": "2026", - "date": "2026-08-21", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "PHI", - "away_team_abbrev": "STL", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_bal_0821", - "sport": "MLB", - "season": "2026", - "date": "2026-08-21", - "time": "23:05", - "home_team": "Baltimore Orioles", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "BAL", - "away_team_abbrev": "TB", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_nyy_0821", - "sport": "MLB", - "season": "2026", - "date": "2026-08-21", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "NYY", - "away_team_abbrev": "TOR", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_bos_0821", - "sport": "MLB", - "season": "2026", - "date": "2026-08-21", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "San Francisco Giants", - "home_team_abbrev": "BOS", - "away_team_abbrev": "SF", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_mia_0821", - "sport": "MLB", - "season": "2026", - "date": "2026-08-21", - "time": "23:10", - "home_team": "Miami Marlins", - "away_team": "Washington Nationals", - "home_team_abbrev": "MIA", - "away_team_abbrev": "WSH", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_cws_0821", - "sport": "MLB", - "season": "2026", - "date": "2026-08-21", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "New York Mets", - "home_team_abbrev": "CWS", - "away_team_abbrev": "NYM", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_tex_0821", - "sport": "MLB", - "season": "2026", - "date": "2026-08-21", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "TEX", - "away_team_abbrev": "LAA", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_kc_0821", - "sport": "MLB", - "season": "2026", - "date": "2026-08-21", - "time": "00:10", - "home_team": "Kansas City Royals", - "away_team": "Detroit Tigers", - "home_team_abbrev": "KC", - "away_team_abbrev": "DET", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_col_0821", - "sport": "MLB", - "season": "2026", - "date": "2026-08-21", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "COL", - "away_team_abbrev": "CLE", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_az_0821", - "sport": "MLB", - "season": "2026", - "date": "2026-08-21", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "AZ", - "away_team_abbrev": "CIN", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_sd_0821", - "sport": "MLB", - "season": "2026", - "date": "2026-08-21", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Minnesota Twins", - "home_team_abbrev": "SD", - "away_team_abbrev": "MIN", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_lad_0821", - "sport": "MLB", - "season": "2026", - "date": "2026-08-21", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "LAD", - "away_team_abbrev": "PIT", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_sea_0821", - "sport": "MLB", - "season": "2026", - "date": "2026-08-21", - "time": "02:10", - "home_team": "Seattle Mariners", - "away_team": "Chicago Cubs", - "home_team_abbrev": "SEA", - "away_team_abbrev": "CHC", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_hou_0821", - "sport": "MLB", - "season": "2026", - "date": "2026-08-21", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Athletics", - "home_team_abbrev": "HOU", - "away_team_abbrev": "ATH", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_nyy_0822", - "sport": "MLB", - "season": "2026", - "date": "2026-08-22", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "NYY", - "away_team_abbrev": "TOR", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_mil_0822", - "sport": "MLB", - "season": "2026", - "date": "2026-08-22", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "Atlanta Braves", - "home_team_abbrev": "MIL", - "away_team_abbrev": "ATL", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_mia_0822", - "sport": "MLB", - "season": "2026", - "date": "2026-08-22", - "time": "20:10", - "home_team": "Miami Marlins", - "away_team": "Washington Nationals", - "home_team_abbrev": "MIA", - "away_team_abbrev": "WSH", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_phi_0822", - "sport": "MLB", - "season": "2026", - "date": "2026-08-22", - "time": "22:05", - "home_team": "Philadelphia Phillies", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "PHI", - "away_team_abbrev": "STL", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_bal_0822", - "sport": "MLB", - "season": "2026", - "date": "2026-08-22", - "time": "23:05", - "home_team": "Baltimore Orioles", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "BAL", - "away_team_abbrev": "TB", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_tex_0822", - "sport": "MLB", - "season": "2026", - "date": "2026-08-22", - "time": "23:05", - "home_team": "Texas Rangers", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "TEX", - "away_team_abbrev": "LAA", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_kc_0822", - "sport": "MLB", - "season": "2026", - "date": "2026-08-22", - "time": "23:10", - "home_team": "Kansas City Royals", - "away_team": "Detroit Tigers", - "home_team_abbrev": "KC", - "away_team_abbrev": "DET", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_cws_0822", - "sport": "MLB", - "season": "2026", - "date": "2026-08-22", - "time": "23:10", - "home_team": "Chicago White Sox", - "away_team": "New York Mets", - "home_team_abbrev": "CWS", - "away_team_abbrev": "NYM", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_bos_0822", - "sport": "MLB", - "season": "2026", - "date": "2026-08-22", - "time": "23:15", - "home_team": "Boston Red Sox", - "away_team": "San Francisco Giants", - "home_team_abbrev": "BOS", - "away_team_abbrev": "SF", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_az_0822", - "sport": "MLB", - "season": "2026", - "date": "2026-08-22", - "time": "00:10", - "home_team": "Arizona Diamondbacks", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "AZ", - "away_team_abbrev": "CIN", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_col_0822", - "sport": "MLB", - "season": "2026", - "date": "2026-08-22", - "time": "00:10", - "home_team": "Colorado Rockies", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "COL", - "away_team_abbrev": "CLE", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_sd_0822", - "sport": "MLB", - "season": "2026", - "date": "2026-08-22", - "time": "00:40", - "home_team": "San Diego Padres", - "away_team": "Minnesota Twins", - "home_team_abbrev": "SD", - "away_team_abbrev": "MIN", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_lad_0822", - "sport": "MLB", - "season": "2026", - "date": "2026-08-22", - "time": "01:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "LAD", - "away_team_abbrev": "PIT", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_sea_0822", - "sport": "MLB", - "season": "2026", - "date": "2026-08-22", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Chicago Cubs", - "home_team_abbrev": "SEA", - "away_team_abbrev": "CHC", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_hou_0822", - "sport": "MLB", - "season": "2026", - "date": "2026-08-22", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Athletics", - "home_team_abbrev": "HOU", - "away_team_abbrev": "ATH", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_bos_0823", - "sport": "MLB", - "season": "2026", - "date": "2026-08-23", - "time": "17:35", - "home_team": "Boston Red Sox", - "away_team": "San Francisco Giants", - "home_team_abbrev": "BOS", - "away_team_abbrev": "SF", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_bal_0823", - "sport": "MLB", - "season": "2026", - "date": "2026-08-23", - "time": "17:35", - "home_team": "Baltimore Orioles", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "BAL", - "away_team_abbrev": "TB", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_phi_0823", - "sport": "MLB", - "season": "2026", - "date": "2026-08-23", - "time": "17:35", - "home_team": "Philadelphia Phillies", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "PHI", - "away_team_abbrev": "STL", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_nyy_0823", - "sport": "MLB", - "season": "2026", - "date": "2026-08-23", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "NYY", - "away_team_abbrev": "TOR", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_mia_0823", - "sport": "MLB", - "season": "2026", - "date": "2026-08-23", - "time": "17:40", - "home_team": "Miami Marlins", - "away_team": "Washington Nationals", - "home_team_abbrev": "MIA", - "away_team_abbrev": "WSH", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_kc_0823", - "sport": "MLB", - "season": "2026", - "date": "2026-08-23", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "Detroit Tigers", - "home_team_abbrev": "KC", - "away_team_abbrev": "DET", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_cws_0823", - "sport": "MLB", - "season": "2026", - "date": "2026-08-23", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "New York Mets", - "home_team_abbrev": "CWS", - "away_team_abbrev": "NYM", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_tex_0823", - "sport": "MLB", - "season": "2026", - "date": "2026-08-23", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "TEX", - "away_team_abbrev": "LAA", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_col_0823", - "sport": "MLB", - "season": "2026", - "date": "2026-08-23", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "COL", - "away_team_abbrev": "CLE", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_az_0823", - "sport": "MLB", - "season": "2026", - "date": "2026-08-23", - "time": "20:10", - "home_team": "Arizona Diamondbacks", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "AZ", - "away_team_abbrev": "CIN", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_lad_0823", - "sport": "MLB", - "season": "2026", - "date": "2026-08-23", - "time": "20:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "LAD", - "away_team_abbrev": "PIT", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_sea_0823", - "sport": "MLB", - "season": "2026", - "date": "2026-08-23", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Chicago Cubs", - "home_team_abbrev": "SEA", - "away_team_abbrev": "CHC", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_sd_0823", - "sport": "MLB", - "season": "2026", - "date": "2026-08-23", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "Minnesota Twins", - "home_team_abbrev": "SD", - "away_team_abbrev": "MIN", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_mil_0823", - "sport": "MLB", - "season": "2026", - "date": "2026-08-23", - "time": "23:10", - "home_team": "Milwaukee Brewers", - "away_team": "Atlanta Braves", - "home_team_abbrev": "MIL", - "away_team_abbrev": "ATL", - "venue": "Journey Bank Ballpark", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_hou_0823", - "sport": "MLB", - "season": "2026", - "date": "2026-08-23", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Athletics", - "home_team_abbrev": "HOU", - "away_team_abbrev": "ATH", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_det_0824", - "sport": "MLB", - "season": "2026", - "date": "2026-08-24", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "DET", - "away_team_abbrev": "TB", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_mia_0824", - "sport": "MLB", - "season": "2026", - "date": "2026-08-24", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Boston Red Sox", - "home_team_abbrev": "MIA", - "away_team_abbrev": "BOS", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_wsh_0824", - "sport": "MLB", - "season": "2026", - "date": "2026-08-24", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Colorado Rockies", - "home_team_abbrev": "WSH", - "away_team_abbrev": "COL", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_cws_0824", - "sport": "MLB", - "season": "2026", - "date": "2026-08-24", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Texas Rangers", - "home_team_abbrev": "CWS", - "away_team_abbrev": "TEX", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_laa_0824", - "sport": "MLB", - "season": "2026", - "date": "2026-08-24", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "LAA", - "away_team_abbrev": "CLE", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_az_0824", - "sport": "MLB", - "season": "2026", - "date": "2026-08-24", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Chicago Cubs", - "home_team_abbrev": "AZ", - "away_team_abbrev": "CHC", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_sd_0824", - "sport": "MLB", - "season": "2026", - "date": "2026-08-24", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "SD", - "away_team_abbrev": "PIT", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_ath_0824", - "sport": "MLB", - "season": "2026", - "date": "2026-08-24", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Minnesota Twins", - "home_team_abbrev": "ATH", - "away_team_abbrev": "MIN", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_sea_0824", - "sport": "MLB", - "season": "2026", - "date": "2026-08-24", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "SEA", - "away_team_abbrev": "PHI", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_sf_0824", - "sport": "MLB", - "season": "2026", - "date": "2026-08-24", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "SF", - "away_team_abbrev": "CIN", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_det_0825", - "sport": "MLB", - "season": "2026", - "date": "2026-08-25", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "DET", - "away_team_abbrev": "TB", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_mia_0825", - "sport": "MLB", - "season": "2026", - "date": "2026-08-25", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Boston Red Sox", - "home_team_abbrev": "MIA", - "away_team_abbrev": "BOS", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_wsh_0825", - "sport": "MLB", - "season": "2026", - "date": "2026-08-25", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Colorado Rockies", - "home_team_abbrev": "WSH", - "away_team_abbrev": "COL", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_nyy_0825", - "sport": "MLB", - "season": "2026", - "date": "2026-08-25", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Houston Astros", - "home_team_abbrev": "NYY", - "away_team_abbrev": "HOU", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_tor_0825", - "sport": "MLB", - "season": "2026", - "date": "2026-08-25", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Kansas City Royals", - "home_team_abbrev": "TOR", - "away_team_abbrev": "KC", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_nym_0825", - "sport": "MLB", - "season": "2026", - "date": "2026-08-25", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "NYM", - "away_team_abbrev": "MIL", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_atl_0825", - "sport": "MLB", - "season": "2026", - "date": "2026-08-25", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "LAD", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_cws_0825", - "sport": "MLB", - "season": "2026", - "date": "2026-08-25", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Texas Rangers", - "home_team_abbrev": "CWS", - "away_team_abbrev": "TEX", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_stl_0825", - "sport": "MLB", - "season": "2026", - "date": "2026-08-25", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "STL", - "away_team_abbrev": "BAL", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_laa_0825", - "sport": "MLB", - "season": "2026", - "date": "2026-08-25", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "LAA", - "away_team_abbrev": "CLE", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_az_0825", - "sport": "MLB", - "season": "2026", - "date": "2026-08-25", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Chicago Cubs", - "home_team_abbrev": "AZ", - "away_team_abbrev": "CHC", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_sd_0825", - "sport": "MLB", - "season": "2026", - "date": "2026-08-25", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "SD", - "away_team_abbrev": "PIT", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_ath_0825", - "sport": "MLB", - "season": "2026", - "date": "2026-08-25", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Minnesota Twins", - "home_team_abbrev": "ATH", - "away_team_abbrev": "MIN", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_sea_0825", - "sport": "MLB", - "season": "2026", - "date": "2026-08-25", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "SEA", - "away_team_abbrev": "PHI", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_sf_0825", - "sport": "MLB", - "season": "2026", - "date": "2026-08-25", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "SF", - "away_team_abbrev": "CIN", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_det_0826", - "sport": "MLB", - "season": "2026", - "date": "2026-08-26", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "DET", - "away_team_abbrev": "TB", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_az_0826", - "sport": "MLB", - "season": "2026", - "date": "2026-08-26", - "time": "19:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Chicago Cubs", - "home_team_abbrev": "AZ", - "away_team_abbrev": "CHC", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_sf_0826", - "sport": "MLB", - "season": "2026", - "date": "2026-08-26", - "time": "19:45", - "home_team": "San Francisco Giants", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "SF", - "away_team_abbrev": "CIN", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_laa_0826", - "sport": "MLB", - "season": "2026", - "date": "2026-08-26", - "time": "20:07", - "home_team": "Los Angeles Angels", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "LAA", - "away_team_abbrev": "CLE", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_sd_0826", - "sport": "MLB", - "season": "2026", - "date": "2026-08-26", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "SD", - "away_team_abbrev": "PIT", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_sea_0826", - "sport": "MLB", - "season": "2026", - "date": "2026-08-26", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "SEA", - "away_team_abbrev": "PHI", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_mia_0826", - "sport": "MLB", - "season": "2026", - "date": "2026-08-26", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "Boston Red Sox", - "home_team_abbrev": "MIA", - "away_team_abbrev": "BOS", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_wsh_0826", - "sport": "MLB", - "season": "2026", - "date": "2026-08-26", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Colorado Rockies", - "home_team_abbrev": "WSH", - "away_team_abbrev": "COL", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_nyy_0826", - "sport": "MLB", - "season": "2026", - "date": "2026-08-26", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Houston Astros", - "home_team_abbrev": "NYY", - "away_team_abbrev": "HOU", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_tor_0826", - "sport": "MLB", - "season": "2026", - "date": "2026-08-26", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Kansas City Royals", - "home_team_abbrev": "TOR", - "away_team_abbrev": "KC", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_nym_0826", - "sport": "MLB", - "season": "2026", - "date": "2026-08-26", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "NYM", - "away_team_abbrev": "MIL", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_atl_0826", - "sport": "MLB", - "season": "2026", - "date": "2026-08-26", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "LAD", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_cws_0826", - "sport": "MLB", - "season": "2026", - "date": "2026-08-26", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Texas Rangers", - "home_team_abbrev": "CWS", - "away_team_abbrev": "TEX", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_stl_0826", - "sport": "MLB", - "season": "2026", - "date": "2026-08-26", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "STL", - "away_team_abbrev": "BAL", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_ath_0826", - "sport": "MLB", - "season": "2026", - "date": "2026-08-26", - "time": "01:05", - "home_team": "Athletics", - "away_team": "Minnesota Twins", - "home_team_abbrev": "ATH", - "away_team_abbrev": "MIN", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_wsh_0827", - "sport": "MLB", - "season": "2026", - "date": "2026-08-27", - "time": "17:05", - "home_team": "Washington Nationals", - "away_team": "Colorado Rockies", - "home_team_abbrev": "WSH", - "away_team_abbrev": "COL", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_stl_0827", - "sport": "MLB", - "season": "2026", - "date": "2026-08-27", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "STL", - "away_team_abbrev": "BAL", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_nyy_0827", - "sport": "MLB", - "season": "2026", - "date": "2026-08-27", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Houston Astros", - "home_team_abbrev": "NYY", - "away_team_abbrev": "HOU", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_tor_0827", - "sport": "MLB", - "season": "2026", - "date": "2026-08-27", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Kansas City Royals", - "home_team_abbrev": "TOR", - "away_team_abbrev": "KC", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_nym_0827", - "sport": "MLB", - "season": "2026", - "date": "2026-08-27", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "NYM", - "away_team_abbrev": "MIL", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_atl_0827", - "sport": "MLB", - "season": "2026", - "date": "2026-08-27", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "ATL", - "away_team_abbrev": "LAD", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_sf_0827", - "sport": "MLB", - "season": "2026", - "date": "2026-08-27", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "SF", - "away_team_abbrev": "AZ", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_det_0828", - "sport": "MLB", - "season": "2026", - "date": "2026-08-28", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "DET", - "away_team_abbrev": "LAD", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_wsh_0828", - "sport": "MLB", - "season": "2026", - "date": "2026-08-28", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Miami Marlins", - "home_team_abbrev": "WSH", - "away_team_abbrev": "MIA", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_nyy_0828", - "sport": "MLB", - "season": "2026", - "date": "2026-08-28", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Boston Red Sox", - "home_team_abbrev": "NYY", - "away_team_abbrev": "BOS", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_tor_0828", - "sport": "MLB", - "season": "2026", - "date": "2026-08-28", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Seattle Mariners", - "home_team_abbrev": "TOR", - "away_team_abbrev": "SEA", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_nym_0828", - "sport": "MLB", - "season": "2026", - "date": "2026-08-28", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Houston Astros", - "home_team_abbrev": "NYM", - "away_team_abbrev": "HOU", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_tb_0828", - "sport": "MLB", - "season": "2026", - "date": "2026-08-28", - "time": "23:10", - "home_team": "Tampa Bay Rays", - "away_team": "San Diego Padres", - "home_team_abbrev": "TB", - "away_team_abbrev": "SD", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_atl_0828", - "sport": "MLB", - "season": "2026", - "date": "2026-08-28", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Colorado Rockies", - "home_team_abbrev": "ATL", - "away_team_abbrev": "COL", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_mil_0828", - "sport": "MLB", - "season": "2026", - "date": "2026-08-28", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Texas Rangers", - "home_team_abbrev": "MIL", - "away_team_abbrev": "TEX", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_min_0828", - "sport": "MLB", - "season": "2026", - "date": "2026-08-28", - "time": "00:10", - "home_team": "Minnesota Twins", - "away_team": "Chicago White Sox", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CWS", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_stl_0828", - "sport": "MLB", - "season": "2026", - "date": "2026-08-28", - "time": "00:15", - "home_team": "St. Louis Cardinals", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "STL", - "away_team_abbrev": "PIT", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_laa_0828", - "sport": "MLB", - "season": "2026", - "date": "2026-08-28", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "LAA", - "away_team_abbrev": "PHI", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_ath_0828", - "sport": "MLB", - "season": "2026", - "date": "2026-08-28", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "ATH", - "away_team_abbrev": "BAL", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_sf_0828", - "sport": "MLB", - "season": "2026", - "date": "2026-08-28", - "time": "02:15", - "home_team": "San Francisco Giants", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "SF", - "away_team_abbrev": "AZ", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_cle_0828", - "sport": "MLB", - "season": "2026", - "date": "2026-08-28", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Kansas City Royals", - "home_team_abbrev": "CLE", - "away_team_abbrev": "KC", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_chc_0828", - "sport": "MLB", - "season": "2026", - "date": "2026-08-28", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "CHC", - "away_team_abbrev": "CIN", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_det_0829", - "sport": "MLB", - "season": "2026", - "date": "2026-08-29", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "DET", - "away_team_abbrev": "LAD", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_min_0829", - "sport": "MLB", - "season": "2026", - "date": "2026-08-29", - "time": "18:10", - "home_team": "Minnesota Twins", - "away_team": "Chicago White Sox", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CWS", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_stl_0829", - "sport": "MLB", - "season": "2026", - "date": "2026-08-29", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "STL", - "away_team_abbrev": "PIT", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_tor_0829", - "sport": "MLB", - "season": "2026", - "date": "2026-08-29", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "Seattle Mariners", - "home_team_abbrev": "TOR", - "away_team_abbrev": "SEA", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_wsh_0829", - "sport": "MLB", - "season": "2026", - "date": "2026-08-29", - "time": "20:05", - "home_team": "Washington Nationals", - "away_team": "Miami Marlins", - "home_team_abbrev": "WSH", - "away_team_abbrev": "MIA", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_nym_0829", - "sport": "MLB", - "season": "2026", - "date": "2026-08-29", - "time": "20:10", - "home_team": "New York Mets", - "away_team": "Houston Astros", - "home_team_abbrev": "NYM", - "away_team_abbrev": "HOU", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_tb_0829", - "sport": "MLB", - "season": "2026", - "date": "2026-08-29", - "time": "20:10", - "home_team": "Tampa Bay Rays", - "away_team": "San Diego Padres", - "home_team_abbrev": "TB", - "away_team_abbrev": "SD", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_atl_0829", - "sport": "MLB", - "season": "2026", - "date": "2026-08-29", - "time": "20:10", - "home_team": "Atlanta Braves", - "away_team": "Colorado Rockies", - "home_team_abbrev": "ATL", - "away_team_abbrev": "COL", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_nyy_0829", - "sport": "MLB", - "season": "2026", - "date": "2026-08-29", - "time": "23:15", - "home_team": "New York Yankees", - "away_team": "Boston Red Sox", - "home_team_abbrev": "NYY", - "away_team_abbrev": "BOS", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_mil_0829", - "sport": "MLB", - "season": "2026", - "date": "2026-08-29", - "time": "23:15", - "home_team": "Milwaukee Brewers", - "away_team": "Texas Rangers", - "home_team_abbrev": "MIL", - "away_team_abbrev": "TEX", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_ath_0829", - "sport": "MLB", - "season": "2026", - "date": "2026-08-29", - "time": "02:05", - "home_team": "Athletics", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "ATH", - "away_team_abbrev": "BAL", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_laa_0829", - "sport": "MLB", - "season": "2026", - "date": "2026-08-29", - "time": "02:07", - "home_team": "Los Angeles Angels", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "LAA", - "away_team_abbrev": "PHI", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_cle_0829", - "sport": "MLB", - "season": "2026", - "date": "2026-08-29", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Kansas City Royals", - "home_team_abbrev": "CLE", - "away_team_abbrev": "KC", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_chc_0829", - "sport": "MLB", - "season": "2026", - "date": "2026-08-29", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "CHC", - "away_team_abbrev": "CIN", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_sf_0829", - "sport": "MLB", - "season": "2026", - "date": "2026-08-29", - "time": "10:33", - "home_team": "San Francisco Giants", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "SF", - "away_team_abbrev": "AZ", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_atl_0830", - "sport": "MLB", - "season": "2026", - "date": "2026-08-30", - "time": "17:35", - "home_team": "Atlanta Braves", - "away_team": "Colorado Rockies", - "home_team_abbrev": "ATL", - "away_team_abbrev": "COL", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_wsh_0830", - "sport": "MLB", - "season": "2026", - "date": "2026-08-30", - "time": "17:35", - "home_team": "Washington Nationals", - "away_team": "Miami Marlins", - "home_team_abbrev": "WSH", - "away_team_abbrev": "MIA", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_nyy_0830", - "sport": "MLB", - "season": "2026", - "date": "2026-08-30", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "Boston Red Sox", - "home_team_abbrev": "NYY", - "away_team_abbrev": "BOS", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_tor_0830", - "sport": "MLB", - "season": "2026", - "date": "2026-08-30", - "time": "17:37", - "home_team": "Toronto Blue Jays", - "away_team": "Seattle Mariners", - "home_team_abbrev": "TOR", - "away_team_abbrev": "SEA", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_det_0830", - "sport": "MLB", - "season": "2026", - "date": "2026-08-30", - "time": "17:40", - "home_team": "Detroit Tigers", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "DET", - "away_team_abbrev": "LAD", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_nym_0830", - "sport": "MLB", - "season": "2026", - "date": "2026-08-30", - "time": "17:40", - "home_team": "New York Mets", - "away_team": "Houston Astros", - "home_team_abbrev": "NYM", - "away_team_abbrev": "HOU", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_tb_0830", - "sport": "MLB", - "season": "2026", - "date": "2026-08-30", - "time": "17:40", - "home_team": "Tampa Bay Rays", - "away_team": "San Diego Padres", - "home_team_abbrev": "TB", - "away_team_abbrev": "SD", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_min_0830", - "sport": "MLB", - "season": "2026", - "date": "2026-08-30", - "time": "18:10", - "home_team": "Minnesota Twins", - "away_team": "Chicago White Sox", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CWS", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_mil_0830", - "sport": "MLB", - "season": "2026", - "date": "2026-08-30", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "Texas Rangers", - "home_team_abbrev": "MIL", - "away_team_abbrev": "TEX", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_stl_0830", - "sport": "MLB", - "season": "2026", - "date": "2026-08-30", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "STL", - "away_team_abbrev": "PIT", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_ath_0830", - "sport": "MLB", - "season": "2026", - "date": "2026-08-30", - "time": "20:05", - "home_team": "Athletics", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "ATH", - "away_team_abbrev": "BAL", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_sf_0830", - "sport": "MLB", - "season": "2026", - "date": "2026-08-30", - "time": "20:05", - "home_team": "San Francisco Giants", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "SF", - "away_team_abbrev": "AZ", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_laa_0830", - "sport": "MLB", - "season": "2026", - "date": "2026-08-30", - "time": "20:07", - "home_team": "Los Angeles Angels", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "LAA", - "away_team_abbrev": "PHI", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_cle_0830", - "sport": "MLB", - "season": "2026", - "date": "2026-08-30", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Kansas City Royals", - "home_team_abbrev": "CLE", - "away_team_abbrev": "KC", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_chc_0830", - "sport": "MLB", - "season": "2026", - "date": "2026-08-30", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "CHC", - "away_team_abbrev": "CIN", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_cin_0831", - "sport": "MLB", - "season": "2026", - "date": "2026-08-31", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "San Diego Padres", - "home_team_abbrev": "CIN", - "away_team_abbrev": "SD", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_tb_0831", - "sport": "MLB", - "season": "2026", - "date": "2026-08-31", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "New York Mets", - "home_team_abbrev": "TB", - "away_team_abbrev": "NYM", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_bos_0831", - "sport": "MLB", - "season": "2026", - "date": "2026-08-31", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "Seattle Mariners", - "home_team_abbrev": "BOS", - "away_team_abbrev": "SEA", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_wsh_0831", - "sport": "MLB", - "season": "2026", - "date": "2026-08-31", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Miami Marlins", - "home_team_abbrev": "WSH", - "away_team_abbrev": "MIA", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_min_0831", - "sport": "MLB", - "season": "2026", - "date": "2026-08-31", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Detroit Tigers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "DET", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_tex_0831", - "sport": "MLB", - "season": "2026", - "date": "2026-08-31", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Athletics", - "home_team_abbrev": "TEX", - "away_team_abbrev": "ATH", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_col_0831", - "sport": "MLB", - "season": "2026", - "date": "2026-08-31", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "COL", - "away_team_abbrev": "BAL", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_laa_0831", - "sport": "MLB", - "season": "2026", - "date": "2026-08-31", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "New York Yankees", - "home_team_abbrev": "LAA", - "away_team_abbrev": "NYY", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_az_0831", - "sport": "MLB", - "season": "2026", - "date": "2026-08-31", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "AZ", - "away_team_abbrev": "PHI", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_hou_0831", - "sport": "MLB", - "season": "2026", - "date": "2026-08-31", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Chicago White Sox", - "home_team_abbrev": "HOU", - "away_team_abbrev": "CWS", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_chc_0831", - "sport": "MLB", - "season": "2026", - "date": "2026-08-31", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "CHC", - "away_team_abbrev": "MIL", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_cin_0901", - "sport": "MLB", - "season": "2026", - "date": "2026-09-01", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "San Diego Padres", - "home_team_abbrev": "CIN", - "away_team_abbrev": "SD", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_pit_0901", - "sport": "MLB", - "season": "2026", - "date": "2026-09-01", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "San Francisco Giants", - "home_team_abbrev": "PIT", - "away_team_abbrev": "SF", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_tb_0901", - "sport": "MLB", - "season": "2026", - "date": "2026-09-01", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "New York Mets", - "home_team_abbrev": "TB", - "away_team_abbrev": "NYM", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_bos_0901", - "sport": "MLB", - "season": "2026", - "date": "2026-09-01", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "Seattle Mariners", - "home_team_abbrev": "BOS", - "away_team_abbrev": "SEA", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_wsh_0901", - "sport": "MLB", - "season": "2026", - "date": "2026-09-01", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Atlanta Braves", - "home_team_abbrev": "WSH", - "away_team_abbrev": "ATL", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_min_0901", - "sport": "MLB", - "season": "2026", - "date": "2026-09-01", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Detroit Tigers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "DET", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_kc_0901", - "sport": "MLB", - "season": "2026", - "date": "2026-09-01", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Miami Marlins", - "home_team_abbrev": "KC", - "away_team_abbrev": "MIA", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_tex_0901", - "sport": "MLB", - "season": "2026", - "date": "2026-09-01", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Athletics", - "home_team_abbrev": "TEX", - "away_team_abbrev": "ATH", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_col_0901", - "sport": "MLB", - "season": "2026", - "date": "2026-09-01", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "COL", - "away_team_abbrev": "BAL", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_laa_0901", - "sport": "MLB", - "season": "2026", - "date": "2026-09-01", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "New York Yankees", - "home_team_abbrev": "LAA", - "away_team_abbrev": "NYY", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_az_0901", - "sport": "MLB", - "season": "2026", - "date": "2026-09-01", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "AZ", - "away_team_abbrev": "PHI", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_lad_0901", - "sport": "MLB", - "season": "2026", - "date": "2026-09-01", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "LAD", - "away_team_abbrev": "STL", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_cle_0901", - "sport": "MLB", - "season": "2026", - "date": "2026-09-01", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "CLE", - "away_team_abbrev": "TOR", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_hou_0901", - "sport": "MLB", - "season": "2026", - "date": "2026-09-01", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Chicago White Sox", - "home_team_abbrev": "HOU", - "away_team_abbrev": "CWS", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_chc_0901", - "sport": "MLB", - "season": "2026", - "date": "2026-09-01", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "CHC", - "away_team_abbrev": "MIL", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_cin_0902", - "sport": "MLB", - "season": "2026", - "date": "2026-09-02", - "time": "16:40", - "home_team": "Cincinnati Reds", - "away_team": "San Diego Padres", - "home_team_abbrev": "CIN", - "away_team_abbrev": "SD", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_wsh_0902", - "sport": "MLB", - "season": "2026", - "date": "2026-09-02", - "time": "17:05", - "home_team": "Washington Nationals", - "away_team": "Atlanta Braves", - "home_team_abbrev": "WSH", - "away_team_abbrev": "ATL", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_tex_0902", - "sport": "MLB", - "season": "2026", - "date": "2026-09-02", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "Athletics", - "home_team_abbrev": "TEX", - "away_team_abbrev": "ATH", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_col_0902", - "sport": "MLB", - "season": "2026", - "date": "2026-09-02", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "COL", - "away_team_abbrev": "BAL", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_az_0902", - "sport": "MLB", - "season": "2026", - "date": "2026-09-02", - "time": "19:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "AZ", - "away_team_abbrev": "PHI", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_bos_0902", - "sport": "MLB", - "season": "2026", - "date": "2026-09-02", - "time": "20:10", - "home_team": "Boston Red Sox", - "away_team": "Seattle Mariners", - "home_team_abbrev": "BOS", - "away_team_abbrev": "SEA", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_pit_0902", - "sport": "MLB", - "season": "2026", - "date": "2026-09-02", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "San Francisco Giants", - "home_team_abbrev": "PIT", - "away_team_abbrev": "SF", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_tb_0902", - "sport": "MLB", - "season": "2026", - "date": "2026-09-02", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "New York Mets", - "home_team_abbrev": "TB", - "away_team_abbrev": "NYM", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_min_0902", - "sport": "MLB", - "season": "2026", - "date": "2026-09-02", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "Detroit Tigers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "DET", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_kc_0902", - "sport": "MLB", - "season": "2026", - "date": "2026-09-02", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Miami Marlins", - "home_team_abbrev": "KC", - "away_team_abbrev": "MIA", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_laa_0902", - "sport": "MLB", - "season": "2026", - "date": "2026-09-02", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "New York Yankees", - "home_team_abbrev": "LAA", - "away_team_abbrev": "NYY", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_lad_0902", - "sport": "MLB", - "season": "2026", - "date": "2026-09-02", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "LAD", - "away_team_abbrev": "STL", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_cle_0902", - "sport": "MLB", - "season": "2026", - "date": "2026-09-02", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "CLE", - "away_team_abbrev": "TOR", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_hou_0902", - "sport": "MLB", - "season": "2026", - "date": "2026-09-02", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Chicago White Sox", - "home_team_abbrev": "HOU", - "away_team_abbrev": "CWS", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_chc_0902", - "sport": "MLB", - "season": "2026", - "date": "2026-09-02", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "CHC", - "away_team_abbrev": "MIL", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_pit_0903", - "sport": "MLB", - "season": "2026", - "date": "2026-09-03", - "time": "16:35", - "home_team": "Pittsburgh Pirates", - "away_team": "San Francisco Giants", - "home_team_abbrev": "PIT", - "away_team_abbrev": "SF", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_bal_0903", - "sport": "MLB", - "season": "2026", - "date": "2026-09-03", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Boston Red Sox", - "home_team_abbrev": "BAL", - "away_team_abbrev": "BOS", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_kc_0903", - "sport": "MLB", - "season": "2026", - "date": "2026-09-03", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Miami Marlins", - "home_team_abbrev": "KC", - "away_team_abbrev": "MIA", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_tex_0903", - "sport": "MLB", - "season": "2026", - "date": "2026-09-03", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "TEX", - "away_team_abbrev": "TB", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_sea_0903", - "sport": "MLB", - "season": "2026", - "date": "2026-09-03", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Athletics", - "home_team_abbrev": "SEA", - "away_team_abbrev": "ATH", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_lad_0903", - "sport": "MLB", - "season": "2026", - "date": "2026-09-03", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "LAD", - "away_team_abbrev": "STL", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_cle_0903", - "sport": "MLB", - "season": "2026", - "date": "2026-09-03", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "CLE", - "away_team_abbrev": "TOR", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_hou_0903", - "sport": "MLB", - "season": "2026", - "date": "2026-09-03", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Chicago White Sox", - "home_team_abbrev": "HOU", - "away_team_abbrev": "CWS", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_chc_0903", - "sport": "MLB", - "season": "2026", - "date": "2026-09-03", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "CHC", - "away_team_abbrev": "MIL", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_pit_0904", - "sport": "MLB", - "season": "2026", - "date": "2026-09-04", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "PIT", - "away_team_abbrev": "LAA", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_phi_0904", - "sport": "MLB", - "season": "2026", - "date": "2026-09-04", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Atlanta Braves", - "home_team_abbrev": "PHI", - "away_team_abbrev": "ATL", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_cin_0904", - "sport": "MLB", - "season": "2026", - "date": "2026-09-04", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "CIN", - "away_team_abbrev": "MIL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_bal_0904", - "sport": "MLB", - "season": "2026", - "date": "2026-09-04", - "time": "23:05", - "home_team": "Baltimore Orioles", - "away_team": "Boston Red Sox", - "home_team_abbrev": "BAL", - "away_team_abbrev": "BOS", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_nym_0904", - "sport": "MLB", - "season": "2026", - "date": "2026-09-04", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "San Francisco Giants", - "home_team_abbrev": "NYM", - "away_team_abbrev": "SF", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_mia_0904", - "sport": "MLB", - "season": "2026", - "date": "2026-09-04", - "time": "23:10", - "home_team": "Miami Marlins", - "away_team": "Chicago Cubs", - "home_team_abbrev": "MIA", - "away_team_abbrev": "CHC", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_cws_0904", - "sport": "MLB", - "season": "2026", - "date": "2026-09-04", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Minnesota Twins", - "home_team_abbrev": "CWS", - "away_team_abbrev": "MIN", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_tex_0904", - "sport": "MLB", - "season": "2026", - "date": "2026-09-04", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "TEX", - "away_team_abbrev": "TB", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_kc_0904", - "sport": "MLB", - "season": "2026", - "date": "2026-09-04", - "time": "00:10", - "home_team": "Kansas City Royals", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "KC", - "away_team_abbrev": "TOR", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_col_0904", - "sport": "MLB", - "season": "2026", - "date": "2026-09-04", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "COL", - "away_team_abbrev": "STL", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_sd_0904", - "sport": "MLB", - "season": "2026", - "date": "2026-09-04", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "New York Yankees", - "home_team_abbrev": "SD", - "away_team_abbrev": "NYY", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_lad_0904", - "sport": "MLB", - "season": "2026", - "date": "2026-09-04", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Washington Nationals", - "home_team_abbrev": "LAD", - "away_team_abbrev": "WSH", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_sea_0904", - "sport": "MLB", - "season": "2026", - "date": "2026-09-04", - "time": "02:10", - "home_team": "Seattle Mariners", - "away_team": "Athletics", - "home_team_abbrev": "SEA", - "away_team_abbrev": "ATH", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_cle_0904", - "sport": "MLB", - "season": "2026", - "date": "2026-09-04", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Detroit Tigers", - "home_team_abbrev": "CLE", - "away_team_abbrev": "DET", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_hou_0904", - "sport": "MLB", - "season": "2026", - "date": "2026-09-04", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "HOU", - "away_team_abbrev": "AZ", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_nym_0905", - "sport": "MLB", - "season": "2026", - "date": "2026-09-05", - "time": "20:10", - "home_team": "New York Mets", - "away_team": "San Francisco Giants", - "home_team_abbrev": "NYM", - "away_team_abbrev": "SF", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_mia_0905", - "sport": "MLB", - "season": "2026", - "date": "2026-09-05", - "time": "20:10", - "home_team": "Miami Marlins", - "away_team": "Chicago Cubs", - "home_team_abbrev": "MIA", - "away_team_abbrev": "CHC", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_phi_0905", - "sport": "MLB", - "season": "2026", - "date": "2026-09-05", - "time": "22:05", - "home_team": "Philadelphia Phillies", - "away_team": "Atlanta Braves", - "home_team_abbrev": "PHI", - "away_team_abbrev": "ATL", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_pit_0905", - "sport": "MLB", - "season": "2026", - "date": "2026-09-05", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "PIT", - "away_team_abbrev": "LAA", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_cin_0905", - "sport": "MLB", - "season": "2026", - "date": "2026-09-05", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "CIN", - "away_team_abbrev": "MIL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_tex_0905", - "sport": "MLB", - "season": "2026", - "date": "2026-09-05", - "time": "23:05", - "home_team": "Texas Rangers", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "TEX", - "away_team_abbrev": "TB", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_kc_0905", - "sport": "MLB", - "season": "2026", - "date": "2026-09-05", - "time": "23:10", - "home_team": "Kansas City Royals", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "KC", - "away_team_abbrev": "TOR", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_cws_0905", - "sport": "MLB", - "season": "2026", - "date": "2026-09-05", - "time": "23:10", - "home_team": "Chicago White Sox", - "away_team": "Minnesota Twins", - "home_team_abbrev": "CWS", - "away_team_abbrev": "MIN", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_bal_0905", - "sport": "MLB", - "season": "2026", - "date": "2026-09-05", - "time": "23:15", - "home_team": "Baltimore Orioles", - "away_team": "Boston Red Sox", - "home_team_abbrev": "BAL", - "away_team_abbrev": "BOS", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_col_0905", - "sport": "MLB", - "season": "2026", - "date": "2026-09-05", - "time": "00:10", - "home_team": "Colorado Rockies", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "COL", - "away_team_abbrev": "STL", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_sd_0905", - "sport": "MLB", - "season": "2026", - "date": "2026-09-05", - "time": "00:40", - "home_team": "San Diego Padres", - "away_team": "New York Yankees", - "home_team_abbrev": "SD", - "away_team_abbrev": "NYY", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_lad_0905", - "sport": "MLB", - "season": "2026", - "date": "2026-09-05", - "time": "01:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Washington Nationals", - "home_team_abbrev": "LAD", - "away_team_abbrev": "WSH", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_sea_0905", - "sport": "MLB", - "season": "2026", - "date": "2026-09-05", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Athletics", - "home_team_abbrev": "SEA", - "away_team_abbrev": "ATH", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_cle_0905", - "sport": "MLB", - "season": "2026", - "date": "2026-09-05", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Detroit Tigers", - "home_team_abbrev": "CLE", - "away_team_abbrev": "DET", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_hou_0905", - "sport": "MLB", - "season": "2026", - "date": "2026-09-05", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "HOU", - "away_team_abbrev": "AZ", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_cin_0906", - "sport": "MLB", - "season": "2026", - "date": "2026-09-06", - "time": "16:10", - "home_team": "Cincinnati Reds", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "CIN", - "away_team_abbrev": "MIL", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_bal_0906", - "sport": "MLB", - "season": "2026", - "date": "2026-09-06", - "time": "17:35", - "home_team": "Baltimore Orioles", - "away_team": "Boston Red Sox", - "home_team_abbrev": "BAL", - "away_team_abbrev": "BOS", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_pit_0906", - "sport": "MLB", - "season": "2026", - "date": "2026-09-06", - "time": "17:35", - "home_team": "Pittsburgh Pirates", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "PIT", - "away_team_abbrev": "LAA", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_phi_0906", - "sport": "MLB", - "season": "2026", - "date": "2026-09-06", - "time": "17:35", - "home_team": "Philadelphia Phillies", - "away_team": "Atlanta Braves", - "home_team_abbrev": "PHI", - "away_team_abbrev": "ATL", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_nym_0906", - "sport": "MLB", - "season": "2026", - "date": "2026-09-06", - "time": "17:40", - "home_team": "New York Mets", - "away_team": "San Francisco Giants", - "home_team_abbrev": "NYM", - "away_team_abbrev": "SF", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_mia_0906", - "sport": "MLB", - "season": "2026", - "date": "2026-09-06", - "time": "17:40", - "home_team": "Miami Marlins", - "away_team": "Chicago Cubs", - "home_team_abbrev": "MIA", - "away_team_abbrev": "CHC", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_kc_0906", - "sport": "MLB", - "season": "2026", - "date": "2026-09-06", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "KC", - "away_team_abbrev": "TOR", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_cws_0906", - "sport": "MLB", - "season": "2026", - "date": "2026-09-06", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Minnesota Twins", - "home_team_abbrev": "CWS", - "away_team_abbrev": "MIN", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_tex_0906", - "sport": "MLB", - "season": "2026", - "date": "2026-09-06", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "TEX", - "away_team_abbrev": "TB", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_col_0906", - "sport": "MLB", - "season": "2026", - "date": "2026-09-06", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "COL", - "away_team_abbrev": "STL", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_sea_0906", - "sport": "MLB", - "season": "2026", - "date": "2026-09-06", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Athletics", - "home_team_abbrev": "SEA", - "away_team_abbrev": "ATH", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_sd_0906", - "sport": "MLB", - "season": "2026", - "date": "2026-09-06", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "New York Yankees", - "home_team_abbrev": "SD", - "away_team_abbrev": "NYY", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_lad_0906", - "sport": "MLB", - "season": "2026", - "date": "2026-09-06", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Washington Nationals", - "home_team_abbrev": "LAD", - "away_team_abbrev": "WSH", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_cle_0906", - "sport": "MLB", - "season": "2026", - "date": "2026-09-06", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Detroit Tigers", - "home_team_abbrev": "CLE", - "away_team_abbrev": "DET", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_hou_0906", - "sport": "MLB", - "season": "2026", - "date": "2026-09-06", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "HOU", - "away_team_abbrev": "AZ", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_phi_0907", - "sport": "MLB", - "season": "2026", - "date": "2026-09-07", - "time": "17:05", - "home_team": "Philadelphia Phillies", - "away_team": "Atlanta Braves", - "home_team_abbrev": "PHI", - "away_team_abbrev": "ATL", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_det_0907", - "sport": "MLB", - "season": "2026", - "date": "2026-09-07", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Minnesota Twins", - "home_team_abbrev": "DET", - "away_team_abbrev": "MIN", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_mia_0907", - "sport": "MLB", - "season": "2026", - "date": "2026-09-07", - "time": "17:10", - "home_team": "Miami Marlins", - "away_team": "New York Mets", - "home_team_abbrev": "MIA", - "away_team_abbrev": "NYM", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_bos_0907", - "sport": "MLB", - "season": "2026", - "date": "2026-09-07", - "time": "17:35", - "home_team": "Boston Red Sox", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "BOS", - "away_team_abbrev": "LAA", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_bal_0907", - "sport": "MLB", - "season": "2026", - "date": "2026-09-07", - "time": "17:35", - "home_team": "Baltimore Orioles", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "BAL", - "away_team_abbrev": "CLE", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_kc_0907", - "sport": "MLB", - "season": "2026", - "date": "2026-09-07", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "KC", - "away_team_abbrev": "AZ", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_mil_0907", - "sport": "MLB", - "season": "2026", - "date": "2026-09-07", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "Chicago Cubs", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CHC", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_sd_0907", - "sport": "MLB", - "season": "2026", - "date": "2026-09-07", - "time": "21:10", - "home_team": "San Diego Padres", - "away_team": "Washington Nationals", - "home_team_abbrev": "SD", - "away_team_abbrev": "WSH", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_sf_0907", - "sport": "MLB", - "season": "2026", - "date": "2026-09-07", - "time": "22:05", - "home_team": "San Francisco Giants", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "SF", - "away_team_abbrev": "STL", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_lad_0907", - "sport": "MLB", - "season": "2026", - "date": "2026-09-07", - "time": "01:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "LAD", - "away_team_abbrev": "CIN", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_ath_0907", - "sport": "MLB", - "season": "2026", - "date": "2026-09-07", - "time": "02:05", - "home_team": "Athletics", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "ATH", - "away_team_abbrev": "TOR", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_bal_0908", - "sport": "MLB", - "season": "2026", - "date": "2026-09-08", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "BAL", - "away_team_abbrev": "CLE", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_det_0908", - "sport": "MLB", - "season": "2026", - "date": "2026-09-08", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Minnesota Twins", - "home_team_abbrev": "DET", - "away_team_abbrev": "MIN", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_phi_0908", - "sport": "MLB", - "season": "2026", - "date": "2026-09-08", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Houston Astros", - "home_team_abbrev": "PHI", - "away_team_abbrev": "HOU", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_mia_0908", - "sport": "MLB", - "season": "2026", - "date": "2026-09-08", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "New York Mets", - "home_team_abbrev": "MIA", - "away_team_abbrev": "NYM", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_bos_0908", - "sport": "MLB", - "season": "2026", - "date": "2026-09-08", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "BOS", - "away_team_abbrev": "LAA", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_nyy_0908", - "sport": "MLB", - "season": "2026", - "date": "2026-09-08", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Colorado Rockies", - "home_team_abbrev": "NYY", - "away_team_abbrev": "COL", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_atl_0908", - "sport": "MLB", - "season": "2026", - "date": "2026-09-08", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "ATL", - "away_team_abbrev": "TB", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_kc_0908", - "sport": "MLB", - "season": "2026", - "date": "2026-09-08", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "KC", - "away_team_abbrev": "AZ", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_cws_0908", - "sport": "MLB", - "season": "2026", - "date": "2026-09-08", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "CWS", - "away_team_abbrev": "PIT", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_mil_0908", - "sport": "MLB", - "season": "2026", - "date": "2026-09-08", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Chicago Cubs", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CHC", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_sd_0908", - "sport": "MLB", - "season": "2026", - "date": "2026-09-08", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Washington Nationals", - "home_team_abbrev": "SD", - "away_team_abbrev": "WSH", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_sea_0908", - "sport": "MLB", - "season": "2026", - "date": "2026-09-08", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Texas Rangers", - "home_team_abbrev": "SEA", - "away_team_abbrev": "TEX", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_ath_0908", - "sport": "MLB", - "season": "2026", - "date": "2026-09-08", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "ATH", - "away_team_abbrev": "TOR", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_sf_0908", - "sport": "MLB", - "season": "2026", - "date": "2026-09-08", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "SF", - "away_team_abbrev": "STL", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_lad_0908", - "sport": "MLB", - "season": "2026", - "date": "2026-09-08", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "LAD", - "away_team_abbrev": "CIN", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_det_0909", - "sport": "MLB", - "season": "2026", - "date": "2026-09-09", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Minnesota Twins", - "home_team_abbrev": "DET", - "away_team_abbrev": "MIN", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_ath_0909", - "sport": "MLB", - "season": "2026", - "date": "2026-09-09", - "time": "19:05", - "home_team": "Athletics", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "ATH", - "away_team_abbrev": "TOR", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_sf_0909", - "sport": "MLB", - "season": "2026", - "date": "2026-09-09", - "time": "19:45", - "home_team": "San Francisco Giants", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "SF", - "away_team_abbrev": "STL", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_sd_0909", - "sport": "MLB", - "season": "2026", - "date": "2026-09-09", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "Washington Nationals", - "home_team_abbrev": "SD", - "away_team_abbrev": "WSH", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_bal_0909", - "sport": "MLB", - "season": "2026", - "date": "2026-09-09", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "BAL", - "away_team_abbrev": "CLE", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_phi_0909", - "sport": "MLB", - "season": "2026", - "date": "2026-09-09", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Houston Astros", - "home_team_abbrev": "PHI", - "away_team_abbrev": "HOU", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_mia_0909", - "sport": "MLB", - "season": "2026", - "date": "2026-09-09", - "time": "22:40", - "home_team": "Miami Marlins", - "away_team": "New York Mets", - "home_team_abbrev": "MIA", - "away_team_abbrev": "NYM", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_bos_0909", - "sport": "MLB", - "season": "2026", - "date": "2026-09-09", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "BOS", - "away_team_abbrev": "LAA", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_nyy_0909", - "sport": "MLB", - "season": "2026", - "date": "2026-09-09", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Colorado Rockies", - "home_team_abbrev": "NYY", - "away_team_abbrev": "COL", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_atl_0909", - "sport": "MLB", - "season": "2026", - "date": "2026-09-09", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "ATL", - "away_team_abbrev": "TB", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_kc_0909", - "sport": "MLB", - "season": "2026", - "date": "2026-09-09", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "KC", - "away_team_abbrev": "AZ", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_cws_0909", - "sport": "MLB", - "season": "2026", - "date": "2026-09-09", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "CWS", - "away_team_abbrev": "PIT", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_mil_0909", - "sport": "MLB", - "season": "2026", - "date": "2026-09-09", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Chicago Cubs", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CHC", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_sea_0909", - "sport": "MLB", - "season": "2026", - "date": "2026-09-09", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Texas Rangers", - "home_team_abbrev": "SEA", - "away_team_abbrev": "TEX", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_lad_0909", - "sport": "MLB", - "season": "2026", - "date": "2026-09-09", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "LAD", - "away_team_abbrev": "CIN", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_atl_0910", - "sport": "MLB", - "season": "2026", - "date": "2026-09-10", - "time": "16:15", - "home_team": "Atlanta Braves", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "ATL", - "away_team_abbrev": "TB", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_phi_0910", - "sport": "MLB", - "season": "2026", - "date": "2026-09-10", - "time": "17:05", - "home_team": "Philadelphia Phillies", - "away_team": "Houston Astros", - "home_team_abbrev": "PHI", - "away_team_abbrev": "HOU", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_sea_0910", - "sport": "MLB", - "season": "2026", - "date": "2026-09-10", - "time": "20:10", - "home_team": "Seattle Mariners", - "away_team": "Texas Rangers", - "home_team_abbrev": "SEA", - "away_team_abbrev": "TEX", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_nyy_0910", - "sport": "MLB", - "season": "2026", - "date": "2026-09-10", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Colorado Rockies", - "home_team_abbrev": "NYY", - "away_team_abbrev": "COL", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_cws_0910", - "sport": "MLB", - "season": "2026", - "date": "2026-09-10", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "CWS", - "away_team_abbrev": "PIT", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_det_0911", - "sport": "MLB", - "season": "2026", - "date": "2026-09-11", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Colorado Rockies", - "home_team_abbrev": "DET", - "away_team_abbrev": "COL", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_wsh_0911", - "sport": "MLB", - "season": "2026", - "date": "2026-09-11", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "WSH", - "away_team_abbrev": "LAA", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_tor_0911", - "sport": "MLB", - "season": "2026", - "date": "2026-09-11", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BAL", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_bos_0911", - "sport": "MLB", - "season": "2026", - "date": "2026-09-11", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Kansas City Royals", - "home_team_abbrev": "BOS", - "away_team_abbrev": "KC", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_tb_0911", - "sport": "MLB", - "season": "2026", - "date": "2026-09-11", - "time": "23:10", - "home_team": "Tampa Bay Rays", - "away_team": "Houston Astros", - "home_team_abbrev": "TB", - "away_team_abbrev": "HOU", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_mia_0911", - "sport": "MLB", - "season": "2026", - "date": "2026-09-11", - "time": "23:10", - "home_team": "Miami Marlins", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "MIA", - "away_team_abbrev": "LAD", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_atl_0911", - "sport": "MLB", - "season": "2026", - "date": "2026-09-11", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "ATL", - "away_team_abbrev": "PHI", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_mil_0911", - "sport": "MLB", - "season": "2026", - "date": "2026-09-11", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CIN", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_min_0911", - "sport": "MLB", - "season": "2026", - "date": "2026-09-11", - "time": "00:10", - "home_team": "Minnesota Twins", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CLE", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_stl_0911", - "sport": "MLB", - "season": "2026", - "date": "2026-09-11", - "time": "00:15", - "home_team": "St. Louis Cardinals", - "away_team": "Chicago White Sox", - "home_team_abbrev": "STL", - "away_team_abbrev": "CWS", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_ath_0911", - "sport": "MLB", - "season": "2026", - "date": "2026-09-11", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Seattle Mariners", - "home_team_abbrev": "ATH", - "away_team_abbrev": "SEA", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_az_0911", - "sport": "MLB", - "season": "2026", - "date": "2026-09-11", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Texas Rangers", - "home_team_abbrev": "AZ", - "away_team_abbrev": "TEX", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_sf_0911", - "sport": "MLB", - "season": "2026", - "date": "2026-09-11", - "time": "02:15", - "home_team": "San Francisco Giants", - "away_team": "San Diego Padres", - "home_team_abbrev": "SF", - "away_team_abbrev": "SD", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_nyy_0911", - "sport": "MLB", - "season": "2026", - "date": "2026-09-11", - "time": "07:33", - "home_team": "New York Yankees", - "away_team": "New York Mets", - "home_team_abbrev": "NYY", - "away_team_abbrev": "NYM", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_chc_0911", - "sport": "MLB", - "season": "2026", - "date": "2026-09-11", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "CHC", - "away_team_abbrev": "PIT", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_det_0912", - "sport": "MLB", - "season": "2026", - "date": "2026-09-12", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Colorado Rockies", - "home_team_abbrev": "DET", - "away_team_abbrev": "COL", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_nyy_0912", - "sport": "MLB", - "season": "2026", - "date": "2026-09-12", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "New York Mets", - "home_team_abbrev": "NYY", - "away_team_abbrev": "NYM", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_tor_0912", - "sport": "MLB", - "season": "2026", - "date": "2026-09-12", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BAL", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_wsh_0912", - "sport": "MLB", - "season": "2026", - "date": "2026-09-12", - "time": "20:05", - "home_team": "Washington Nationals", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "WSH", - "away_team_abbrev": "LAA", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_bos_0912", - "sport": "MLB", - "season": "2026", - "date": "2026-09-12", - "time": "20:10", - "home_team": "Boston Red Sox", - "away_team": "Kansas City Royals", - "home_team_abbrev": "BOS", - "away_team_abbrev": "KC", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_min_0912", - "sport": "MLB", - "season": "2026", - "date": "2026-09-12", - "time": "20:10", - "home_team": "Minnesota Twins", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CLE", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_mia_0912", - "sport": "MLB", - "season": "2026", - "date": "2026-09-12", - "time": "20:10", - "home_team": "Miami Marlins", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "MIA", - "away_team_abbrev": "LAD", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_tb_0912", - "sport": "MLB", - "season": "2026", - "date": "2026-09-12", - "time": "22:10", - "home_team": "Tampa Bay Rays", - "away_team": "Houston Astros", - "home_team_abbrev": "TB", - "away_team_abbrev": "HOU", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_mil_0912", - "sport": "MLB", - "season": "2026", - "date": "2026-09-12", - "time": "23:10", - "home_team": "Milwaukee Brewers", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CIN", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_atl_0912", - "sport": "MLB", - "season": "2026", - "date": "2026-09-12", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "ATL", - "away_team_abbrev": "PHI", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_stl_0912", - "sport": "MLB", - "season": "2026", - "date": "2026-09-12", - "time": "23:15", - "home_team": "St. Louis Cardinals", - "away_team": "Chicago White Sox", - "home_team_abbrev": "STL", - "away_team_abbrev": "CWS", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_az_0912", - "sport": "MLB", - "season": "2026", - "date": "2026-09-12", - "time": "00:10", - "home_team": "Arizona Diamondbacks", - "away_team": "Texas Rangers", - "home_team_abbrev": "AZ", - "away_team_abbrev": "TEX", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_ath_0912", - "sport": "MLB", - "season": "2026", - "date": "2026-09-12", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Seattle Mariners", - "home_team_abbrev": "ATH", - "away_team_abbrev": "SEA", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_chc_0912", - "sport": "MLB", - "season": "2026", - "date": "2026-09-12", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "CHC", - "away_team_abbrev": "PIT", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_sf_0912", - "sport": "MLB", - "season": "2026", - "date": "2026-09-12", - "time": "10:33", - "home_team": "San Francisco Giants", - "away_team": "San Diego Padres", - "home_team_abbrev": "SF", - "away_team_abbrev": "SD", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_bos_0913", - "sport": "MLB", - "season": "2026", - "date": "2026-09-13", - "time": "17:35", - "home_team": "Boston Red Sox", - "away_team": "Kansas City Royals", - "home_team_abbrev": "BOS", - "away_team_abbrev": "KC", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_wsh_0913", - "sport": "MLB", - "season": "2026", - "date": "2026-09-13", - "time": "17:35", - "home_team": "Washington Nationals", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "WSH", - "away_team_abbrev": "LAA", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_atl_0913", - "sport": "MLB", - "season": "2026", - "date": "2026-09-13", - "time": "17:35", - "home_team": "Atlanta Braves", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "ATL", - "away_team_abbrev": "PHI", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_nyy_0913", - "sport": "MLB", - "season": "2026", - "date": "2026-09-13", - "time": "17:35", - "home_team": "New York Yankees", - "away_team": "New York Mets", - "home_team_abbrev": "NYY", - "away_team_abbrev": "NYM", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_tor_0913", - "sport": "MLB", - "season": "2026", - "date": "2026-09-13", - "time": "17:37", - "home_team": "Toronto Blue Jays", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BAL", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_det_0913", - "sport": "MLB", - "season": "2026", - "date": "2026-09-13", - "time": "17:40", - "home_team": "Detroit Tigers", - "away_team": "Colorado Rockies", - "home_team_abbrev": "DET", - "away_team_abbrev": "COL", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_tb_0913", - "sport": "MLB", - "season": "2026", - "date": "2026-09-13", - "time": "17:40", - "home_team": "Tampa Bay Rays", - "away_team": "Houston Astros", - "home_team_abbrev": "TB", - "away_team_abbrev": "HOU", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_mia_0913", - "sport": "MLB", - "season": "2026", - "date": "2026-09-13", - "time": "17:40", - "home_team": "Miami Marlins", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "MIA", - "away_team_abbrev": "LAD", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_min_0913", - "sport": "MLB", - "season": "2026", - "date": "2026-09-13", - "time": "18:10", - "home_team": "Minnesota Twins", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CLE", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_mil_0913", - "sport": "MLB", - "season": "2026", - "date": "2026-09-13", - "time": "18:10", - "home_team": "Milwaukee Brewers", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "MIL", - "away_team_abbrev": "CIN", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_stl_0913", - "sport": "MLB", - "season": "2026", - "date": "2026-09-13", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Chicago White Sox", - "home_team_abbrev": "STL", - "away_team_abbrev": "CWS", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_ath_0913", - "sport": "MLB", - "season": "2026", - "date": "2026-09-13", - "time": "20:05", - "home_team": "Athletics", - "away_team": "Seattle Mariners", - "home_team_abbrev": "ATH", - "away_team_abbrev": "SEA", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_sf_0913", - "sport": "MLB", - "season": "2026", - "date": "2026-09-13", - "time": "20:05", - "home_team": "San Francisco Giants", - "away_team": "San Diego Padres", - "home_team_abbrev": "SF", - "away_team_abbrev": "SD", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_az_0913", - "sport": "MLB", - "season": "2026", - "date": "2026-09-13", - "time": "20:10", - "home_team": "Arizona Diamondbacks", - "away_team": "Texas Rangers", - "home_team_abbrev": "AZ", - "away_team_abbrev": "TEX", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_chc_0913", - "sport": "MLB", - "season": "2026", - "date": "2026-09-13", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "CHC", - "away_team_abbrev": "PIT", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_cin_0914", - "sport": "MLB", - "season": "2026", - "date": "2026-09-14", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "CIN", - "away_team_abbrev": "LAD", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_tor_0914", - "sport": "MLB", - "season": "2026", - "date": "2026-09-14", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Detroit Tigers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "DET", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_nym_0914", - "sport": "MLB", - "season": "2026", - "date": "2026-09-14", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "NYM", - "away_team_abbrev": "BAL", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_min_0914", - "sport": "MLB", - "season": "2026", - "date": "2026-09-14", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "New York Yankees", - "home_team_abbrev": "MIN", - "away_team_abbrev": "NYY", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_stl_0914", - "sport": "MLB", - "season": "2026", - "date": "2026-09-14", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "San Francisco Giants", - "home_team_abbrev": "STL", - "away_team_abbrev": "SF", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_col_0914", - "sport": "MLB", - "season": "2026", - "date": "2026-09-14", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "San Diego Padres", - "home_team_abbrev": "COL", - "away_team_abbrev": "SD", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_laa_0914", - "sport": "MLB", - "season": "2026", - "date": "2026-09-14", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Seattle Mariners", - "home_team_abbrev": "LAA", - "away_team_abbrev": "SEA", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_az_0914", - "sport": "MLB", - "season": "2026", - "date": "2026-09-14", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Miami Marlins", - "home_team_abbrev": "AZ", - "away_team_abbrev": "MIA", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_cle_0914", - "sport": "MLB", - "season": "2026", - "date": "2026-09-14", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Chicago White Sox", - "home_team_abbrev": "CLE", - "away_team_abbrev": "CWS", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_chc_0914", - "sport": "MLB", - "season": "2026", - "date": "2026-09-14", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Atlanta Braves", - "home_team_abbrev": "CHC", - "away_team_abbrev": "ATL", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_cin_0915", - "sport": "MLB", - "season": "2026", - "date": "2026-09-15", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "CIN", - "away_team_abbrev": "LAD", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_tb_0915", - "sport": "MLB", - "season": "2026", - "date": "2026-09-15", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Athletics", - "home_team_abbrev": "TB", - "away_team_abbrev": "ATH", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_pit_0915", - "sport": "MLB", - "season": "2026", - "date": "2026-09-15", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "PIT", - "away_team_abbrev": "MIL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_wsh_0915", - "sport": "MLB", - "season": "2026", - "date": "2026-09-15", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "WSH", - "away_team_abbrev": "PHI", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_tor_0915", - "sport": "MLB", - "season": "2026", - "date": "2026-09-15", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Detroit Tigers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "DET", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_nym_0915", - "sport": "MLB", - "season": "2026", - "date": "2026-09-15", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "NYM", - "away_team_abbrev": "BAL", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_min_0915", - "sport": "MLB", - "season": "2026", - "date": "2026-09-15", - "time": "23:40", - "home_team": "Minnesota Twins", - "away_team": "New York Yankees", - "home_team_abbrev": "MIN", - "away_team_abbrev": "NYY", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_stl_0915", - "sport": "MLB", - "season": "2026", - "date": "2026-09-15", - "time": "23:45", - "home_team": "St. Louis Cardinals", - "away_team": "San Francisco Giants", - "home_team_abbrev": "STL", - "away_team_abbrev": "SF", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_tex_0915", - "sport": "MLB", - "season": "2026", - "date": "2026-09-15", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Boston Red Sox", - "home_team_abbrev": "TEX", - "away_team_abbrev": "BOS", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_col_0915", - "sport": "MLB", - "season": "2026", - "date": "2026-09-15", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "San Diego Padres", - "home_team_abbrev": "COL", - "away_team_abbrev": "SD", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_laa_0915", - "sport": "MLB", - "season": "2026", - "date": "2026-09-15", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Seattle Mariners", - "home_team_abbrev": "LAA", - "away_team_abbrev": "SEA", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_az_0915", - "sport": "MLB", - "season": "2026", - "date": "2026-09-15", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Miami Marlins", - "home_team_abbrev": "AZ", - "away_team_abbrev": "MIA", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_cle_0915", - "sport": "MLB", - "season": "2026", - "date": "2026-09-15", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Chicago White Sox", - "home_team_abbrev": "CLE", - "away_team_abbrev": "CWS", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_hou_0915", - "sport": "MLB", - "season": "2026", - "date": "2026-09-15", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Kansas City Royals", - "home_team_abbrev": "HOU", - "away_team_abbrev": "KC", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_chc_0915", - "sport": "MLB", - "season": "2026", - "date": "2026-09-15", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Atlanta Braves", - "home_team_abbrev": "CHC", - "away_team_abbrev": "ATL", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_stl_0916", - "sport": "MLB", - "season": "2026", - "date": "2026-09-16", - "time": "17:15", - "home_team": "St. Louis Cardinals", - "away_team": "San Francisco Giants", - "home_team_abbrev": "STL", - "away_team_abbrev": "SF", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_min_0916", - "sport": "MLB", - "season": "2026", - "date": "2026-09-16", - "time": "17:40", - "home_team": "Minnesota Twins", - "away_team": "New York Yankees", - "home_team_abbrev": "MIN", - "away_team_abbrev": "NYY", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_tor_0916", - "sport": "MLB", - "season": "2026", - "date": "2026-09-16", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "Detroit Tigers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "DET", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_cin_0916", - "sport": "MLB", - "season": "2026", - "date": "2026-09-16", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "CIN", - "away_team_abbrev": "LAD", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_tb_0916", - "sport": "MLB", - "season": "2026", - "date": "2026-09-16", - "time": "22:40", - "home_team": "Tampa Bay Rays", - "away_team": "Athletics", - "home_team_abbrev": "TB", - "away_team_abbrev": "ATH", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_pit_0916", - "sport": "MLB", - "season": "2026", - "date": "2026-09-16", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "PIT", - "away_team_abbrev": "MIL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_wsh_0916", - "sport": "MLB", - "season": "2026", - "date": "2026-09-16", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "WSH", - "away_team_abbrev": "PHI", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_nym_0916", - "sport": "MLB", - "season": "2026", - "date": "2026-09-16", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "NYM", - "away_team_abbrev": "BAL", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_tex_0916", - "sport": "MLB", - "season": "2026", - "date": "2026-09-16", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Boston Red Sox", - "home_team_abbrev": "TEX", - "away_team_abbrev": "BOS", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_col_0916", - "sport": "MLB", - "season": "2026", - "date": "2026-09-16", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "San Diego Padres", - "home_team_abbrev": "COL", - "away_team_abbrev": "SD", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_laa_0916", - "sport": "MLB", - "season": "2026", - "date": "2026-09-16", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Seattle Mariners", - "home_team_abbrev": "LAA", - "away_team_abbrev": "SEA", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_az_0916", - "sport": "MLB", - "season": "2026", - "date": "2026-09-16", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "Miami Marlins", - "home_team_abbrev": "AZ", - "away_team_abbrev": "MIA", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_cle_0916", - "sport": "MLB", - "season": "2026", - "date": "2026-09-16", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Chicago White Sox", - "home_team_abbrev": "CLE", - "away_team_abbrev": "CWS", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_hou_0916", - "sport": "MLB", - "season": "2026", - "date": "2026-09-16", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Kansas City Royals", - "home_team_abbrev": "HOU", - "away_team_abbrev": "KC", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_chc_0916", - "sport": "MLB", - "season": "2026", - "date": "2026-09-16", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Atlanta Braves", - "home_team_abbrev": "CHC", - "away_team_abbrev": "ATL", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_pit_0917", - "sport": "MLB", - "season": "2026", - "date": "2026-09-17", - "time": "16:35", - "home_team": "Pittsburgh Pirates", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "PIT", - "away_team_abbrev": "MIL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_cin_0917", - "sport": "MLB", - "season": "2026", - "date": "2026-09-17", - "time": "16:40", - "home_team": "Cincinnati Reds", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "CIN", - "away_team_abbrev": "LAD", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_tb_0917", - "sport": "MLB", - "season": "2026", - "date": "2026-09-17", - "time": "17:10", - "home_team": "Tampa Bay Rays", - "away_team": "Athletics", - "home_team_abbrev": "TB", - "away_team_abbrev": "ATH", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_col_0917", - "sport": "MLB", - "season": "2026", - "date": "2026-09-17", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "San Diego Padres", - "home_team_abbrev": "COL", - "away_team_abbrev": "SD", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_nym_0917", - "sport": "MLB", - "season": "2026", - "date": "2026-09-17", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "NYM", - "away_team_abbrev": "PHI", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_cws_0917", - "sport": "MLB", - "season": "2026", - "date": "2026-09-17", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Detroit Tigers", - "home_team_abbrev": "CWS", - "away_team_abbrev": "DET", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_tex_0917", - "sport": "MLB", - "season": "2026", - "date": "2026-09-17", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Boston Red Sox", - "home_team_abbrev": "TEX", - "away_team_abbrev": "BOS", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_laa_0917", - "sport": "MLB", - "season": "2026", - "date": "2026-09-17", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Minnesota Twins", - "home_team_abbrev": "LAA", - "away_team_abbrev": "MIN", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_hou_0917", - "sport": "MLB", - "season": "2026", - "date": "2026-09-17", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Kansas City Royals", - "home_team_abbrev": "HOU", - "away_team_abbrev": "KC", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_cin_0918", - "sport": "MLB", - "season": "2026", - "date": "2026-09-18", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Chicago Cubs", - "home_team_abbrev": "CIN", - "away_team_abbrev": "CHC", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_pit_0918", - "sport": "MLB", - "season": "2026", - "date": "2026-09-18", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Kansas City Royals", - "home_team_abbrev": "PIT", - "away_team_abbrev": "KC", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_bal_0918", - "sport": "MLB", - "season": "2026", - "date": "2026-09-18", - "time": "23:05", - "home_team": "Baltimore Orioles", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "BAL", - "away_team_abbrev": "MIL", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_tb_0918", - "sport": "MLB", - "season": "2026", - "date": "2026-09-18", - "time": "23:10", - "home_team": "Tampa Bay Rays", - "away_team": "Boston Red Sox", - "home_team_abbrev": "TB", - "away_team_abbrev": "BOS", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_nym_0918", - "sport": "MLB", - "season": "2026", - "date": "2026-09-18", - "time": "23:10", - "home_team": "New York Mets", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "NYM", - "away_team_abbrev": "PHI", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_cws_0918", - "sport": "MLB", - "season": "2026", - "date": "2026-09-18", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Detroit Tigers", - "home_team_abbrev": "CWS", - "away_team_abbrev": "DET", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_tex_0918", - "sport": "MLB", - "season": "2026", - "date": "2026-09-18", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "TEX", - "away_team_abbrev": "TOR", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_col_0918", - "sport": "MLB", - "season": "2026", - "date": "2026-09-18", - "time": "00:10", - "home_team": "Colorado Rockies", - "away_team": "Seattle Mariners", - "home_team_abbrev": "COL", - "away_team_abbrev": "SEA", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_stl_0918", - "sport": "MLB", - "season": "2026", - "date": "2026-09-18", - "time": "00:15", - "home_team": "St. Louis Cardinals", - "away_team": "Washington Nationals", - "home_team_abbrev": "STL", - "away_team_abbrev": "WSH", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_laa_0918", - "sport": "MLB", - "season": "2026", - "date": "2026-09-18", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Minnesota Twins", - "home_team_abbrev": "LAA", - "away_team_abbrev": "MIN", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_sd_0918", - "sport": "MLB", - "season": "2026", - "date": "2026-09-18", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Miami Marlins", - "home_team_abbrev": "SD", - "away_team_abbrev": "MIA", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_az_0918", - "sport": "MLB", - "season": "2026", - "date": "2026-09-18", - "time": "01:40", - "home_team": "Arizona Diamondbacks", - "away_team": "New York Yankees", - "home_team_abbrev": "AZ", - "away_team_abbrev": "NYY", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_lad_0918", - "sport": "MLB", - "season": "2026", - "date": "2026-09-18", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "San Francisco Giants", - "home_team_abbrev": "LAD", - "away_team_abbrev": "SF", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_cle_0918", - "sport": "MLB", - "season": "2026", - "date": "2026-09-18", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Athletics", - "home_team_abbrev": "CLE", - "away_team_abbrev": "ATH", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_hou_0918", - "sport": "MLB", - "season": "2026", - "date": "2026-09-18", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Atlanta Braves", - "home_team_abbrev": "HOU", - "away_team_abbrev": "ATL", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_bal_0919", - "sport": "MLB", - "season": "2026", - "date": "2026-09-19", - "time": "20:05", - "home_team": "Baltimore Orioles", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "BAL", - "away_team_abbrev": "MIL", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_tb_0919", - "sport": "MLB", - "season": "2026", - "date": "2026-09-19", - "time": "20:10", - "home_team": "Tampa Bay Rays", - "away_team": "Boston Red Sox", - "home_team_abbrev": "TB", - "away_team_abbrev": "BOS", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_nym_0919", - "sport": "MLB", - "season": "2026", - "date": "2026-09-19", - "time": "20:10", - "home_team": "New York Mets", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "NYM", - "away_team_abbrev": "PHI", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_cin_0919", - "sport": "MLB", - "season": "2026", - "date": "2026-09-19", - "time": "22:40", - "home_team": "Cincinnati Reds", - "away_team": "Chicago Cubs", - "home_team_abbrev": "CIN", - "away_team_abbrev": "CHC", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_pit_0919", - "sport": "MLB", - "season": "2026", - "date": "2026-09-19", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "Kansas City Royals", - "home_team_abbrev": "PIT", - "away_team_abbrev": "KC", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_tex_0919", - "sport": "MLB", - "season": "2026", - "date": "2026-09-19", - "time": "23:05", - "home_team": "Texas Rangers", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "TEX", - "away_team_abbrev": "TOR", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_cws_0919", - "sport": "MLB", - "season": "2026", - "date": "2026-09-19", - "time": "23:10", - "home_team": "Chicago White Sox", - "away_team": "Detroit Tigers", - "home_team_abbrev": "CWS", - "away_team_abbrev": "DET", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_stl_0919", - "sport": "MLB", - "season": "2026", - "date": "2026-09-19", - "time": "23:15", - "home_team": "St. Louis Cardinals", - "away_team": "Washington Nationals", - "home_team_abbrev": "STL", - "away_team_abbrev": "WSH", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_col_0919", - "sport": "MLB", - "season": "2026", - "date": "2026-09-19", - "time": "00:10", - "home_team": "Colorado Rockies", - "away_team": "Seattle Mariners", - "home_team_abbrev": "COL", - "away_team_abbrev": "SEA", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_az_0919", - "sport": "MLB", - "season": "2026", - "date": "2026-09-19", - "time": "00:10", - "home_team": "Arizona Diamondbacks", - "away_team": "New York Yankees", - "home_team_abbrev": "AZ", - "away_team_abbrev": "NYY", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_sd_0919", - "sport": "MLB", - "season": "2026", - "date": "2026-09-19", - "time": "00:40", - "home_team": "San Diego Padres", - "away_team": "Miami Marlins", - "home_team_abbrev": "SD", - "away_team_abbrev": "MIA", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_lad_0919", - "sport": "MLB", - "season": "2026", - "date": "2026-09-19", - "time": "01:10", - "home_team": "Los Angeles Dodgers", - "away_team": "San Francisco Giants", - "home_team_abbrev": "LAD", - "away_team_abbrev": "SF", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_laa_0919", - "sport": "MLB", - "season": "2026", - "date": "2026-09-19", - "time": "01:38", - "home_team": "Los Angeles Angels", - "away_team": "Minnesota Twins", - "home_team_abbrev": "LAA", - "away_team_abbrev": "MIN", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_cle_0919", - "sport": "MLB", - "season": "2026", - "date": "2026-09-19", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Athletics", - "home_team_abbrev": "CLE", - "away_team_abbrev": "ATH", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_hou_0919", - "sport": "MLB", - "season": "2026", - "date": "2026-09-19", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Atlanta Braves", - "home_team_abbrev": "HOU", - "away_team_abbrev": "ATL", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_kc_pit_0920", - "sport": "MLB", - "season": "2026", - "date": "2026-09-20", - "time": "17:35", - "home_team": "Pittsburgh Pirates", - "away_team": "Kansas City Royals", - "home_team_abbrev": "PIT", - "away_team_abbrev": "KC", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_bal_0920", - "sport": "MLB", - "season": "2026", - "date": "2026-09-20", - "time": "17:35", - "home_team": "Baltimore Orioles", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "BAL", - "away_team_abbrev": "MIL", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_cin_0920", - "sport": "MLB", - "season": "2026", - "date": "2026-09-20", - "time": "17:40", - "home_team": "Cincinnati Reds", - "away_team": "Chicago Cubs", - "home_team_abbrev": "CIN", - "away_team_abbrev": "CHC", - "venue": "Great American Ball Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bos_tb_0920", - "sport": "MLB", - "season": "2026", - "date": "2026-09-20", - "time": "17:40", - "home_team": "Tampa Bay Rays", - "away_team": "Boston Red Sox", - "home_team_abbrev": "TB", - "away_team_abbrev": "BOS", - "venue": "Tropicana Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_phi_nym_0920", - "sport": "MLB", - "season": "2026", - "date": "2026-09-20", - "time": "17:40", - "home_team": "New York Mets", - "away_team": "Philadelphia Phillies", - "home_team_abbrev": "NYM", - "away_team_abbrev": "PHI", - "venue": "Citi Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_det_cws_0920", - "sport": "MLB", - "season": "2026", - "date": "2026-09-20", - "time": "18:10", - "home_team": "Chicago White Sox", - "away_team": "Detroit Tigers", - "home_team_abbrev": "CWS", - "away_team_abbrev": "DET", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_stl_0920", - "sport": "MLB", - "season": "2026", - "date": "2026-09-20", - "time": "18:15", - "home_team": "St. Louis Cardinals", - "away_team": "Washington Nationals", - "home_team_abbrev": "STL", - "away_team_abbrev": "WSH", - "venue": "Busch Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_tex_0920", - "sport": "MLB", - "season": "2026", - "date": "2026-09-20", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "TEX", - "away_team_abbrev": "TOR", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sea_col_0920", - "sport": "MLB", - "season": "2026", - "date": "2026-09-20", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Seattle Mariners", - "home_team_abbrev": "COL", - "away_team_abbrev": "SEA", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_laa_0920", - "sport": "MLB", - "season": "2026", - "date": "2026-09-20", - "time": "20:07", - "home_team": "Los Angeles Angels", - "away_team": "Minnesota Twins", - "home_team_abbrev": "LAA", - "away_team_abbrev": "MIN", - "venue": "Angel Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sf_lad_0920", - "sport": "MLB", - "season": "2026", - "date": "2026-09-20", - "time": "20:10", - "home_team": "Los Angeles Dodgers", - "away_team": "San Francisco Giants", - "home_team_abbrev": "LAD", - "away_team_abbrev": "SF", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_sd_0920", - "sport": "MLB", - "season": "2026", - "date": "2026-09-20", - "time": "20:10", - "home_team": "San Diego Padres", - "away_team": "Miami Marlins", - "home_team_abbrev": "SD", - "away_team_abbrev": "MIA", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nyy_az_0920", - "sport": "MLB", - "season": "2026", - "date": "2026-09-20", - "time": "20:10", - "home_team": "Arizona Diamondbacks", - "away_team": "New York Yankees", - "home_team_abbrev": "AZ", - "away_team_abbrev": "NYY", - "venue": "Chase Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_ath_cle_0920", - "sport": "MLB", - "season": "2026", - "date": "2026-09-20", - "time": "07:33", - "home_team": "Cleveland Guardians", - "away_team": "Athletics", - "home_team_abbrev": "CLE", - "away_team_abbrev": "ATH", - "venue": "Progressive Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_hou_0920", - "sport": "MLB", - "season": "2026", - "date": "2026-09-20", - "time": "08:33", - "home_team": "Houston Astros", - "away_team": "Atlanta Braves", - "home_team_abbrev": "HOU", - "away_team_abbrev": "ATL", - "venue": "Daikin Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_bal_0921", - "sport": "MLB", - "season": "2026", - "date": "2026-09-21", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "BAL", - "away_team_abbrev": "TOR", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_det_0921", - "sport": "MLB", - "season": "2026", - "date": "2026-09-21", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Washington Nationals", - "home_team_abbrev": "DET", - "away_team_abbrev": "WSH", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_sf_0921", - "sport": "MLB", - "season": "2026", - "date": "2026-09-21", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Minnesota Twins", - "home_team_abbrev": "SF", - "away_team_abbrev": "MIN", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_bal_0922", - "sport": "MLB", - "season": "2026", - "date": "2026-09-22", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "BAL", - "away_team_abbrev": "TOR", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_det_0922", - "sport": "MLB", - "season": "2026", - "date": "2026-09-22", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Washington Nationals", - "home_team_abbrev": "DET", - "away_team_abbrev": "WSH", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_pit_0922", - "sport": "MLB", - "season": "2026", - "date": "2026-09-22", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "PIT", - "away_team_abbrev": "STL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_phi_0922", - "sport": "MLB", - "season": "2026", - "date": "2026-09-22", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "MIL", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_bos_0922", - "sport": "MLB", - "season": "2026", - "date": "2026-09-22", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "BOS", - "away_team_abbrev": "CLE", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_nyy_0922", - "sport": "MLB", - "season": "2026", - "date": "2026-09-22", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "NYY", - "away_team_abbrev": "TB", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_atl_0922", - "sport": "MLB", - "season": "2026", - "date": "2026-09-22", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "ATL", - "away_team_abbrev": "CIN", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_kc_0922", - "sport": "MLB", - "season": "2026", - "date": "2026-09-22", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Chicago White Sox", - "home_team_abbrev": "KC", - "away_team_abbrev": "CWS", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_tex_0922", - "sport": "MLB", - "season": "2026", - "date": "2026-09-22", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "New York Mets", - "home_team_abbrev": "TEX", - "away_team_abbrev": "NYM", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_col_0922", - "sport": "MLB", - "season": "2026", - "date": "2026-09-22", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "COL", - "away_team_abbrev": "AZ", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_ath_0922", - "sport": "MLB", - "season": "2026", - "date": "2026-09-22", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "ATH", - "away_team_abbrev": "LAA", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_sea_0922", - "sport": "MLB", - "season": "2026", - "date": "2026-09-22", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Houston Astros", - "home_team_abbrev": "SEA", - "away_team_abbrev": "HOU", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_sf_0922", - "sport": "MLB", - "season": "2026", - "date": "2026-09-22", - "time": "01:45", - "home_team": "San Francisco Giants", - "away_team": "Minnesota Twins", - "home_team_abbrev": "SF", - "away_team_abbrev": "MIN", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_lad_0922", - "sport": "MLB", - "season": "2026", - "date": "2026-09-22", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "San Diego Padres", - "home_team_abbrev": "LAD", - "away_team_abbrev": "SD", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_chc_0922", - "sport": "MLB", - "season": "2026", - "date": "2026-09-22", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Miami Marlins", - "home_team_abbrev": "CHC", - "away_team_abbrev": "MIA", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_wsh_det_0923", - "sport": "MLB", - "season": "2026", - "date": "2026-09-23", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Washington Nationals", - "home_team_abbrev": "DET", - "away_team_abbrev": "WSH", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_min_sf_0923", - "sport": "MLB", - "season": "2026", - "date": "2026-09-23", - "time": "19:45", - "home_team": "San Francisco Giants", - "away_team": "Minnesota Twins", - "home_team_abbrev": "SF", - "away_team_abbrev": "MIN", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tor_bal_0923", - "sport": "MLB", - "season": "2026", - "date": "2026-09-23", - "time": "22:35", - "home_team": "Baltimore Orioles", - "away_team": "Toronto Blue Jays", - "home_team_abbrev": "BAL", - "away_team_abbrev": "TOR", - "venue": "Oriole Park at Camden Yards", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_pit_0923", - "sport": "MLB", - "season": "2026", - "date": "2026-09-23", - "time": "22:40", - "home_team": "Pittsburgh Pirates", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "PIT", - "away_team_abbrev": "STL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_phi_0923", - "sport": "MLB", - "season": "2026", - "date": "2026-09-23", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "MIL", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_bos_0923", - "sport": "MLB", - "season": "2026", - "date": "2026-09-23", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "BOS", - "away_team_abbrev": "CLE", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_nyy_0923", - "sport": "MLB", - "season": "2026", - "date": "2026-09-23", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "NYY", - "away_team_abbrev": "TB", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_atl_0923", - "sport": "MLB", - "season": "2026", - "date": "2026-09-23", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "ATL", - "away_team_abbrev": "CIN", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_kc_0923", - "sport": "MLB", - "season": "2026", - "date": "2026-09-23", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Chicago White Sox", - "home_team_abbrev": "KC", - "away_team_abbrev": "CWS", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_tex_0923", - "sport": "MLB", - "season": "2026", - "date": "2026-09-23", - "time": "00:05", - "home_team": "Texas Rangers", - "away_team": "New York Mets", - "home_team_abbrev": "TEX", - "away_team_abbrev": "NYM", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_col_0923", - "sport": "MLB", - "season": "2026", - "date": "2026-09-23", - "time": "00:40", - "home_team": "Colorado Rockies", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "COL", - "away_team_abbrev": "AZ", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_ath_0923", - "sport": "MLB", - "season": "2026", - "date": "2026-09-23", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "ATH", - "away_team_abbrev": "LAA", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_sea_0923", - "sport": "MLB", - "season": "2026", - "date": "2026-09-23", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Houston Astros", - "home_team_abbrev": "SEA", - "away_team_abbrev": "HOU", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_lad_0923", - "sport": "MLB", - "season": "2026", - "date": "2026-09-23", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "San Diego Padres", - "home_team_abbrev": "LAD", - "away_team_abbrev": "SD", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_chc_0923", - "sport": "MLB", - "season": "2026", - "date": "2026-09-23", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Miami Marlins", - "home_team_abbrev": "CHC", - "away_team_abbrev": "MIA", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_pit_0924", - "sport": "MLB", - "season": "2026", - "date": "2026-09-24", - "time": "16:35", - "home_team": "Pittsburgh Pirates", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "PIT", - "away_team_abbrev": "STL", - "venue": "PNC Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cws_kc_0924", - "sport": "MLB", - "season": "2026", - "date": "2026-09-24", - "time": "18:10", - "home_team": "Kansas City Royals", - "away_team": "Chicago White Sox", - "home_team_abbrev": "KC", - "away_team_abbrev": "CWS", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_tex_0924", - "sport": "MLB", - "season": "2026", - "date": "2026-09-24", - "time": "18:35", - "home_team": "Texas Rangers", - "away_team": "New York Mets", - "home_team_abbrev": "TEX", - "away_team_abbrev": "NYM", - "venue": "Globe Life Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_col_0924", - "sport": "MLB", - "season": "2026", - "date": "2026-09-24", - "time": "19:10", - "home_team": "Colorado Rockies", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "COL", - "away_team_abbrev": "AZ", - "venue": "Coors Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mil_phi_0924", - "sport": "MLB", - "season": "2026", - "date": "2026-09-24", - "time": "22:05", - "home_team": "Philadelphia Phillies", - "away_team": "Milwaukee Brewers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "MIL", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_bos_0924", - "sport": "MLB", - "season": "2026", - "date": "2026-09-24", - "time": "22:45", - "home_team": "Boston Red Sox", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "BOS", - "away_team_abbrev": "CLE", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_nyy_0924", - "sport": "MLB", - "season": "2026", - "date": "2026-09-24", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "NYY", - "away_team_abbrev": "TB", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_atl_0924", - "sport": "MLB", - "season": "2026", - "date": "2026-09-24", - "time": "23:15", - "home_team": "Atlanta Braves", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "ATL", - "away_team_abbrev": "CIN", - "venue": "Truist Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_ath_0924", - "sport": "MLB", - "season": "2026", - "date": "2026-09-24", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Houston Astros", - "home_team_abbrev": "ATH", - "away_team_abbrev": "HOU", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_sea_0924", - "sport": "MLB", - "season": "2026", - "date": "2026-09-24", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "SEA", - "away_team_abbrev": "LAA", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_sd_lad_0924", - "sport": "MLB", - "season": "2026", - "date": "2026-09-24", - "time": "02:10", - "home_team": "Los Angeles Dodgers", - "away_team": "San Diego Padres", - "home_team_abbrev": "LAD", - "away_team_abbrev": "SD", - "venue": "Dodger Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_mia_chc_0924", - "sport": "MLB", - "season": "2026", - "date": "2026-09-24", - "time": "08:33", - "home_team": "Chicago Cubs", - "away_team": "Miami Marlins", - "home_team_abbrev": "CHC", - "away_team_abbrev": "MIA", - "venue": "Wrigley Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_det_0925", - "sport": "MLB", - "season": "2026", - "date": "2026-09-25", - "time": "22:40", - "home_team": "Detroit Tigers", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "DET", - "away_team_abbrev": "PIT", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_phi_0925", - "sport": "MLB", - "season": "2026", - "date": "2026-09-25", - "time": "22:40", - "home_team": "Philadelphia Phillies", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "PHI", - "away_team_abbrev": "TB", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_wsh_0925", - "sport": "MLB", - "season": "2026", - "date": "2026-09-25", - "time": "22:45", - "home_team": "Washington Nationals", - "away_team": "New York Mets", - "home_team_abbrev": "WSH", - "away_team_abbrev": "NYM", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_nyy_0925", - "sport": "MLB", - "season": "2026", - "date": "2026-09-25", - "time": "23:05", - "home_team": "New York Yankees", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "NYY", - "away_team_abbrev": "BAL", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_tor_0925", - "sport": "MLB", - "season": "2026", - "date": "2026-09-25", - "time": "23:07", - "home_team": "Toronto Blue Jays", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "TOR", - "away_team_abbrev": "CIN", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_bos_0925", - "sport": "MLB", - "season": "2026", - "date": "2026-09-25", - "time": "23:10", - "home_team": "Boston Red Sox", - "away_team": "Chicago Cubs", - "home_team_abbrev": "BOS", - "away_team_abbrev": "CHC", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_mia_0925", - "sport": "MLB", - "season": "2026", - "date": "2026-09-25", - "time": "23:10", - "home_team": "Miami Marlins", - "away_team": "Atlanta Braves", - "home_team_abbrev": "MIA", - "away_team_abbrev": "ATL", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_kc_0925", - "sport": "MLB", - "season": "2026", - "date": "2026-09-25", - "time": "23:40", - "home_team": "Kansas City Royals", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "KC", - "away_team_abbrev": "CLE", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_cws_0925", - "sport": "MLB", - "season": "2026", - "date": "2026-09-25", - "time": "23:40", - "home_team": "Chicago White Sox", - "away_team": "Colorado Rockies", - "home_team_abbrev": "CWS", - "away_team_abbrev": "COL", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_mil_0925", - "sport": "MLB", - "season": "2026", - "date": "2026-09-25", - "time": "23:40", - "home_team": "Milwaukee Brewers", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "MIL", - "away_team_abbrev": "STL", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_min_0925", - "sport": "MLB", - "season": "2026", - "date": "2026-09-25", - "time": "00:10", - "home_team": "Minnesota Twins", - "away_team": "Texas Rangers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "TEX", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_ath_0925", - "sport": "MLB", - "season": "2026", - "date": "2026-09-25", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Houston Astros", - "home_team_abbrev": "ATH", - "away_team_abbrev": "HOU", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_sd_0925", - "sport": "MLB", - "season": "2026", - "date": "2026-09-25", - "time": "01:40", - "home_team": "San Diego Padres", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "SD", - "away_team_abbrev": "AZ", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_sea_0925", - "sport": "MLB", - "season": "2026", - "date": "2026-09-25", - "time": "02:10", - "home_team": "Seattle Mariners", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "SEA", - "away_team_abbrev": "LAA", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_sf_0925", - "sport": "MLB", - "season": "2026", - "date": "2026-09-25", - "time": "02:15", - "home_team": "San Francisco Giants", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "SF", - "away_team_abbrev": "LAD", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_det_0926", - "sport": "MLB", - "season": "2026", - "date": "2026-09-26", - "time": "17:10", - "home_team": "Detroit Tigers", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "DET", - "away_team_abbrev": "PIT", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_tor_0926", - "sport": "MLB", - "season": "2026", - "date": "2026-09-26", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "TOR", - "away_team_abbrev": "CIN", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_wsh_0926", - "sport": "MLB", - "season": "2026", - "date": "2026-09-26", - "time": "20:05", - "home_team": "Washington Nationals", - "away_team": "New York Mets", - "home_team_abbrev": "WSH", - "away_team_abbrev": "NYM", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_min_0926", - "sport": "MLB", - "season": "2026", - "date": "2026-09-26", - "time": "20:10", - "home_team": "Minnesota Twins", - "away_team": "Texas Rangers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "TEX", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_mia_0926", - "sport": "MLB", - "season": "2026", - "date": "2026-09-26", - "time": "20:10", - "home_team": "Miami Marlins", - "away_team": "Atlanta Braves", - "home_team_abbrev": "MIA", - "away_team_abbrev": "ATL", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_phi_0926", - "sport": "MLB", - "season": "2026", - "date": "2026-09-26", - "time": "22:05", - "home_team": "Philadelphia Phillies", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "PHI", - "away_team_abbrev": "TB", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_kc_0926", - "sport": "MLB", - "season": "2026", - "date": "2026-09-26", - "time": "23:10", - "home_team": "Kansas City Royals", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "KC", - "away_team_abbrev": "CLE", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_cws_0926", - "sport": "MLB", - "season": "2026", - "date": "2026-09-26", - "time": "23:10", - "home_team": "Chicago White Sox", - "away_team": "Colorado Rockies", - "home_team_abbrev": "CWS", - "away_team_abbrev": "COL", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_mil_0926", - "sport": "MLB", - "season": "2026", - "date": "2026-09-26", - "time": "23:10", - "home_team": "Milwaukee Brewers", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "MIL", - "away_team_abbrev": "STL", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_bos_0926", - "sport": "MLB", - "season": "2026", - "date": "2026-09-26", - "time": "23:15", - "home_team": "Boston Red Sox", - "away_team": "Chicago Cubs", - "home_team_abbrev": "BOS", - "away_team_abbrev": "CHC", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_sd_0926", - "sport": "MLB", - "season": "2026", - "date": "2026-09-26", - "time": "00:40", - "home_team": "San Diego Padres", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "SD", - "away_team_abbrev": "AZ", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_ath_0926", - "sport": "MLB", - "season": "2026", - "date": "2026-09-26", - "time": "01:40", - "home_team": "Athletics", - "away_team": "Houston Astros", - "home_team_abbrev": "ATH", - "away_team_abbrev": "HOU", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_sea_0926", - "sport": "MLB", - "season": "2026", - "date": "2026-09-26", - "time": "01:40", - "home_team": "Seattle Mariners", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "SEA", - "away_team_abbrev": "LAA", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_nyy_0926", - "sport": "MLB", - "season": "2026", - "date": "2026-09-26", - "time": "07:33", - "home_team": "New York Yankees", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "NYY", - "away_team_abbrev": "BAL", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_sf_0926", - "sport": "MLB", - "season": "2026", - "date": "2026-09-26", - "time": "10:33", - "home_team": "San Francisco Giants", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "SF", - "away_team_abbrev": "LAD", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_chc_bos_0927", - "sport": "MLB", - "season": "2026", - "date": "2026-09-27", - "time": "19:05", - "home_team": "Boston Red Sox", - "away_team": "Chicago Cubs", - "home_team_abbrev": "BOS", - "away_team_abbrev": "CHC", - "venue": "Fenway Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_nym_wsh_0927", - "sport": "MLB", - "season": "2026", - "date": "2026-09-27", - "time": "19:05", - "home_team": "Washington Nationals", - "away_team": "New York Mets", - "home_team_abbrev": "WSH", - "away_team_abbrev": "NYM", - "venue": "Nationals Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_hou_ath_0927", - "sport": "MLB", - "season": "2026", - "date": "2026-09-27", - "time": "19:05", - "home_team": "Athletics", - "away_team": "Houston Astros", - "home_team_abbrev": "ATH", - "away_team_abbrev": "HOU", - "venue": "Sutter Health Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_lad_sf_0927", - "sport": "MLB", - "season": "2026", - "date": "2026-09-27", - "time": "19:05", - "home_team": "San Francisco Giants", - "away_team": "Los Angeles Dodgers", - "home_team_abbrev": "SF", - "away_team_abbrev": "LAD", - "venue": "Oracle Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tb_phi_0927", - "sport": "MLB", - "season": "2026", - "date": "2026-09-27", - "time": "19:05", - "home_team": "Philadelphia Phillies", - "away_team": "Tampa Bay Rays", - "home_team_abbrev": "PHI", - "away_team_abbrev": "TB", - "venue": "Citizens Bank Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cin_tor_0927", - "sport": "MLB", - "season": "2026", - "date": "2026-09-27", - "time": "19:07", - "home_team": "Toronto Blue Jays", - "away_team": "Cincinnati Reds", - "home_team_abbrev": "TOR", - "away_team_abbrev": "CIN", - "venue": "Rogers Centre", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_cle_kc_0927", - "sport": "MLB", - "season": "2026", - "date": "2026-09-27", - "time": "19:10", - "home_team": "Kansas City Royals", - "away_team": "Cleveland Guardians", - "home_team_abbrev": "KC", - "away_team_abbrev": "CLE", - "venue": "Kauffman Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_pit_det_0927", - "sport": "MLB", - "season": "2026", - "date": "2026-09-27", - "time": "19:10", - "home_team": "Detroit Tigers", - "away_team": "Pittsburgh Pirates", - "home_team_abbrev": "DET", - "away_team_abbrev": "PIT", - "venue": "Comerica Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_az_sd_0927", - "sport": "MLB", - "season": "2026", - "date": "2026-09-27", - "time": "19:10", - "home_team": "San Diego Padres", - "away_team": "Arizona Diamondbacks", - "home_team_abbrev": "SD", - "away_team_abbrev": "AZ", - "venue": "Petco Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_laa_sea_0927", - "sport": "MLB", - "season": "2026", - "date": "2026-09-27", - "time": "19:10", - "home_team": "Seattle Mariners", - "away_team": "Los Angeles Angels", - "home_team_abbrev": "SEA", - "away_team_abbrev": "LAA", - "venue": "T-Mobile Park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_tex_min_0927", - "sport": "MLB", - "season": "2026", - "date": "2026-09-27", - "time": "19:10", - "home_team": "Minnesota Twins", - "away_team": "Texas Rangers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "TEX", - "venue": "Target Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_col_cws_0927", - "sport": "MLB", - "season": "2026", - "date": "2026-09-27", - "time": "19:10", - "home_team": "Chicago White Sox", - "away_team": "Colorado Rockies", - "home_team_abbrev": "CWS", - "away_team_abbrev": "COL", - "venue": "Rate Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_atl_mia_0927", - "sport": "MLB", - "season": "2026", - "date": "2026-09-27", - "time": "19:10", - "home_team": "Miami Marlins", - "away_team": "Atlanta Braves", - "home_team_abbrev": "MIA", - "away_team_abbrev": "ATL", - "venue": "loanDepot park", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_stl_mil_0927", - "sport": "MLB", - "season": "2026", - "date": "2026-09-27", - "time": "19:10", - "home_team": "Milwaukee Brewers", - "away_team": "St. Louis Cardinals", - "home_team_abbrev": "MIL", - "away_team_abbrev": "STL", - "venue": "American Family Field", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "mlb_2026_bal_nyy_0927", - "sport": "MLB", - "season": "2026", - "date": "2026-09-27", - "time": "19:20", - "home_team": "New York Yankees", - "away_team": "Baltimore Orioles", - "home_team_abbrev": "NYY", - "away_team_abbrev": "BAL", - "venue": "Yankee Stadium", - "source": "statsapi.mlb.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_fla_1007", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-07", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "FLA", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_lak_1007", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-07", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "LAK", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_nyr_1007", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-07", - "time": null, - "home_team": "New York Rangers", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "NYR", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_edm_1008", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-08", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Calgary Flames", - "home_team_abbrev": "EDM", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_tor_1008", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-08", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "TOR", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_vgk_1008", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-08", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "VGK", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_wsh_1008", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-08", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Boston Bruins", - "home_team_abbrev": "WSH", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_bos_1009", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-09", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "BOS", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_buf_1009", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-09", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "New York Rangers", - "home_team_abbrev": "BUF", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_car_1009", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-09", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "New Jersey Devils", - "home_team_abbrev": "CAR", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_col_1009", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-09", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Utah Mammoth", - "home_team_abbrev": "COL", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_det_1009", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-09", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "DET", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_fla_1009", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-09", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "FLA", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_nsh_1009", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-09", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "NSH", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_pit_1009", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-09", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "New York Islanders", - "home_team_abbrev": "PIT", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_sea_1009", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-09", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "SEA", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_sjs_1009", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-09", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "SJS", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_stl_1009", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-09", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Minnesota Wild", - "home_team_abbrev": "STL", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_tbl_1009", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-09", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Ottawa Senators", - "home_team_abbrev": "TBL", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_van_1009", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-09", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Calgary Flames", - "home_team_abbrev": "VAN", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_wpg_1009", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-09", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Dallas Stars", - "home_team_abbrev": "WPG", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_bos_1011", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-11", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "BOS", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_car_1011", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-11", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "CAR", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_cgy_1011", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-11", - "time": null, - "home_team": "Calgary Flames", - "away_team": "St. Louis Blues", - "home_team_abbrev": "CGY", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_chi_1011", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-11", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "CHI", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_col_1011", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-11", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Dallas Stars", - "home_team_abbrev": "COL", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_det_1011", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-11", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "DET", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_edm_1011", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-11", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "EDM", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_fla_1011", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-11", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Ottawa Senators", - "home_team_abbrev": "FLA", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_min_1011", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-11", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_nsh_1011", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-11", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Utah Mammoth", - "home_team_abbrev": "NSH", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_nyi_1011", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-11", - "time": null, - "home_team": "New York Islanders", - "away_team": "Washington Capitals", - "home_team_abbrev": "NYI", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_pit_1011", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-11", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "New York Rangers", - "home_team_abbrev": "PIT", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_sea_1011", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-11", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "SEA", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_sjs_1011", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-11", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "SJS", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_tbl_1011", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-11", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "New Jersey Devils", - "home_team_abbrev": "TBL", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_wpg_1011", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-11", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "WPG", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_nyr_1012", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-12", - "time": null, - "home_team": "New York Rangers", - "away_team": "Washington Capitals", - "home_team_abbrev": "NYR", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_bos_1013", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-13", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_buf_1013", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-13", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "BUF", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_cbj_1013", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-13", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "New Jersey Devils", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_chi_1013", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-13", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Utah Mammoth", - "home_team_abbrev": "CHI", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_min_1013", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-13", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "MIN", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_nyi_1013", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-13", - "time": null, - "home_team": "New York Islanders", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "NYI", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_ott_1013", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-13", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Nashville Predators", - "home_team_abbrev": "OTT", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_phi_1013", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-13", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Florida Panthers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_tor_1013", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-13", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "TOR", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_van_1013", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-13", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "St. Louis Blues", - "home_team_abbrev": "VAN", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_ana_1014", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-14", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "ANA", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_cgy_1014", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-14", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "CGY", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_dal_1014", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-14", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Minnesota Wild", - "home_team_abbrev": "DAL", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_mtl_1014", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-14", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Seattle Kraken", - "home_team_abbrev": "MTL", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_nyr_1014", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-14", - "time": null, - "home_team": "New York Rangers", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "NYR", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_sjs_1014", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-14", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "SJS", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_tor_1014", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-14", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Nashville Predators", - "home_team_abbrev": "TOR", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_wsh_1014", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-14", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "WSH", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_buf_1015", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-15", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Ottawa Senators", - "home_team_abbrev": "BUF", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_det_1015", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-15", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Florida Panthers", - "home_team_abbrev": "DET", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_stl_1015", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-15", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "STL", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_uta_1015", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-15", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Calgary Flames", - "home_team_abbrev": "UTA", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_ana_1016", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-16", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "ANA", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_cbj_1016", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-16", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_dal_1016", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-16", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "DAL", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_lak_1016", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-16", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "LAK", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_mtl_1016", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-16", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Nashville Predators", - "home_team_abbrev": "MTL", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_njd_1016", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-16", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Florida Panthers", - "home_team_abbrev": "NJD", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_nyi_1016", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-16", - "time": null, - "home_team": "New York Islanders", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "NYI", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_ott_1016", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-16", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Seattle Kraken", - "home_team_abbrev": "OTT", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_phi_1016", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-16", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "PHI", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_tor_1016", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-16", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "New York Rangers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_vgk_1016", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-16", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Boston Bruins", - "home_team_abbrev": "VGK", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_chi_1017", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-17", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "CHI", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_det_1017", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-17", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "DET", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_uta_1017", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-17", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "San Jose Sharks", - "home_team_abbrev": "UTA", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_wsh_1017", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-17", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Minnesota Wild", - "home_team_abbrev": "WSH", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_buf_1018", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-18", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Florida Panthers", - "home_team_abbrev": "BUF", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_cbj_1018", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-18", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_col_1018", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-18", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Boston Bruins", - "home_team_abbrev": "COL", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_lak_1018", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-18", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "LAK", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_mtl_1018", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-18", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "New York Rangers", - "home_team_abbrev": "MTL", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_njd_1018", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-18", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "NJD", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_ott_1018", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-18", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "New York Islanders", - "home_team_abbrev": "OTT", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_phi_1018", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-18", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Minnesota Wild", - "home_team_abbrev": "PHI", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_sjs_1018", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-18", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "SJS", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_stl_1018", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-18", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Dallas Stars", - "home_team_abbrev": "STL", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_tor_1018", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-18", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Seattle Kraken", - "home_team_abbrev": "TOR", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_vgk_1018", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-18", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Calgary Flames", - "home_team_abbrev": "VGK", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_wpg_1018", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-18", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Nashville Predators", - "home_team_abbrev": "WPG", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_chi_1019", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-19", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "CHI", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_det_1019", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-19", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "DET", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_uta_1019", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-19", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Boston Bruins", - "home_team_abbrev": "UTA", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_wsh_1019", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-19", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "WSH", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_cgy_1020", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-20", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "CGY", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_mtl_1020", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-20", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "MTL", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_nyr_1020", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-20", - "time": null, - "home_team": "New York Rangers", - "away_team": "Minnesota Wild", - "home_team_abbrev": "NYR", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_phi_1020", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-20", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Seattle Kraken", - "home_team_abbrev": "PHI", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_vgk_1020", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-20", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "VGK", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_bos_1021", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-21", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Florida Panthers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_dal_1021", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-21", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "DAL", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_nsh_1021", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-21", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "NSH", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_nyi_1021", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-21", - "time": null, - "home_team": "New York Islanders", - "away_team": "San Jose Sharks", - "home_team_abbrev": "NYI", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_ott_1021", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-21", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "OTT", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_pit_1021", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-21", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "PIT", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_stl_1021", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-21", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "STL", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_tor_1021", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-21", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "New Jersey Devils", - "home_team_abbrev": "TOR", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_uta_1021", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-21", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "UTA", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_wsh_1021", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-21", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Seattle Kraken", - "home_team_abbrev": "WSH", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_buf_1022", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-22", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "BUF", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_cgy_1022", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-22", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "CGY", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_njd_1022", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-22", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Minnesota Wild", - "home_team_abbrev": "NJD", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_bos_1023", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-23", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "BOS", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_col_1023", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-23", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "COL", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_dal_1023", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-23", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "DAL", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_edm_1023", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-23", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "EDM", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_fla_1023", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-23", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "FLA", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_nsh_1023", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-23", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "NSH", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_nyi_1023", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-23", - "time": null, - "home_team": "New York Islanders", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "NYI", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_nyr_1023", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-23", - "time": null, - "home_team": "New York Rangers", - "away_team": "San Jose Sharks", - "home_team_abbrev": "NYR", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_ott_1023", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-23", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "OTT", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_stl_1023", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-23", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Utah Mammoth", - "home_team_abbrev": "STL", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_tbl_1023", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-23", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "TBL", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_wpg_1023", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-23", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Seattle Kraken", - "home_team_abbrev": "WPG", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_buf_1024", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-24", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "BUF", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_cbj_1024", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-24", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Washington Capitals", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_njd_1024", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-24", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "San Jose Sharks", - "home_team_abbrev": "NJD", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_wpg_1024", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-24", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Calgary Flames", - "home_team_abbrev": "WPG", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_bos_1025", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-25", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "BOS", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_dal_1025", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-25", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "DAL", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_det_1025", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-25", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "St. Louis Blues", - "home_team_abbrev": "DET", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_fla_1025", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-25", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "FLA", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_min_1025", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-25", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Utah Mammoth", - "home_team_abbrev": "MIN", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_nsh_1025", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-25", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "NSH", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_phi_1025", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-25", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "New York Islanders", - "home_team_abbrev": "PHI", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_pit_1025", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-25", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "PIT", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_sea_1025", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-25", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "SEA", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_tbl_1025", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-25", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "TBL", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_tor_1025", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-25", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_van_1025", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-25", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "VAN", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_wsh_1025", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-25", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Ottawa Senators", - "home_team_abbrev": "WSH", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_cgy_1026", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-26", - "time": null, - "home_team": "Calgary Flames", - "away_team": "New York Rangers", - "home_team_abbrev": "CGY", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_chi_1026", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-26", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "CHI", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_min_1026", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-26", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "San Jose Sharks", - "home_team_abbrev": "MIN", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_njd_1026", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-26", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "NJD", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_nsh_1026", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-26", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Dallas Stars", - "home_team_abbrev": "NSH", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_tbl_1026", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-26", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "TBL", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_van_1026", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-26", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "VAN", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_wpg_1026", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-26", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Utah Mammoth", - "home_team_abbrev": "WPG", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_ott_1027", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-27", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Boston Bruins", - "home_team_abbrev": "OTT", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_pit_1027", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-27", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "St. Louis Blues", - "home_team_abbrev": "PIT", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_bos_1028", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-28", - "time": null, - "home_team": "Boston Bruins", - "away_team": "New York Islanders", - "home_team_abbrev": "BOS", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_buf_1028", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-28", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "BUF", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_car_1028", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-28", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "CAR", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_chi_1028", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-28", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Ottawa Senators", - "home_team_abbrev": "CHI", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_col_1028", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-28", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "New Jersey Devils", - "home_team_abbrev": "COL", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_dal_1028", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-28", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Washington Capitals", - "home_team_abbrev": "DAL", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_edm_1028", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-28", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Utah Mammoth", - "home_team_abbrev": "EDM", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_fla_1028", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-28", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "FLA", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_min_1028", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-28", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "MIN", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_nsh_1028", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-28", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "NSH", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_phi_1028", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-28", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "PHI", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_sea_1028", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-28", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "SEA", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_sjs_1028", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-28", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "SJS", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_stl_1028", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-28", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "STL", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_tor_1028", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-28", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Calgary Flames", - "home_team_abbrev": "TOR", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_van_1028", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-28", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "New York Rangers", - "home_team_abbrev": "VAN", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_cbj_1029", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-29", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_bos_1030", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-30", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "BOS", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_car_1030", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-30", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "New York Islanders", - "home_team_abbrev": "CAR", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_edm_1030", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-30", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "New York Rangers", - "home_team_abbrev": "EDM", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_lak_1030", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-30", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "LAK", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_min_1030", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-30", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "MIN", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_ott_1030", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-30", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Calgary Flames", - "home_team_abbrev": "OTT", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_phi_1030", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-30", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Nashville Predators", - "home_team_abbrev": "PHI", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_sjs_1030", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-30", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "New Jersey Devils", - "home_team_abbrev": "SJS", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_stl_1030", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-30", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "STL", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_tbl_1030", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-30", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Dallas Stars", - "home_team_abbrev": "TBL", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_wpg_1030", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-30", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "WPG", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_ana_1031", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-31", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "ANA", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_vgk_1031", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-31", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "VGK", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_wsh_1031", - "sport": "NHL", - "season": "2025-26", - "date": "2025-10-31", - "time": null, - "home_team": "Washington Capitals", - "away_team": "New York Islanders", - "home_team_abbrev": "WSH", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_bos_1101", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-01", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "BOS", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_buf_1101", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-01", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Washington Capitals", - "home_team_abbrev": "BUF", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_cbj_1101", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-01", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "St. Louis Blues", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_edm_1101", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-01", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "EDM", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_fla_1101", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-01", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Dallas Stars", - "home_team_abbrev": "FLA", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_lak_1101", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-01", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "New Jersey Devils", - "home_team_abbrev": "LAK", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_min_1101", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-01", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "MIN", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_mtl_1101", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-01", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Ottawa Senators", - "home_team_abbrev": "MTL", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_nsh_1101", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-01", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Calgary Flames", - "home_team_abbrev": "NSH", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_phi_1101", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-01", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "PHI", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_sea_1101", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-01", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "New York Rangers", - "home_team_abbrev": "SEA", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_sjs_1101", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-01", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "SJS", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_wpg_1101", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-01", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "WPG", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_ana_1102", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-02", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "New Jersey Devils", - "home_team_abbrev": "ANA", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_nyi_1102", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-02", - "time": null, - "home_team": "New York Islanders", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "NYI", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_phi_1102", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-02", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Calgary Flames", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_sjs_1102", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-02", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "SJS", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_uta_1102", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-02", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "UTA", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_nsh_1103", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-03", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "NSH", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_sea_1103", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-03", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "SEA", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_stl_1103", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-03", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "STL", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_tor_1103", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-03", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "TOR", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_ana_1104", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-04", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Florida Panthers", - "home_team_abbrev": "ANA", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_buf_1104", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-04", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Utah Mammoth", - "home_team_abbrev": "BUF", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_col_1104", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-04", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "COL", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_dal_1104", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-04", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "DAL", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_lak_1104", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-04", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "LAK", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_min_1104", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-04", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Nashville Predators", - "home_team_abbrev": "MIN", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_mtl_1104", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-04", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "MTL", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_nyi_1104", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-04", - "time": null, - "home_team": "New York Islanders", - "away_team": "Boston Bruins", - "home_team_abbrev": "NYI", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_nyr_1104", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-04", - "time": null, - "home_team": "New York Rangers", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "NYR", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_vgk_1104", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-04", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "VGK", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_cgy_1105", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-05", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "CGY", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_sea_1105", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-05", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "San Jose Sharks", - "home_team_abbrev": "SEA", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_tor_1105", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-05", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Utah Mammoth", - "home_team_abbrev": "TOR", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_van_1105", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-05", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "VAN", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_wsh_1105", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-05", - "time": null, - "home_team": "Washington Capitals", - "away_team": "St. Louis Blues", - "home_team_abbrev": "WSH", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_bos_1106", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-06", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Ottawa Senators", - "home_team_abbrev": "BOS", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_buf_1106", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-06", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "St. Louis Blues", - "home_team_abbrev": "BUF", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_car_1106", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-06", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Minnesota Wild", - "home_team_abbrev": "CAR", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_dal_1106", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-06", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "DAL", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_lak_1106", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-06", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Florida Panthers", - "home_team_abbrev": "LAK", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_njd_1106", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-06", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "NJD", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_nsh_1106", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-06", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "NSH", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_pit_1106", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-06", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Washington Capitals", - "home_team_abbrev": "PIT", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_vgk_1106", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-06", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "VGK", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_cgy_1107", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-07", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "CGY", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_det_1107", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-07", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "New York Rangers", - "home_team_abbrev": "DET", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_nyi_1107", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-07", - "time": null, - "home_team": "New York Islanders", - "away_team": "Minnesota Wild", - "home_team_abbrev": "NYI", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_sjs_1107", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-07", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "SJS", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_car_1108", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-08", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "CAR", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_edm_1108", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-08", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "EDM", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_mtl_1108", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-08", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Utah Mammoth", - "home_team_abbrev": "MTL", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_njd_1108", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-08", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "NJD", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_nsh_1108", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-08", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Dallas Stars", - "home_team_abbrev": "NSH", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_nyr_1108", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-08", - "time": null, - "home_team": "New York Rangers", - "away_team": "New York Islanders", - "home_team_abbrev": "NYR", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_phi_1108", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-08", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Ottawa Senators", - "home_team_abbrev": "PHI", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_sjs_1108", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-08", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Florida Panthers", - "home_team_abbrev": "SJS", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_stl_1108", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-08", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Seattle Kraken", - "home_team_abbrev": "STL", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_tbl_1108", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-08", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Washington Capitals", - "home_team_abbrev": "TBL", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_tor_1108", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-08", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Boston Bruins", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_van_1108", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-08", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "VAN", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_vgk_1108", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-08", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "VGK", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_ana_1109", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-09", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "ANA", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_dal_1109", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-09", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Seattle Kraken", - "home_team_abbrev": "DAL", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_det_1109", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-09", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "DET", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_min_1109", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-09", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Calgary Flames", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_ott_1109", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-09", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Utah Mammoth", - "home_team_abbrev": "OTT", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_pit_1109", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-09", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "PIT", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_tor_1109", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-09", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "TOR", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_van_1109", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-09", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "VAN", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_edm_1110", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-10", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "EDM", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_njd_1110", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-10", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "New York Islanders", - "home_team_abbrev": "NJD", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_nyr_1110", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-10", - "time": null, - "home_team": "New York Rangers", - "away_team": "Nashville Predators", - "home_team_abbrev": "NYR", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_vgk_1110", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-10", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Florida Panthers", - "home_team_abbrev": "VGK", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_bos_1111", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-11", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_car_1111", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-11", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Washington Capitals", - "home_team_abbrev": "CAR", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_col_1111", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-11", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "COL", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_min_1111", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-11", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "San Jose Sharks", - "home_team_abbrev": "MIN", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_mtl_1111", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-11", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "MTL", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_ott_1111", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-11", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Dallas Stars", - "home_team_abbrev": "OTT", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_sea_1111", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-11", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "SEA", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_stl_1111", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-11", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Calgary Flames", - "home_team_abbrev": "STL", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_van_1111", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-11", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "VAN", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_chi_1112", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-12", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "New Jersey Devils", - "home_team_abbrev": "CHI", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_phi_1112", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-12", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_tbl_1112", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-12", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "New York Rangers", - "home_team_abbrev": "TBL", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_uta_1112", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-12", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "UTA", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_cbj_1113", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-13", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_cgy_1113", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-13", - "time": null, - "home_team": "Calgary Flames", - "away_team": "San Jose Sharks", - "home_team_abbrev": "CGY", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_col_1113", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-13", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "COL", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_det_1113", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-13", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "DET", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_fla_1113", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-13", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Washington Capitals", - "home_team_abbrev": "FLA", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_mtl_1113", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-13", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Dallas Stars", - "home_team_abbrev": "MTL", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_ott_1113", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-13", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Boston Bruins", - "home_team_abbrev": "OTT", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_sea_1113", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-13", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "SEA", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_tor_1113", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-13", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "TOR", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_vgk_1113", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-13", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "New York Islanders", - "home_team_abbrev": "VGK", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_car_1114", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-14", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "CAR", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_nsh_1114", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-14", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "NSH", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_stl_1114", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-14", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "STL", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_uta_1114", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-14", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "New York Islanders", - "home_team_abbrev": "UTA", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_car_1115", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-15", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "CAR", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_cbj_1115", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-15", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "New York Rangers", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_cgy_1115", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-15", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "CGY", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_chi_1115", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-15", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "CHI", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_dal_1115", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-15", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "DAL", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_det_1115", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-15", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "DET", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_fla_1115", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-15", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "FLA", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_min_1115", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-15", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "MIN", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_mtl_1115", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-15", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Boston Bruins", - "home_team_abbrev": "MTL", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_ott_1115", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-15", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "OTT", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_sea_1115", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-15", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "San Jose Sharks", - "home_team_abbrev": "SEA", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_stl_1115", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-15", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "STL", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_wsh_1115", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-15", - "time": null, - "home_team": "Washington Capitals", - "away_team": "New Jersey Devils", - "home_team_abbrev": "WSH", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_col_1116", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-16", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "New York Islanders", - "home_team_abbrev": "COL", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_min_1116", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-16", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "MIN", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_nyr_1116", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-16", - "time": null, - "home_team": "New York Rangers", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "NYR", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_pit_1116", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-16", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Nashville Predators", - "home_team_abbrev": "PIT", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_tbl_1116", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-16", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "TBL", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_ana_1117", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-17", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Utah Mammoth", - "home_team_abbrev": "ANA", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_bos_1117", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-17", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "BOS", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_buf_1117", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-17", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "BUF", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_cbj_1117", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-17", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_fla_1117", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-17", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "FLA", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_wsh_1117", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-17", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "WSH", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_chi_1118", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-18", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Calgary Flames", - "home_team_abbrev": "CHI", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_dal_1118", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-18", - "time": null, - "home_team": "Dallas Stars", - "away_team": "New York Islanders", - "home_team_abbrev": "DAL", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_det_1118", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-18", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Seattle Kraken", - "home_team_abbrev": "DET", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_sjs_1118", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-18", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Utah Mammoth", - "home_team_abbrev": "SJS", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_tbl_1118", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-18", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "New Jersey Devils", - "home_team_abbrev": "TBL", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_tor_1118", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-18", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "St. Louis Blues", - "home_team_abbrev": "TOR", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_vgk_1118", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-18", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "New York Rangers", - "home_team_abbrev": "VGK", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_wpg_1118", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-18", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "WPG", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_ana_1119", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-19", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Boston Bruins", - "home_team_abbrev": "ANA", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_buf_1119", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-19", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Calgary Flames", - "home_team_abbrev": "BUF", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_min_1119", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-19", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_wsh_1119", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-19", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "WSH", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_ana_1120", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-20", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Ottawa Senators", - "home_team_abbrev": "ANA", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_chi_1120", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-20", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Seattle Kraken", - "home_team_abbrev": "CHI", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_col_1120", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-20", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "New York Rangers", - "home_team_abbrev": "COL", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_det_1120", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-20", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "New York Islanders", - "home_team_abbrev": "DET", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_fla_1120", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-20", - "time": null, - "home_team": "Florida Panthers", - "away_team": "New Jersey Devils", - "home_team_abbrev": "FLA", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_mtl_1120", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-20", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Washington Capitals", - "home_team_abbrev": "MTL", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_phi_1120", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-20", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "St. Louis Blues", - "home_team_abbrev": "PHI", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_sjs_1120", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-20", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "SJS", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_tbl_1120", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-20", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "TBL", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_tor_1120", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-20", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "TOR", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_uta_1120", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-20", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "UTA", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_van_1120", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-20", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Dallas Stars", - "home_team_abbrev": "VAN", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_buf_1121", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-21", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "BUF", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_lak_1121", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-21", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Boston Bruins", - "home_team_abbrev": "LAK", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_pit_1121", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-21", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Minnesota Wild", - "home_team_abbrev": "PIT", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_wpg_1121", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-21", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "WPG", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_ana_1122", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-22", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "ANA", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_cgy_1122", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-22", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Dallas Stars", - "home_team_abbrev": "CGY", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_det_1122", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-22", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "DET", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_fla_1122", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-22", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "FLA", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_mtl_1122", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-22", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "MTL", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_nsh_1122", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-22", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "NSH", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_nyi_1122", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-22", - "time": null, - "home_team": "New York Islanders", - "away_team": "St. Louis Blues", - "home_team_abbrev": "NYI", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_phi_1122", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-22", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "New Jersey Devils", - "home_team_abbrev": "PHI", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_pit_1122", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-22", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Seattle Kraken", - "home_team_abbrev": "PIT", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_sjs_1122", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-22", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Ottawa Senators", - "home_team_abbrev": "SJS", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_uta_1122", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-22", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "New York Rangers", - "home_team_abbrev": "UTA", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_wsh_1122", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-22", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "WSH", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_buf_1123", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-23", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "BUF", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_chi_1123", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-23", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "CHI", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_nyi_1123", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-23", - "time": null, - "home_team": "New York Islanders", - "away_team": "Seattle Kraken", - "home_team_abbrev": "NYI", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_sjs_1123", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-23", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Boston Bruins", - "home_team_abbrev": "SJS", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_van_1123", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-23", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Calgary Flames", - "home_team_abbrev": "VAN", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_wpg_1123", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-23", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Minnesota Wild", - "home_team_abbrev": "WPG", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_lak_1124", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-24", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Ottawa Senators", - "home_team_abbrev": "LAK", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_njd_1124", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-24", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "NJD", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_nsh_1124", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-24", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Florida Panthers", - "home_team_abbrev": "NSH", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_nyr_1124", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-24", - "time": null, - "home_team": "New York Rangers", - "away_team": "St. Louis Blues", - "home_team_abbrev": "NYR", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_tbl_1124", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-24", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "TBL", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_uta_1124", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-24", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "UTA", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_wsh_1124", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-24", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "WSH", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_edm_1125", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-25", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Dallas Stars", - "home_team_abbrev": "EDM", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_ana_1126", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-26", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "ANA", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_car_1126", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-26", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "New York Rangers", - "home_team_abbrev": "CAR", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_cbj_1126", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-26", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_chi_1126", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-26", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Minnesota Wild", - "home_team_abbrev": "CHI", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_col_1126", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-26", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "San Jose Sharks", - "home_team_abbrev": "COL", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_det_1126", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-26", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Nashville Predators", - "home_team_abbrev": "DET", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_fla_1126", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-26", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "FLA", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_njd_1126", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-26", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "St. Louis Blues", - "home_team_abbrev": "NJD", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_nyi_1126", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-26", - "time": null, - "home_team": "New York Islanders", - "away_team": "Boston Bruins", - "home_team_abbrev": "NYI", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_pit_1126", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-26", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "PIT", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_sea_1126", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-26", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Dallas Stars", - "home_team_abbrev": "SEA", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_tbl_1126", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-26", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Calgary Flames", - "home_team_abbrev": "TBL", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_uta_1126", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-26", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "UTA", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_vgk_1126", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-26", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Ottawa Senators", - "home_team_abbrev": "VGK", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_wsh_1126", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-26", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "WSH", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_ana_1128", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-28", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "ANA", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_bos_1128", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-28", - "time": null, - "home_team": "Boston Bruins", - "away_team": "New York Rangers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_buf_1128", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-28", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "New Jersey Devils", - "home_team_abbrev": "BUF", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_car_1128", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-28", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "CAR", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_cbj_1128", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-28", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_chi_1128", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-28", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Nashville Predators", - "home_team_abbrev": "CHI", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_dal_1128", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-28", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Utah Mammoth", - "home_team_abbrev": "DAL", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_det_1128", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-28", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "DET", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_fla_1128", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-28", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Calgary Flames", - "home_team_abbrev": "FLA", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_min_1128", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-28", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "MIN", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_nyi_1128", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-28", - "time": null, - "home_team": "New York Islanders", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "NYI", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_sjs_1128", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-28", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "SJS", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_stl_1128", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-28", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Ottawa Senators", - "home_team_abbrev": "STL", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_vgk_1128", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-28", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "VGK", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_wsh_1128", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-28", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "WSH", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_bos_1129", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-29", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "BOS", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_col_1129", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-29", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "COL", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_lak_1129", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-29", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "LAK", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_min_1129", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-29", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "MIN", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_njd_1129", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-29", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "NJD", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_nsh_1129", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-29", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "NSH", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_nyr_1129", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-29", - "time": null, - "home_team": "New York Rangers", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "NYR", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_pit_1129", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-29", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "PIT", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_sea_1129", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-29", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "SEA", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_stl_1129", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-29", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Utah Mammoth", - "home_team_abbrev": "STL", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_vgk_1129", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-29", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "San Jose Sharks", - "home_team_abbrev": "VGK", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_car_1130", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-30", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Calgary Flames", - "home_team_abbrev": "CAR", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_chi_1130", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-30", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "CHI", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_dal_1130", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-30", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Ottawa Senators", - "home_team_abbrev": "DAL", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_nyi_1130", - "sport": "NHL", - "season": "2025-26", - "date": "2025-11-30", - "time": null, - "home_team": "New York Islanders", - "away_team": "Washington Capitals", - "home_team_abbrev": "NYI", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_buf_1201", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-01", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "BUF", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_njd_1201", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-01", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "NJD", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_phi_1201", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-01", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "PHI", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_sjs_1201", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-01", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Utah Mammoth", - "home_team_abbrev": "SJS", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_stl_1201", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-01", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "STL", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_col_1202", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-02", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "COL", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_det_1202", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-02", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Boston Bruins", - "home_team_abbrev": "DET", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_edm_1202", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-02", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Minnesota Wild", - "home_team_abbrev": "EDM", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_fla_1202", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-02", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "FLA", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_lak_1202", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-02", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Washington Capitals", - "home_team_abbrev": "LAK", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_mtl_1202", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-02", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Ottawa Senators", - "home_team_abbrev": "MTL", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_nsh_1202", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-02", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Calgary Flames", - "home_team_abbrev": "NSH", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_nyi_1202", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-02", - "time": null, - "home_team": "New York Islanders", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "NYI", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_nyr_1202", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-02", - "time": null, - "home_team": "New York Rangers", - "away_team": "Dallas Stars", - "home_team_abbrev": "NYR", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_vgk_1202", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-02", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "VGK", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_ana_1203", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-03", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Utah Mammoth", - "home_team_abbrev": "ANA", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_mtl_1203", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-03", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "MTL", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_njd_1203", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-03", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Dallas Stars", - "home_team_abbrev": "NJD", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_phi_1203", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-03", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "PHI", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_sjs_1203", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-03", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Washington Capitals", - "home_team_abbrev": "SJS", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_bos_1204", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-04", - "time": null, - "home_team": "Boston Bruins", - "away_team": "St. Louis Blues", - "home_team_abbrev": "BOS", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_car_1204", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-04", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "CAR", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_cbj_1204", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-04", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_cgy_1204", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-04", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Minnesota Wild", - "home_team_abbrev": "CGY", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_edm_1204", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-04", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Seattle Kraken", - "home_team_abbrev": "EDM", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_fla_1204", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-04", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Nashville Predators", - "home_team_abbrev": "FLA", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_lak_1204", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-04", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "LAK", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_nyi_1204", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-04", - "time": null, - "home_team": "New York Islanders", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "NYI", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_ott_1204", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-04", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "New York Rangers", - "home_team_abbrev": "OTT", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_tbl_1204", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-04", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "TBL", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_ana_1205", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-05", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Washington Capitals", - "home_team_abbrev": "ANA", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_dal_1205", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-05", - "time": null, - "home_team": "Dallas Stars", - "away_team": "San Jose Sharks", - "home_team_abbrev": "DAL", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_njd_1205", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-05", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "NJD", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_van_1205", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-05", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Utah Mammoth", - "home_team_abbrev": "VAN", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_wpg_1205", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-05", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "WPG", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_bos_1206", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-06", - "time": null, - "home_team": "Boston Bruins", - "away_team": "New Jersey Devils", - "home_team_abbrev": "BOS", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_car_1206", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-06", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Nashville Predators", - "home_team_abbrev": "CAR", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_cgy_1206", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-06", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Utah Mammoth", - "home_team_abbrev": "CGY", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_edm_1206", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-06", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "EDM", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_fla_1206", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-06", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "FLA", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_lak_1206", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-06", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "LAK", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_nyr_1206", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-06", - "time": null, - "home_team": "New York Rangers", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "NYR", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_ott_1206", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-06", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "St. Louis Blues", - "home_team_abbrev": "OTT", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_sea_1206", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-06", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "SEA", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_tbl_1206", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-06", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "New York Islanders", - "home_team_abbrev": "TBL", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_tor_1206", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-06", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "TOR", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_van_1206", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-06", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Minnesota Wild", - "home_team_abbrev": "VAN", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_ana_1207", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-07", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "ANA", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_car_1207", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-07", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "San Jose Sharks", - "home_team_abbrev": "CAR", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_dal_1207", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-07", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "DAL", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_fla_1207", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-07", - "time": null, - "home_team": "Florida Panthers", - "away_team": "New York Islanders", - "home_team_abbrev": "FLA", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_mtl_1207", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-07", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "St. Louis Blues", - "home_team_abbrev": "MTL", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_nyr_1207", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-07", - "time": null, - "home_team": "New York Rangers", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "NYR", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_phi_1207", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-07", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "PHI", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_wsh_1207", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-07", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "WSH", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_cgy_1208", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-08", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "CGY", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_sea_1208", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-08", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Minnesota Wild", - "home_team_abbrev": "SEA", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_tor_1208", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-08", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "TOR", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_uta_1208", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-08", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "UTA", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_van_1208", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-08", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "VAN", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_car_1209", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-09", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "CAR", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_edm_1209", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-09", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "EDM", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_mtl_1209", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-09", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "MTL", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_nsh_1209", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-09", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "NSH", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_nyi_1209", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-09", - "time": null, - "home_team": "New York Islanders", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "NYI", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_ott_1209", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-09", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "New Jersey Devils", - "home_team_abbrev": "OTT", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_phi_1209", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-09", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "San Jose Sharks", - "home_team_abbrev": "PHI", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_pit_1209", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-09", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "PIT", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_stl_1209", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-09", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Boston Bruins", - "home_team_abbrev": "STL", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_wpg_1209", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-09", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Dallas Stars", - "home_team_abbrev": "WPG", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_cgy_1210", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-10", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "CGY", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_chi_1210", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-10", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "New York Rangers", - "home_team_abbrev": "CHI", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_sea_1210", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-10", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "SEA", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_uta_1210", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-10", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Florida Panthers", - "home_team_abbrev": "UTA", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_cbj_1211", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-11", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Ottawa Senators", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_col_1211", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-11", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Florida Panthers", - "home_team_abbrev": "COL", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_edm_1211", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-11", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "EDM", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_min_1211", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-11", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Dallas Stars", - "home_team_abbrev": "MIN", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_njd_1211", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-11", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "NJD", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_nsh_1211", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-11", - "time": null, - "home_team": "Nashville Predators", - "away_team": "St. Louis Blues", - "home_team_abbrev": "NSH", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_nyi_1211", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-11", - "time": null, - "home_team": "New York Islanders", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "NYI", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_phi_1211", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-11", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "PHI", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_pit_1211", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-11", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "PIT", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_tor_1211", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-11", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "San Jose Sharks", - "home_team_abbrev": "TOR", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_van_1211", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-11", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "VAN", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_wpg_1211", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-11", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Boston Bruins", - "home_team_abbrev": "WPG", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_wsh_1211", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-11", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "WSH", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_stl_1212", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-12", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "STL", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_uta_1212", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-12", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Seattle Kraken", - "home_team_abbrev": "UTA", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_cbj_1213", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-13", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_chi_1213", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-13", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "CHI", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_col_1213", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-13", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Nashville Predators", - "home_team_abbrev": "COL", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_dal_1213", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-13", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Florida Panthers", - "home_team_abbrev": "DAL", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_lak_1213", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-13", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Calgary Flames", - "home_team_abbrev": "LAK", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_min_1213", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-13", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Ottawa Senators", - "home_team_abbrev": "MIN", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_njd_1213", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-13", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "NJD", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_nyi_1213", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-13", - "time": null, - "home_team": "New York Islanders", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "NYI", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_nyr_1213", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-13", - "time": null, - "home_team": "New York Rangers", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "NYR", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_phi_1213", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-13", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_pit_1213", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-13", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "San Jose Sharks", - "home_team_abbrev": "PIT", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_tor_1213", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-13", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_wpg_1213", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-13", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Washington Capitals", - "home_team_abbrev": "WPG", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_car_1214", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-14", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "CAR", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_min_1214", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-14", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Boston Bruins", - "home_team_abbrev": "MIN", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_mtl_1214", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-14", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "MTL", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_njd_1214", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-14", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "NJD", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_pit_1214", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-14", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Utah Mammoth", - "home_team_abbrev": "PIT", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_sea_1214", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-14", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "SEA", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_dal_1215", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-15", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "DAL", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_nyr_1215", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-15", - "time": null, - "home_team": "New York Rangers", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "NYR", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_stl_1215", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-15", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Nashville Predators", - "home_team_abbrev": "STL", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_tbl_1215", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-15", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Florida Panthers", - "home_team_abbrev": "TBL", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_wpg_1215", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-15", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Ottawa Senators", - "home_team_abbrev": "WPG", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_bos_1216", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-16", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Utah Mammoth", - "home_team_abbrev": "BOS", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_cbj_1216", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-16", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_det_1216", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-16", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "New York Islanders", - "home_team_abbrev": "DET", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_min_1216", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-16", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Washington Capitals", - "home_team_abbrev": "MIN", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_mtl_1216", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-16", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "MTL", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_nyr_1216", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-16", - "time": null, - "home_team": "New York Rangers", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "NYR", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_pit_1216", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-16", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "PIT", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_sea_1216", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-16", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "SEA", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_sjs_1216", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-16", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Calgary Flames", - "home_team_abbrev": "SJS", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_tor_1216", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-16", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "TOR", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_det_1217", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-17", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Utah Mammoth", - "home_team_abbrev": "DET", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_fla_1217", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-17", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "FLA", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_nsh_1217", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-17", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "NSH", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_stl_1217", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-17", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "STL", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_vgk_1217", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-17", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "New Jersey Devils", - "home_team_abbrev": "VGK", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_bos_1218", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-18", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_buf_1218", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-18", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "BUF", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_cbj_1218", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-18", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Minnesota Wild", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_cgy_1218", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-18", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Seattle Kraken", - "home_team_abbrev": "CGY", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_mtl_1218", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-18", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "MTL", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_ott_1218", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-18", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "OTT", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_sjs_1218", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-18", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Dallas Stars", - "home_team_abbrev": "SJS", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_stl_1218", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-18", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "New York Rangers", - "home_team_abbrev": "STL", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_tbl_1218", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-18", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "TBL", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_wsh_1218", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-18", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "WSH", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_ana_1219", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-19", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Dallas Stars", - "home_team_abbrev": "ANA", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_col_1219", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-19", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "COL", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_fla_1219", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-19", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "FLA", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_nyi_1219", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-19", - "time": null, - "home_team": "New York Islanders", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "NYI", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_uta_1219", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-19", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "New Jersey Devils", - "home_team_abbrev": "UTA", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_ana_1220", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-20", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "ANA", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_bos_1220", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-20", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "BOS", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_buf_1220", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-20", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "New York Islanders", - "home_team_abbrev": "BUF", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_cgy_1220", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-20", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "CGY", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_fla_1220", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-20", - "time": null, - "home_team": "Florida Panthers", - "away_team": "St. Louis Blues", - "home_team_abbrev": "FLA", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_min_1220", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-20", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_mtl_1220", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-20", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "MTL", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_nsh_1220", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-20", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "NSH", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_nyr_1220", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-20", - "time": null, - "home_team": "New York Rangers", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "NYR", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_ott_1220", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-20", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "OTT", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_sjs_1220", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-20", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Seattle Kraken", - "home_team_abbrev": "SJS", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_tbl_1220", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-20", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "TBL", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_wsh_1220", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-20", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "WSH", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_bos_1221", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-21", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Ottawa Senators", - "home_team_abbrev": "BOS", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_dal_1221", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-21", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "DAL", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_det_1221", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-21", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Washington Capitals", - "home_team_abbrev": "DET", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_edm_1221", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-21", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "EDM", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_min_1221", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-21", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "MIN", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_njd_1221", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-21", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "NJD", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_nsh_1221", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-21", - "time": null, - "home_team": "Nashville Predators", - "away_team": "New York Rangers", - "home_team_abbrev": "NSH", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_pit_1221", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-21", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "PIT", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_uta_1221", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-21", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "UTA", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_ana_1222", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-22", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Seattle Kraken", - "home_team_abbrev": "ANA", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_lak_1222", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-22", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "LAK", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_phi_1222", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-22", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "PHI", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_tbl_1222", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-22", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "St. Louis Blues", - "home_team_abbrev": "TBL", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_bos_1223", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-23", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "BOS", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_car_1223", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-23", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Florida Panthers", - "home_team_abbrev": "CAR", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_chi_1223", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-23", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "CHI", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_col_1223", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-23", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Utah Mammoth", - "home_team_abbrev": "COL", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_det_1223", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-23", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Dallas Stars", - "home_team_abbrev": "DET", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_edm_1223", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-23", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Calgary Flames", - "home_team_abbrev": "EDM", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_lak_1223", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-23", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Seattle Kraken", - "home_team_abbrev": "LAK", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_min_1223", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-23", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Nashville Predators", - "home_team_abbrev": "MIN", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_nyi_1223", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-23", - "time": null, - "home_team": "New York Islanders", - "away_team": "New Jersey Devils", - "home_team_abbrev": "NYI", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_ott_1223", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-23", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "OTT", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_tor_1223", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-23", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "TOR", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_vgk_1223", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-23", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "San Jose Sharks", - "home_team_abbrev": "VGK", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_wsh_1223", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-23", - "time": null, - "home_team": "Washington Capitals", - "away_team": "New York Rangers", - "home_team_abbrev": "WSH", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_buf_1227", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-27", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Boston Bruins", - "home_team_abbrev": "BUF", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_car_1227", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-27", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "CAR", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_cgy_1227", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-27", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "CGY", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_dal_1227", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-27", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "DAL", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_fla_1227", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-27", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "FLA", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_lak_1227", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-27", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "LAK", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_njd_1227", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-27", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Washington Capitals", - "home_team_abbrev": "NJD", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_nyi_1227", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-27", - "time": null, - "home_team": "New York Islanders", - "away_team": "New York Rangers", - "home_team_abbrev": "NYI", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_stl_1227", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-27", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Nashville Predators", - "home_team_abbrev": "STL", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_tor_1227", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-27", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Ottawa Senators", - "home_team_abbrev": "TOR", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_van_1227", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-27", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "San Jose Sharks", - "home_team_abbrev": "VAN", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_vgk_1227", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-27", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "VGK", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_wpg_1227", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-27", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Minnesota Wild", - "home_team_abbrev": "WPG", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_cbj_1228", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-28", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "New York Islanders", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_chi_1228", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-28", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "CHI", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_det_1228", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-28", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "DET", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_sea_1228", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-28", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "SEA", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_tbl_1228", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-28", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "TBL", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_ana_1229", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-29", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "San Jose Sharks", - "home_team_abbrev": "ANA", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_car_1229", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-29", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "New York Rangers", - "home_team_abbrev": "CAR", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_cgy_1229", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-29", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Boston Bruins", - "home_team_abbrev": "CGY", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_col_1229", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-29", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "COL", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_fla_1229", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-29", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Washington Capitals", - "home_team_abbrev": "FLA", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_ott_1229", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-29", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "OTT", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_sea_1229", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-29", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "SEA", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_stl_1229", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-29", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "STL", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_uta_1229", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-29", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Nashville Predators", - "home_team_abbrev": "UTA", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_vgk_1229", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-29", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Minnesota Wild", - "home_team_abbrev": "VGK", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_wpg_1229", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-29", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "WPG", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_chi_1230", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-30", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "New York Islanders", - "home_team_abbrev": "CHI", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_fla_1230", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-30", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "FLA", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_pit_1230", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-30", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "PIT", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_tor_1230", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-30", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "New Jersey Devils", - "home_team_abbrev": "TOR", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_van_1230", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-30", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "VAN", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_ana_1231", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-31", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "ANA", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_cbj_1231", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-31", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "New Jersey Devils", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_cgy_1231", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-31", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "CGY", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_col_1231", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-31", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "St. Louis Blues", - "home_team_abbrev": "COL", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_dal_1231", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-31", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "DAL", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_det_1231", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-31", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "DET", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_edm_1231", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-31", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Boston Bruins", - "home_team_abbrev": "EDM", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_sjs_1231", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-31", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Minnesota Wild", - "home_team_abbrev": "SJS", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_vgk_1231", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-31", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Nashville Predators", - "home_team_abbrev": "VGK", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_wsh_1231", - "sport": "NHL", - "season": "2025-26", - "date": "2025-12-31", - "time": null, - "home_team": "Washington Capitals", - "away_team": "New York Rangers", - "home_team_abbrev": "WSH", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_car_0101", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-01", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "CAR", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_chi_0101", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-01", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Dallas Stars", - "home_team_abbrev": "CHI", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_lak_0101", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-01", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "LAK", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_nyi_0101", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-01", - "time": null, - "home_team": "New York Islanders", - "away_team": "Utah Mammoth", - "home_team_abbrev": "NYI", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_ott_0101", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-01", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Washington Capitals", - "home_team_abbrev": "OTT", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_pit_0101", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-01", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "PIT", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_sea_0101", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-01", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Nashville Predators", - "home_team_abbrev": "SEA", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_tor_0101", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-01", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "TOR", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_ana_0102", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-02", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Minnesota Wild", - "home_team_abbrev": "ANA", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_fla_0102", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-02", - "time": null, - "home_team": "Florida Panthers", - "away_team": "New York Rangers", - "home_team_abbrev": "FLA", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_stl_0102", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-02", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "STL", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_van_0102", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-02", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Seattle Kraken", - "home_team_abbrev": "VAN", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_car_0103", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-03", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "CAR", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_cbj_0103", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-03", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_cgy_0103", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-03", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Nashville Predators", - "home_team_abbrev": "CGY", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_det_0103", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-03", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "DET", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_edm_0103", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-03", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "EDM", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_lak_0103", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-03", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Minnesota Wild", - "home_team_abbrev": "LAK", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_njd_0103", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-03", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Utah Mammoth", - "home_team_abbrev": "NJD", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_nyi_0103", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-03", - "time": null, - "home_team": "New York Islanders", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "NYI", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_ott_0103", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-03", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "OTT", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_sjs_0103", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-03", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "SJS", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_stl_0103", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-03", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "STL", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_van_0103", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-03", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Boston Bruins", - "home_team_abbrev": "VAN", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_wsh_0103", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-03", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "WSH", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_cbj_0104", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-04", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_chi_0104", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-04", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "CHI", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_dal_0104", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-04", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "DAL", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_fla_0104", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-04", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "FLA", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_njd_0104", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-04", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "NJD", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_cgy_0105", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-05", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Seattle Kraken", - "home_team_abbrev": "CGY", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_lak_0105", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-05", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Minnesota Wild", - "home_team_abbrev": "LAK", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_nyr_0105", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-05", - "time": null, - "home_team": "New York Rangers", - "away_team": "Utah Mammoth", - "home_team_abbrev": "NYR", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_ott_0105", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-05", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "OTT", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_wsh_0105", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-05", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "WSH", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_buf_0106", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-06", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "BUF", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_car_0106", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-06", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Dallas Stars", - "home_team_abbrev": "CAR", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_edm_0106", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-06", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Nashville Predators", - "home_team_abbrev": "EDM", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_nyi_0106", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-06", - "time": null, - "home_team": "New York Islanders", - "away_team": "New Jersey Devils", - "home_team_abbrev": "NYI", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_phi_0106", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-06", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "PHI", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_sea_0106", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-06", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Boston Bruins", - "home_team_abbrev": "SEA", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_sjs_0106", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-06", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "SJS", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_tbl_0106", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-06", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "TBL", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_tor_0106", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-06", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Florida Panthers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_wpg_0106", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-06", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "WPG", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_chi_0107", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-07", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "St. Louis Blues", - "home_team_abbrev": "CHI", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_lak_0107", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-07", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "San Jose Sharks", - "home_team_abbrev": "LAK", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_mtl_0107", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-07", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Calgary Flames", - "home_team_abbrev": "MTL", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_uta_0107", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-07", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Ottawa Senators", - "home_team_abbrev": "UTA", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_wsh_0107", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-07", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Dallas Stars", - "home_team_abbrev": "WSH", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_bos_0108", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-08", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Calgary Flames", - "home_team_abbrev": "BOS", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_car_0108", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-08", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "CAR", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_col_0108", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-08", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Ottawa Senators", - "home_team_abbrev": "COL", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_det_0108", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-08", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "DET", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_mtl_0108", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-08", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Florida Panthers", - "home_team_abbrev": "MTL", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_nsh_0108", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-08", - "time": null, - "home_team": "Nashville Predators", - "away_team": "New York Islanders", - "home_team_abbrev": "NSH", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_nyr_0108", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-08", - "time": null, - "home_team": "New York Rangers", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "NYR", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_phi_0108", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-08", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "PHI", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_pit_0108", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-08", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "New Jersey Devils", - "home_team_abbrev": "PIT", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_sea_0108", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-08", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Minnesota Wild", - "home_team_abbrev": "SEA", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_vgk_0108", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-08", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "VGK", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_wpg_0108", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-08", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "WPG", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_chi_0109", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-09", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Washington Capitals", - "home_team_abbrev": "CHI", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_uta_0109", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-09", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "St. Louis Blues", - "home_team_abbrev": "UTA", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_wpg_0109", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-09", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "WPG", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_bos_0110", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-10", - "time": null, - "home_team": "Boston Bruins", - "away_team": "New York Rangers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_buf_0110", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-10", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "BUF", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_car_0110", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-10", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Seattle Kraken", - "home_team_abbrev": "CAR", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_col_0110", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-10", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "COL", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_edm_0110", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-10", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "EDM", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_min_0110", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-10", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "New York Islanders", - "home_team_abbrev": "MIN", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_mtl_0110", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-10", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "MTL", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_nsh_0110", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-10", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "NSH", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_ott_0110", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-10", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Florida Panthers", - "home_team_abbrev": "OTT", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_phi_0110", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-10", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "PHI", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_pit_0110", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-10", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Calgary Flames", - "home_team_abbrev": "PIT", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_sjs_0110", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-10", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Dallas Stars", - "home_team_abbrev": "SJS", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_tor_0110", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-10", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "TOR", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_vgk_0110", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-10", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "St. Louis Blues", - "home_team_abbrev": "VGK", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_bos_0111", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-11", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "BOS", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_nsh_0111", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-11", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Washington Capitals", - "home_team_abbrev": "NSH", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_sjs_0111", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-11", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "SJS", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_uta_0111", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-11", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "UTA", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_wpg_0111", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-11", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "New Jersey Devils", - "home_team_abbrev": "WPG", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_buf_0112", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-12", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Florida Panthers", - "home_team_abbrev": "BUF", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_chi_0112", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-12", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "CHI", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_col_0112", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-12", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "COL", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_det_0112", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-12", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "DET", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_lak_0112", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-12", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Dallas Stars", - "home_team_abbrev": "LAK", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_min_0112", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-12", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "New Jersey Devils", - "home_team_abbrev": "MIN", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_mtl_0112", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-12", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "MTL", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_nyr_0112", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-12", - "time": null, - "home_team": "New York Rangers", - "away_team": "Seattle Kraken", - "home_team_abbrev": "NYR", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_phi_0112", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-12", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "PHI", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_ana_0113", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-13", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Dallas Stars", - "home_team_abbrev": "ANA", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_bos_0113", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-13", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "BOS", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_cbj_0113", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-13", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Calgary Flames", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_nsh_0113", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-13", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "NSH", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_ott_0113", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-13", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "OTT", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_pit_0113", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-13", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "PIT", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_stl_0113", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-13", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "STL", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_uta_0113", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-13", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "UTA", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_wpg_0113", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-13", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "New York Islanders", - "home_team_abbrev": "WPG", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_wsh_0113", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-13", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "WSH", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_buf_0114", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-14", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "BUF", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_lak_0114", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-14", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "LAK", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_njd_0114", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-14", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Seattle Kraken", - "home_team_abbrev": "NJD", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_nyr_0114", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-14", - "time": null, - "home_team": "New York Rangers", - "away_team": "Ottawa Senators", - "home_team_abbrev": "NYR", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_bos_0115", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-15", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Seattle Kraken", - "home_team_abbrev": "BOS", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_buf_0115", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-15", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "BUF", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_cbj_0115", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-15", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_chi_0115", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-15", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Calgary Flames", - "home_team_abbrev": "CHI", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_edm_0115", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-15", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "New York Islanders", - "home_team_abbrev": "EDM", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_min_0115", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-15", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "MIN", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_pit_0115", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-15", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "PIT", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_uta_0115", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-15", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Dallas Stars", - "home_team_abbrev": "UTA", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_vgk_0115", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-15", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "VGK", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_wsh_0115", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-15", - "time": null, - "home_team": "Washington Capitals", - "away_team": "San Jose Sharks", - "home_team_abbrev": "WSH", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_car_0116", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-16", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Florida Panthers", - "home_team_abbrev": "CAR", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_col_0116", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-16", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Nashville Predators", - "home_team_abbrev": "COL", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_det_0116", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-16", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "San Jose Sharks", - "home_team_abbrev": "DET", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_lak_0116", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-16", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "LAK", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_stl_0116", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-16", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "STL", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_ana_0117", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-17", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "ANA", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_buf_0117", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-17", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Minnesota Wild", - "home_team_abbrev": "BUF", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_cgy_0117", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-17", - "time": null, - "home_team": "Calgary Flames", - "away_team": "New York Islanders", - "home_team_abbrev": "CGY", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_chi_0117", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-17", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Boston Bruins", - "home_team_abbrev": "CHI", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_njd_0117", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-17", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "NJD", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_ott_0117", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-17", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "OTT", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_phi_0117", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-17", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "New York Rangers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_pit_0117", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-17", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "PIT", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_uta_0117", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-17", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Seattle Kraken", - "home_team_abbrev": "UTA", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_van_0117", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-17", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "VAN", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_vgk_0117", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-17", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Nashville Predators", - "home_team_abbrev": "VGK", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_wpg_0117", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-17", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "WPG", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_wsh_0117", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-17", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Florida Panthers", - "home_team_abbrev": "WSH", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_dal_0118", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-18", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "DAL", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_det_0118", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-18", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Ottawa Senators", - "home_team_abbrev": "DET", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_edm_0118", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-18", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "St. Louis Blues", - "home_team_abbrev": "EDM", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_ana_0119", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-19", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "New York Rangers", - "home_team_abbrev": "ANA", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_car_0119", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-19", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "CAR", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_cgy_0119", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-19", - "time": null, - "home_team": "Calgary Flames", - "away_team": "New Jersey Devils", - "home_team_abbrev": "CGY", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_chi_0119", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-19", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "CHI", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_col_0119", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-19", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Washington Capitals", - "home_team_abbrev": "COL", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_fla_0119", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-19", - "time": null, - "home_team": "Florida Panthers", - "away_team": "San Jose Sharks", - "home_team_abbrev": "FLA", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_sea_0119", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-19", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "SEA", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_tor_0119", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-19", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Minnesota Wild", - "home_team_abbrev": "TOR", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_van_0119", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-19", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "New York Islanders", - "home_team_abbrev": "VAN", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_vgk_0119", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-19", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "VGK", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_cbj_0120", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-20", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Ottawa Senators", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_dal_0120", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-20", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Boston Bruins", - "home_team_abbrev": "DAL", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_edm_0120", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-20", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "New Jersey Devils", - "home_team_abbrev": "EDM", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_lak_0120", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-20", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "New York Rangers", - "home_team_abbrev": "LAK", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_mtl_0120", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-20", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Minnesota Wild", - "home_team_abbrev": "MTL", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_nsh_0120", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-20", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "NSH", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_tbl_0120", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-20", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "San Jose Sharks", - "home_team_abbrev": "TBL", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_wpg_0120", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-20", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "St. Louis Blues", - "home_team_abbrev": "WPG", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_cgy_0121", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-21", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "CGY", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_col_0121", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-21", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "COL", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_sea_0121", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-21", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "New York Islanders", - "home_team_abbrev": "SEA", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_tor_0121", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-21", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "TOR", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_uta_0121", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-21", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "UTA", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_van_0121", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-21", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Washington Capitals", - "home_team_abbrev": "VAN", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_bos_0122", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-22", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "BOS", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_car_0122", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-22", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "CAR", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_cbj_0122", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-22", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Dallas Stars", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_edm_0122", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-22", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "EDM", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_min_0122", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-22", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "MIN", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_mtl_0122", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-22", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "MTL", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_nsh_0122", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-22", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Ottawa Senators", - "home_team_abbrev": "NSH", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_wpg_0122", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-22", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Florida Panthers", - "home_team_abbrev": "WPG", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_cgy_0123", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-23", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Washington Capitals", - "home_team_abbrev": "CGY", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_chi_0123", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-23", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "CHI", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_col_0123", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-23", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "COL", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_dal_0123", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-23", - "time": null, - "home_team": "Dallas Stars", - "away_team": "St. Louis Blues", - "home_team_abbrev": "DAL", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_sea_0123", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-23", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "SEA", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_sjs_0123", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-23", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "New York Rangers", - "home_team_abbrev": "SJS", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_tor_0123", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-23", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "TOR", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_van_0123", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-23", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "New Jersey Devils", - "home_team_abbrev": "VAN", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_bos_0124", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-24", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "BOS", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_cbj_0124", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-24", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_edm_0124", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-24", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Washington Capitals", - "home_team_abbrev": "EDM", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_min_0124", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-24", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Florida Panthers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_nsh_0124", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-24", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Utah Mammoth", - "home_team_abbrev": "NSH", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_nyi_0124", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-24", - "time": null, - "home_team": "New York Islanders", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "NYI", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_ott_0124", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-24", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "OTT", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_stl_0124", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-24", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "STL", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_wpg_0124", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-24", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "WPG", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_cgy_0125", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-25", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "CGY", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_chi_0125", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-25", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Florida Panthers", - "home_team_abbrev": "CHI", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_ott_0125", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-25", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "OTT", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_sea_0125", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-25", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "New Jersey Devils", - "home_team_abbrev": "SEA", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_tor_0125", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-25", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "TOR", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_van_0125", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-25", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "VAN", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_cbj_0126", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-26", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_edm_0126", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-26", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "EDM", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_nyr_0126", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-26", - "time": null, - "home_team": "New York Rangers", - "away_team": "Boston Bruins", - "home_team_abbrev": "NYR", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_phi_0126", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-26", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "New York Islanders", - "home_team_abbrev": "PHI", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_tbl_0126", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-26", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Utah Mammoth", - "home_team_abbrev": "TBL", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_bos_0127", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-27", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Nashville Predators", - "home_team_abbrev": "BOS", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_det_0127", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-27", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "DET", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_fla_0127", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-27", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Utah Mammoth", - "home_team_abbrev": "FLA", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_min_0127", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-27", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_mtl_0127", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-27", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "MTL", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_njd_0127", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-27", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "NJD", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_sea_0127", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-27", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Washington Capitals", - "home_team_abbrev": "SEA", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_stl_0127", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-27", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Dallas Stars", - "home_team_abbrev": "STL", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_tor_0127", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-27", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "TOR", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_van_0127", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-27", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "San Jose Sharks", - "home_team_abbrev": "VAN", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_cbj_0128", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-28", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_nyi_0128", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-28", - "time": null, - "home_team": "New York Islanders", - "away_team": "New York Rangers", - "home_team_abbrev": "NYI", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_ott_0128", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-28", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "OTT", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_bos_0129", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-29", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "BOS", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_buf_0129", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-29", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "BUF", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_car_0129", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-29", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Utah Mammoth", - "home_team_abbrev": "CAR", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_det_0129", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-29", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Washington Capitals", - "home_team_abbrev": "DET", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_edm_0129", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-29", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "San Jose Sharks", - "home_team_abbrev": "EDM", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_min_0129", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-29", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Calgary Flames", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_mtl_0129", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-29", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "MTL", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_njd_0129", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-29", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Nashville Predators", - "home_team_abbrev": "NJD", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_nyr_0129", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-29", - "time": null, - "home_team": "New York Rangers", - "away_team": "New York Islanders", - "home_team_abbrev": "NYR", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_pit_0129", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-29", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "PIT", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_sea_0129", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-29", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "SEA", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_stl_0129", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-29", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Florida Panthers", - "home_team_abbrev": "STL", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_tbl_0129", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-29", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "TBL", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_van_0129", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-29", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "VAN", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_vgk_0129", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-29", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Dallas Stars", - "home_team_abbrev": "VGK", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_chi_0130", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-30", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "CHI", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_buf_0131", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-31", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "BUF", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_cgy_0131", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-31", - "time": null, - "home_team": "Calgary Flames", - "away_team": "San Jose Sharks", - "home_team_abbrev": "CGY", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_det_0131", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-31", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "DET", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_edm_0131", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-31", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Minnesota Wild", - "home_team_abbrev": "EDM", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_fla_0131", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-31", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "FLA", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_nyi_0131", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-31", - "time": null, - "home_team": "New York Islanders", - "away_team": "Nashville Predators", - "home_team_abbrev": "NYI", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_ott_0131", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-31", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "New Jersey Devils", - "home_team_abbrev": "OTT", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_phi_0131", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-31", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "PHI", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_pit_0131", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-31", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "New York Rangers", - "home_team_abbrev": "PIT", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_stl_0131", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-31", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "STL", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_uta_0131", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-31", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Dallas Stars", - "home_team_abbrev": "UTA", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_van_0131", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-31", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "VAN", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_vgk_0131", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-31", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Seattle Kraken", - "home_team_abbrev": "VGK", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_wsh_0131", - "sport": "NHL", - "season": "2025-26", - "date": "2026-01-31", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "WSH", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_ana_0201", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-01", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "ANA", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_car_0201", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-01", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "CAR", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_tbl_0201", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-01", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Boston Bruins", - "home_team_abbrev": "TBL", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_cgy_0202", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-02", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "CGY", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_chi_0202", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-02", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "San Jose Sharks", - "home_team_abbrev": "CHI", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_col_0202", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-02", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "COL", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_dal_0202", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-02", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "DAL", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_fla_0202", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-02", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "FLA", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_min_0202", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-02", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "MIN", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_nsh_0202", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-02", - "time": null, - "home_team": "Nashville Predators", - "away_team": "St. Louis Blues", - "home_team_abbrev": "NSH", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_pit_0202", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-02", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Ottawa Senators", - "home_team_abbrev": "PIT", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_uta_0202", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-02", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "UTA", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_wsh_0202", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-02", - "time": null, - "home_team": "Washington Capitals", - "away_team": "New York Islanders", - "home_team_abbrev": "WSH", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_ana_0203", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-03", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Seattle Kraken", - "home_team_abbrev": "ANA", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_car_0203", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-03", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Ottawa Senators", - "home_team_abbrev": "CAR", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_edm_0203", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-03", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "EDM", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_njd_0203", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-03", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "NJD", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_nyi_0203", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-03", - "time": null, - "home_team": "New York Islanders", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "NYI", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_phi_0203", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-03", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Washington Capitals", - "home_team_abbrev": "PHI", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_tbl_0203", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-03", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "TBL", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_cbj_0204", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-04", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_cgy_0204", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-04", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "CGY", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_col_0204", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-04", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "San Jose Sharks", - "home_team_abbrev": "COL", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_dal_0204", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-04", - "time": null, - "home_team": "Dallas Stars", - "away_team": "St. Louis Blues", - "home_team_abbrev": "DAL", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_fla_0204", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-04", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Boston Bruins", - "home_team_abbrev": "FLA", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_lak_0204", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-04", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Seattle Kraken", - "home_team_abbrev": "LAK", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_nsh_0204", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-04", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Minnesota Wild", - "home_team_abbrev": "NSH", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_uta_0204", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-04", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "UTA", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_vgk_0204", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-04", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "VGK", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_wpg_0204", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-04", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "WPG", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_buf_0205", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-05", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "BUF", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_njd_0205", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-05", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "New York Islanders", - "home_team_abbrev": "NJD", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_nyr_0205", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-05", - "time": null, - "home_team": "New York Rangers", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "NYR", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_phi_0205", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-05", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Ottawa Senators", - "home_team_abbrev": "PHI", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_tbl_0205", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-05", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Florida Panthers", - "home_team_abbrev": "TBL", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_vgk_0205", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-05", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "VGK", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_wsh_0205", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-05", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Nashville Predators", - "home_team_abbrev": "WSH", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_ana_0225", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-25", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "ANA", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_dal_0225", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-25", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Seattle Kraken", - "home_team_abbrev": "DAL", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_lak_0225", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-25", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "LAK", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_njd_0225", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-25", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "NJD", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_tbl_0225", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-25", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "TBL", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_uta_0225", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-25", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "UTA", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_van_0225", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-25", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "VAN", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_wsh_0225", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-25", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "WSH", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_bos_0226", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-26", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "BOS", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_car_0226", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-26", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "CAR", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_col_0226", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-26", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Minnesota Wild", - "home_team_abbrev": "COL", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_fla_0226", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-26", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "FLA", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_lak_0226", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-26", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "LAK", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_mtl_0226", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-26", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "New York Islanders", - "home_team_abbrev": "MTL", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_nsh_0226", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-26", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "NSH", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_nyr_0226", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-26", - "time": null, - "home_team": "New York Rangers", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "NYR", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_ott_0226", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-26", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "OTT", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_pit_0226", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-26", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "New Jersey Devils", - "home_team_abbrev": "PIT", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_sjs_0226", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-26", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Calgary Flames", - "home_team_abbrev": "SJS", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_stl_0226", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-26", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Seattle Kraken", - "home_team_abbrev": "STL", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_ana_0227", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-27", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "ANA", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_fla_0227", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-27", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "FLA", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_uta_0227", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-27", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Minnesota Wild", - "home_team_abbrev": "UTA", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_wsh_0227", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-27", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "WSH", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_car_0228", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-28", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "CAR", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_cbj_0228", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-28", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "New York Islanders", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_col_0228", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-28", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "COL", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_dal_0228", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-28", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Nashville Predators", - "home_team_abbrev": "DAL", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_lak_0228", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-28", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Calgary Flames", - "home_team_abbrev": "LAK", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_mtl_0228", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-28", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Washington Capitals", - "home_team_abbrev": "MTL", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_nyr_0228", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-28", - "time": null, - "home_team": "New York Rangers", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "NYR", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_phi_0228", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-28", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Boston Bruins", - "home_team_abbrev": "PHI", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_sea_0228", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-28", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "SEA", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_sjs_0228", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-28", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "SJS", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_stl_0228", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-28", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "New Jersey Devils", - "home_team_abbrev": "STL", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_tbl_0228", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-28", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "TBL", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_tor_0228", - "sport": "NHL", - "season": "2025-26", - "date": "2026-02-28", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Ottawa Senators", - "home_team_abbrev": "TOR", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_ana_0301", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-01", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Calgary Flames", - "home_team_abbrev": "ANA", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_min_0301", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-01", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "St. Louis Blues", - "home_team_abbrev": "MIN", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_nyi_0301", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-01", - "time": null, - "home_team": "New York Islanders", - "away_team": "Florida Panthers", - "home_team_abbrev": "NYI", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_pit_0301", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-01", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "PIT", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_sjs_0301", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-01", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "SJS", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_uta_0301", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-01", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "UTA", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_lak_0302", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-02", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "LAK", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_nsh_0302", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-02", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "NSH", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_nyr_0302", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-02", - "time": null, - "home_team": "New York Rangers", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "NYR", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_sea_0302", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-02", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "SEA", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_tor_0302", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-02", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_van_0302", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-02", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Dallas Stars", - "home_team_abbrev": "VAN", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_ana_0303", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-03", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "ANA", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_bos_0303", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-03", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "BOS", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_buf_0303", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-03", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "BUF", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_cbj_0303", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-03", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Nashville Predators", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_cgy_0303", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-03", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Dallas Stars", - "home_team_abbrev": "CGY", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_edm_0303", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-03", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Ottawa Senators", - "home_team_abbrev": "EDM", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_min_0303", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-03", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "MIN", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_njd_0303", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-03", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Florida Panthers", - "home_team_abbrev": "NJD", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_sjs_0303", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-03", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "SJS", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_wpg_0303", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-03", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "WPG", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_wsh_0303", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-03", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Utah Mammoth", - "home_team_abbrev": "WSH", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_ana_0304", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-04", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "New York Islanders", - "home_team_abbrev": "ANA", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_det_0304", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-04", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "DET", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_njd_0304", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-04", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "NJD", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_sea_0304", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-04", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "St. Louis Blues", - "home_team_abbrev": "SEA", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_van_0304", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-04", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "VAN", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_cbj_0305", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-05", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Florida Panthers", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_cgy_0305", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-05", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Ottawa Senators", - "home_team_abbrev": "CGY", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_lak_0305", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-05", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "New York Islanders", - "home_team_abbrev": "LAK", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_nsh_0305", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-05", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Boston Bruins", - "home_team_abbrev": "NSH", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_nyr_0305", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-05", - "time": null, - "home_team": "New York Rangers", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "NYR", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_phi_0305", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-05", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Utah Mammoth", - "home_team_abbrev": "PHI", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_pit_0305", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-05", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "PIT", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_wpg_0305", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-05", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "WPG", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_ana_0306", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-06", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "ANA", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_chi_0306", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-06", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "CHI", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_dal_0306", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-06", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "DAL", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_det_0306", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-06", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Florida Panthers", - "home_team_abbrev": "DET", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_edm_0306", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-06", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "EDM", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_sjs_0306", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-06", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "St. Louis Blues", - "home_team_abbrev": "SJS", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_vgk_0306", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-06", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Minnesota Wild", - "home_team_abbrev": "VGK", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_bos_0307", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-07", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Washington Capitals", - "home_team_abbrev": "BOS", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_buf_0307", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-07", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Nashville Predators", - "home_team_abbrev": "BUF", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_cbj_0307", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-07", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Utah Mammoth", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_cgy_0307", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-07", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "CGY", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_lak_0307", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-07", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "LAK", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_njd_0307", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-07", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "New York Rangers", - "home_team_abbrev": "NJD", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_pit_0307", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-07", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "PIT", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_sea_0307", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-07", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Ottawa Senators", - "home_team_abbrev": "SEA", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_sjs_0307", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-07", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "New York Islanders", - "home_team_abbrev": "SJS", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_tor_0307", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-07", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "TOR", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_wpg_0307", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-07", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "WPG", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_ana_0308", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-08", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "St. Louis Blues", - "home_team_abbrev": "ANA", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_buf_0308", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-08", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "BUF", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_col_0308", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-08", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Minnesota Wild", - "home_team_abbrev": "COL", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_dal_0308", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-08", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "DAL", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_njd_0308", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-08", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "NJD", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_pit_0308", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-08", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Boston Bruins", - "home_team_abbrev": "PIT", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_vgk_0308", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-08", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "VGK", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_chi_0309", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-09", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Utah Mammoth", - "home_team_abbrev": "CHI", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_phi_0309", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-09", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "New York Rangers", - "home_team_abbrev": "PHI", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_van_0309", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-09", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Ottawa Senators", - "home_team_abbrev": "VAN", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_wsh_0309", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-09", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Calgary Flames", - "home_team_abbrev": "WSH", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_bos_0310", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-10", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "BOS", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_buf_0310", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-10", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "San Jose Sharks", - "home_team_abbrev": "BUF", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_car_0310", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-10", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "CAR", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_col_0310", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-10", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "COL", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_dal_0310", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-10", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "DAL", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_fla_0310", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-10", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "FLA", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_min_0310", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-10", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Utah Mammoth", - "home_team_abbrev": "MIN", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_mtl_0310", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-10", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "MTL", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_nyr_0310", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-10", - "time": null, - "home_team": "New York Rangers", - "away_team": "Calgary Flames", - "home_team_abbrev": "NYR", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_sea_0310", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-10", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Nashville Predators", - "home_team_abbrev": "SEA", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_stl_0310", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-10", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "New York Islanders", - "home_team_abbrev": "STL", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_tbl_0310", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-10", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "TBL", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_wpg_0310", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-10", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "WPG", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_ott_0311", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-11", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "OTT", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_phi_0311", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-11", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Washington Capitals", - "home_team_abbrev": "PHI", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_bos_0312", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-12", - "time": null, - "home_team": "Boston Bruins", - "away_team": "San Jose Sharks", - "home_team_abbrev": "BOS", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_buf_0312", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-12", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Washington Capitals", - "home_team_abbrev": "BUF", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_car_0312", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-12", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "St. Louis Blues", - "home_team_abbrev": "CAR", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_dal_0312", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-12", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "DAL", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_fla_0312", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-12", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "FLA", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_min_0312", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-12", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_njd_0312", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-12", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Calgary Flames", - "home_team_abbrev": "NJD", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_sea_0312", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-12", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "SEA", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_tbl_0312", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-12", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "TBL", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_tor_0312", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-12", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "TOR", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_uta_0312", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-12", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "UTA", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_van_0312", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-12", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Nashville Predators", - "home_team_abbrev": "VAN", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_vgk_0312", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-12", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "VGK", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_wpg_0312", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-12", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "New York Rangers", - "home_team_abbrev": "WPG", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_nyi_0313", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-13", - "time": null, - "home_team": "New York Islanders", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "NYI", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_stl_0313", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-13", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "STL", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_buf_0314", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-14", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "BUF", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_dal_0314", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-14", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "DAL", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_min_0314", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-14", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "New York Rangers", - "home_team_abbrev": "MIN", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_mtl_0314", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-14", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "San Jose Sharks", - "home_team_abbrev": "MTL", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_njd_0314", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-14", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "NJD", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_nyi_0314", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-14", - "time": null, - "home_team": "New York Islanders", - "away_team": "Calgary Flames", - "home_team_abbrev": "NYI", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_ott_0314", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-14", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "OTT", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_phi_0314", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-14", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_tbl_0314", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-14", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "TBL", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_uta_0314", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-14", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "UTA", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_van_0314", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-14", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Seattle Kraken", - "home_team_abbrev": "VAN", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_vgk_0314", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-14", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "VGK", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_wpg_0314", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-14", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "WPG", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_wsh_0314", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-14", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Boston Bruins", - "home_team_abbrev": "WSH", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_edm_0315", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-15", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Nashville Predators", - "home_team_abbrev": "EDM", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_min_0315", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-15", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "MIN", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_mtl_0315", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-15", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "MTL", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_ott_0315", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-15", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "San Jose Sharks", - "home_team_abbrev": "OTT", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_sea_0315", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-15", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Florida Panthers", - "home_team_abbrev": "SEA", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_wpg_0315", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-15", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "St. Louis Blues", - "home_team_abbrev": "WPG", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_col_0316", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-16", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "COL", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_dal_0316", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-16", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Utah Mammoth", - "home_team_abbrev": "DAL", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_det_0316", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-16", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Calgary Flames", - "home_team_abbrev": "DET", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_njd_0316", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-16", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Boston Bruins", - "home_team_abbrev": "NJD", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_nyr_0316", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-16", - "time": null, - "home_team": "New York Rangers", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "NYR", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_cbj_0317", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-17", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_chi_0317", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-17", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Minnesota Wild", - "home_team_abbrev": "CHI", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_edm_0317", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-17", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "San Jose Sharks", - "home_team_abbrev": "EDM", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_mtl_0317", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-17", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Boston Bruins", - "home_team_abbrev": "MTL", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_sea_0317", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-17", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "SEA", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_tor_0317", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-17", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "New York Islanders", - "home_team_abbrev": "TOR", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_van_0317", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-17", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Florida Panthers", - "home_team_abbrev": "VAN", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_vgk_0317", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-17", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "VGK", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_wpg_0317", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-17", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Nashville Predators", - "home_team_abbrev": "WPG", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_ana_0318", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-18", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "ANA", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_car_0318", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-18", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "CAR", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_cgy_0318", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-18", - "time": null, - "home_team": "Calgary Flames", - "away_team": "St. Louis Blues", - "home_team_abbrev": "CGY", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_col_0318", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-18", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Dallas Stars", - "home_team_abbrev": "COL", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_nyr_0318", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-18", - "time": null, - "home_team": "New York Rangers", - "away_team": "New Jersey Devils", - "home_team_abbrev": "NYR", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_wsh_0318", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-18", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Ottawa Senators", - "home_team_abbrev": "WSH", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_bos_0319", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-19", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "BOS", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_cbj_0319", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-19", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "New York Rangers", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_det_0319", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-19", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "DET", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_edm_0319", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-19", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Florida Panthers", - "home_team_abbrev": "EDM", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_lak_0319", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-19", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "LAK", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_min_0319", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-19", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "MIN", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_nsh_0319", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-19", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Seattle Kraken", - "home_team_abbrev": "NSH", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_ott_0319", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-19", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "New York Islanders", - "home_team_abbrev": "OTT", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_sjs_0319", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-19", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "SJS", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_van_0319", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-19", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "VAN", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_vgk_0319", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-19", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Utah Mammoth", - "home_team_abbrev": "VGK", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_cgy_0320", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-20", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Florida Panthers", - "home_team_abbrev": "CGY", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_chi_0320", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-20", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "CHI", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_tor_0320", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-20", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "TOR", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_uta_0320", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-20", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "UTA", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_wsh_0320", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-20", - "time": null, - "home_team": "Washington Capitals", - "away_team": "New Jersey Devils", - "home_team_abbrev": "WSH", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_cbj_0321", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-21", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Seattle Kraken", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_det_0321", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-21", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Boston Bruins", - "home_team_abbrev": "DET", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_edm_0321", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-21", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "EDM", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_lak_0321", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-21", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "LAK", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_min_0321", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-21", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Dallas Stars", - "home_team_abbrev": "MIN", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_mtl_0321", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-21", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "New York Islanders", - "home_team_abbrev": "MTL", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_nsh_0321", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-21", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "NSH", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_ott_0321", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-21", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "OTT", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_pit_0321", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-21", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "PIT", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_sjs_0321", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-21", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "SJS", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_van_0321", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-21", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "St. Louis Blues", - "home_team_abbrev": "VAN", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_ana_0322", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-22", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "ANA", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_cgy_0322", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-22", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "CGY", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_chi_0322", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-22", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Nashville Predators", - "home_team_abbrev": "CHI", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_dal_0322", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-22", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "DAL", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_nyi_0322", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-22", - "time": null, - "home_team": "New York Islanders", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "NYI", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_nyr_0322", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-22", - "time": null, - "home_team": "New York Rangers", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "NYR", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_pit_0322", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-22", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "PIT", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_uta_0322", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-22", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "UTA", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_wsh_0322", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-22", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "WSH", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_nyr_0323", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-23", - "time": null, - "home_team": "New York Rangers", - "away_team": "Ottawa Senators", - "home_team_abbrev": "NYR", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_bos_0324", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-24", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_cgy_0324", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-24", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "CGY", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_dal_0324", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-24", - "time": null, - "home_team": "Dallas Stars", - "away_team": "New Jersey Devils", - "home_team_abbrev": "DAL", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_det_0324", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-24", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Ottawa Senators", - "home_team_abbrev": "DET", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_fla_0324", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-24", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Seattle Kraken", - "home_team_abbrev": "FLA", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_mtl_0324", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-24", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "MTL", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_nsh_0324", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-24", - "time": null, - "home_team": "Nashville Predators", - "away_team": "San Jose Sharks", - "home_team_abbrev": "NSH", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_nyi_0324", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-24", - "time": null, - "home_team": "New York Islanders", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "NYI", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_phi_0324", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-24", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_pit_0324", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-24", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "PIT", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_stl_0324", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-24", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Washington Capitals", - "home_team_abbrev": "STL", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_tbl_0324", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-24", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Minnesota Wild", - "home_team_abbrev": "TBL", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_uta_0324", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-24", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "UTA", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_van_0324", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-24", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "VAN", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_wpg_0324", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-24", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "WPG", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_buf_0325", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-25", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Boston Bruins", - "home_team_abbrev": "BUF", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_tor_0325", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-25", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "New York Rangers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_cgy_0326", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-26", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "CGY", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_fla_0326", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-26", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Minnesota Wild", - "home_team_abbrev": "FLA", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_mtl_0326", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-26", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "MTL", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_nsh_0326", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-26", - "time": null, - "home_team": "Nashville Predators", - "away_team": "New Jersey Devils", - "home_team_abbrev": "NSH", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_nyi_0326", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-26", - "time": null, - "home_team": "New York Islanders", - "away_team": "Dallas Stars", - "home_team_abbrev": "NYI", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_ott_0326", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-26", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "OTT", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_phi_0326", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-26", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_stl_0326", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-26", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "San Jose Sharks", - "home_team_abbrev": "STL", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_tbl_0326", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-26", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Seattle Kraken", - "home_team_abbrev": "TBL", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_uta_0326", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-26", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Washington Capitals", - "home_team_abbrev": "UTA", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_van_0326", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-26", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "VAN", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_vgk_0326", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-26", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "VGK", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_wpg_0326", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-26", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "WPG", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_buf_0327", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-27", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "BUF", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_nyr_0327", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-27", - "time": null, - "home_team": "New York Rangers", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "NYR", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_bos_0328", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-28", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Minnesota Wild", - "home_team_abbrev": "BOS", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_buf_0328", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-28", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Seattle Kraken", - "home_team_abbrev": "BUF", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_car_0328", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-28", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "New Jersey Devils", - "home_team_abbrev": "CAR", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_cbj_0328", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-28", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "San Jose Sharks", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_cgy_0328", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-28", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "CGY", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_col_0328", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-28", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "COL", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_det_0328", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-28", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "DET", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_edm_0328", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-28", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "EDM", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_lak_0328", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-28", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Utah Mammoth", - "home_team_abbrev": "LAK", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_nsh_0328", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-28", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "NSH", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_nyi_0328", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-28", - "time": null, - "home_team": "New York Islanders", - "away_team": "Florida Panthers", - "home_team_abbrev": "NYI", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_pit_0328", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-28", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Dallas Stars", - "home_team_abbrev": "PIT", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_stl_0328", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-28", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "STL", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_tbl_0328", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-28", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Ottawa Senators", - "home_team_abbrev": "TBL", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_vgk_0328", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-28", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Washington Capitals", - "home_team_abbrev": "VGK", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_car_0329", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-29", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "CAR", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_cbj_0329", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-29", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Boston Bruins", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_njd_0329", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-29", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "NJD", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_nyr_0329", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-29", - "time": null, - "home_team": "New York Rangers", - "away_team": "Florida Panthers", - "home_team_abbrev": "NYR", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_phi_0329", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-29", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Dallas Stars", - "home_team_abbrev": "PHI", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_tbl_0329", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-29", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Nashville Predators", - "home_team_abbrev": "TBL", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_ana_0330", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-30", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "ANA", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_col_0330", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-30", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Calgary Flames", - "home_team_abbrev": "COL", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_nyi_0330", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-30", - "time": null, - "home_team": "New York Islanders", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "NYI", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_sjs_0330", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-30", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "St. Louis Blues", - "home_team_abbrev": "SJS", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_vgk_0330", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-30", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "VGK", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_bos_0331", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-31", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Dallas Stars", - "home_team_abbrev": "BOS", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_buf_0331", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-31", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "New York Islanders", - "home_team_abbrev": "BUF", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_cbj_0331", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-31", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_chi_0331", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-31", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "CHI", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_edm_0331", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-31", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Seattle Kraken", - "home_team_abbrev": "EDM", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_fla_0331", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-31", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Ottawa Senators", - "home_team_abbrev": "FLA", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_nyr_0331", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-31", - "time": null, - "home_team": "New York Rangers", - "away_team": "New Jersey Devils", - "home_team_abbrev": "NYR", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_pit_0331", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-31", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "PIT", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_tbl_0331", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-31", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "TBL", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_wsh_0331", - "sport": "NHL", - "season": "2025-26", - "date": "2026-03-31", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "WSH", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_col_0401", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-01", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "COL", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_lak_0401", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-01", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "St. Louis Blues", - "home_team_abbrev": "LAK", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_sjs_0401", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-01", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "SJS", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_car_0402", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-02", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "CAR", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_dal_0402", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-02", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "DAL", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_edm_0402", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-02", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "EDM", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_fla_0402", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-02", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Boston Bruins", - "home_team_abbrev": "FLA", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_lak_0402", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-02", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Nashville Predators", - "home_team_abbrev": "LAK", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_min_0402", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-02", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "MIN", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_njd_0402", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-02", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Washington Capitals", - "home_team_abbrev": "NJD", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_nyr_0402", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-02", - "time": null, - "home_team": "New York Rangers", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "NYR", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_ott_0402", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-02", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "OTT", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_phi_0402", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-02", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "PHI", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_sea_0402", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-02", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Utah Mammoth", - "home_team_abbrev": "SEA", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_sjs_0402", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-02", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "SJS", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_tbl_0402", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-02", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "TBL", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_vgk_0402", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-02", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Calgary Flames", - "home_team_abbrev": "VGK", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_ana_0403", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-03", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "St. Louis Blues", - "home_team_abbrev": "ANA", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_nyi_0403", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-03", - "time": null, - "home_team": "New York Islanders", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "NYI", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_ana_0404", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-04", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Calgary Flames", - "home_team_abbrev": "ANA", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyi_car_0404", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-04", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "New York Islanders", - "home_team_abbrev": "CAR", - "away_team_abbrev": "NYI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_cbj_0404", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-04", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_dal_0404", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-04", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "DAL", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_edm_0404", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-04", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "EDM", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_lak_0404", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-04", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "LAK", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_njd_0404", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-04", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "NJD", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_nyr_0404", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-04", - "time": null, - "home_team": "New York Rangers", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "NYR", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_ott_0404", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-04", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Minnesota Wild", - "home_team_abbrev": "OTT", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_pit_0404", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-04", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Florida Panthers", - "home_team_abbrev": "PIT", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_sea_0404", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-04", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "SEA", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_sjs_0404", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-04", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Nashville Predators", - "home_team_abbrev": "SJS", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_tbl_0404", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-04", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Boston Bruins", - "home_team_abbrev": "TBL", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_van_0404", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-04", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Utah Mammoth", - "home_team_abbrev": "VAN", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_wsh_0404", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-04", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "WSH", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_col_0405", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-05", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "St. Louis Blues", - "home_team_abbrev": "COL", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_det_0405", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-05", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Minnesota Wild", - "home_team_abbrev": "DET", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_mtl_0405", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-05", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "New Jersey Devils", - "home_team_abbrev": "MTL", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_nyr_0405", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-05", - "time": null, - "home_team": "New York Rangers", - "away_team": "Washington Capitals", - "home_team_abbrev": "NYR", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_ott_0405", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-05", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "OTT", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_phi_0405", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-05", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Boston Bruins", - "home_team_abbrev": "PHI", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_pit_0405", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-05", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Florida Panthers", - "home_team_abbrev": "PIT", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_buf_0406", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-06", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "BUF", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_lak_0406", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-06", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Nashville Predators", - "home_team_abbrev": "LAK", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_chi_sjs_0406", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-06", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Chicago Blackhawks", - "home_team_abbrev": "SJS", - "away_team_abbrev": "CHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_wpg_0406", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-06", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Seattle Kraken", - "home_team_abbrev": "WPG", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_ana_0407", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-07", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Nashville Predators", - "home_team_abbrev": "ANA", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_car_0407", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-07", - "time": null, - "home_team": "Carolina Hurricanes", - "away_team": "Boston Bruins", - "home_team_abbrev": "CAR", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_dal_0407", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-07", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Calgary Flames", - "home_team_abbrev": "DAL", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_det_0407", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-07", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "DET", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_min_0407", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-07", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Seattle Kraken", - "home_team_abbrev": "MIN", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_mtl_0407", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-07", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Florida Panthers", - "home_team_abbrev": "MTL", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_njd_0407", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-07", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "NJD", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_ott_0407", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-07", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "OTT", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_stl_0407", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-07", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "STL", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_uta_0407", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-07", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "UTA", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_van_0407", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-07", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "VAN", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_nyr_0408", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-08", - "time": null, - "home_team": "New York Rangers", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "NYR", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_sjs_0408", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-08", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "SJS", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_tor_0408", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-08", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Washington Capitals", - "home_team_abbrev": "TOR", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_ana_0409", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-09", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "San Jose Sharks", - "home_team_abbrev": "ANA", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_buf_0409", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-09", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "BUF", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_chi_0409", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-09", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "CHI", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_col_0409", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-09", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Calgary Flames", - "home_team_abbrev": "COL", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_dal_0409", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-09", - "time": null, - "home_team": "Dallas Stars", - "away_team": "Minnesota Wild", - "home_team_abbrev": "DAL", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_det_0409", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-09", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "DET", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_lak_0409", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-09", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "LAK", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_mtl_0409", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-09", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "MTL", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_njd_0409", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-09", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "NJD", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_nyi_0409", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-09", - "time": null, - "home_team": "New York Islanders", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "NYI", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_ott_0409", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-09", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Florida Panthers", - "home_team_abbrev": "OTT", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_sea_0409", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-09", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "SEA", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_stl_0409", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-09", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "STL", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nsh_uta_0409", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-09", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Nashville Predators", - "home_team_abbrev": "UTA", - "away_team_abbrev": "NSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tbl_bos_0411", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-11", - "time": null, - "home_team": "Boston Bruins", - "away_team": "Tampa Bay Lightning", - "home_team_abbrev": "BOS", - "away_team_abbrev": "TBL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_chi_0411", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-11", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "St. Louis Blues", - "home_team_abbrev": "CHI", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_vgk_col_0411", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-11", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Vegas Golden Knights", - "home_team_abbrev": "COL", - "away_team_abbrev": "VGK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_dal_0411", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-11", - "time": null, - "home_team": "Dallas Stars", - "away_team": "New York Rangers", - "home_team_abbrev": "DAL", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_det_0411", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-11", - "time": null, - "home_team": "Detroit Red Wings", - "away_team": "New Jersey Devils", - "home_team_abbrev": "DET", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_edm_lak_0411", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-11", - "time": null, - "home_team": "Los Angeles Kings", - "away_team": "Edmonton Oilers", - "home_team_abbrev": "LAK", - "away_team_abbrev": "EDM", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cbj_mtl_0411", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-11", - "time": null, - "home_team": "Montreal Canadiens", - "away_team": "Columbus Blue Jackets", - "home_team_abbrev": "MTL", - "away_team_abbrev": "CBJ", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_nsh_0411", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-11", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Minnesota Wild", - "home_team_abbrev": "NSH", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_nyi_0411", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-11", - "time": null, - "home_team": "New York Islanders", - "away_team": "Ottawa Senators", - "home_team_abbrev": "NYI", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_pit_0411", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-11", - "time": null, - "home_team": "Pittsburgh Penguins", - "away_team": "Washington Capitals", - "home_team_abbrev": "PIT", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_cgy_sea_0411", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-11", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Calgary Flames", - "home_team_abbrev": "SEA", - "away_team_abbrev": "CGY", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_sjs_0411", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-11", - "time": null, - "home_team": "San Jose Sharks", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "SJS", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_fla_tor_0411", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-11", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Florida Panthers", - "home_team_abbrev": "TOR", - "away_team_abbrev": "FLA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_uta_0411", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-11", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "UTA", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_phi_wpg_0411", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-11", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "Philadelphia Flyers", - "home_team_abbrev": "WPG", - "away_team_abbrev": "PHI", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_ana_0412", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-12", - "time": null, - "home_team": "Anaheim Ducks", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "ANA", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_bos_cbj_0412", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-12", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Boston Bruins", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "BOS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_uta_cgy_0412", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-12", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Utah Mammoth", - "home_team_abbrev": "CGY", - "away_team_abbrev": "UTA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ott_njd_0412", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-12", - "time": null, - "home_team": "New Jersey Devils", - "away_team": "Ottawa Senators", - "home_team_abbrev": "NJD", - "away_team_abbrev": "OTT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_nyi_0412", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-12", - "time": null, - "home_team": "New York Islanders", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "NYI", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_wsh_0412", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-12", - "time": null, - "home_team": "Washington Capitals", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "WSH", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_buf_chi_0413", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-13", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "Buffalo Sabres", - "home_team_abbrev": "CHI", - "away_team_abbrev": "BUF", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_edm_0413", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-13", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "EDM", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_fla_0413", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-13", - "time": null, - "home_team": "Florida Panthers", - "away_team": "New York Rangers", - "home_team_abbrev": "FLA", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_nsh_0413", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-13", - "time": null, - "home_team": "Nashville Predators", - "away_team": "San Jose Sharks", - "home_team_abbrev": "NSH", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_phi_0413", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-13", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "PHI", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_sea_0413", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-13", - "time": null, - "home_team": "Seattle Kraken", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "SEA", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_min_stl_0413", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-13", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Minnesota Wild", - "home_team_abbrev": "STL", - "away_team_abbrev": "MIN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_tbl_0413", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-13", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "TBL", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_tor_0413", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-13", - "time": null, - "home_team": "Toronto Maple Leafs", - "away_team": "Dallas Stars", - "home_team_abbrev": "TOR", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_vgk_0413", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-13", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "VGK", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_njd_bos_0414", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-14", - "time": null, - "home_team": "Boston Bruins", - "away_team": "New Jersey Devils", - "home_team_abbrev": "BOS", - "away_team_abbrev": "NJD", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wsh_cbj_0414", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-14", - "time": null, - "home_team": "Columbus Blue Jackets", - "away_team": "Washington Capitals", - "home_team_abbrev": "CBJ", - "away_team_abbrev": "WSH", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_col_cgy_0414", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-14", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Colorado Avalanche", - "home_team_abbrev": "CGY", - "away_team_abbrev": "COL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_min_0414", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-14", - "time": null, - "home_team": "Minnesota Wild", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "MIN", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_car_nyi_0414", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-14", - "time": null, - "home_team": "New York Islanders", - "away_team": "Carolina Hurricanes", - "home_team_abbrev": "NYI", - "away_team_abbrev": "CAR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_mtl_phi_0414", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-14", - "time": null, - "home_team": "Philadelphia Flyers", - "away_team": "Montreal Canadiens", - "home_team_abbrev": "PHI", - "away_team_abbrev": "MTL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_pit_stl_0414", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-14", - "time": null, - "home_team": "St. Louis Blues", - "away_team": "Pittsburgh Penguins", - "home_team_abbrev": "STL", - "away_team_abbrev": "PIT", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_wpg_uta_0414", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-14", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "Winnipeg Jets", - "home_team_abbrev": "UTA", - "away_team_abbrev": "WPG", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_van_0414", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-14", - "time": null, - "home_team": "Vancouver Canucks", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "VAN", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_dal_buf_0415", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-15", - "time": null, - "home_team": "Buffalo Sabres", - "away_team": "Dallas Stars", - "home_team_abbrev": "BUF", - "away_team_abbrev": "DAL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_chi_0415", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-15", - "time": null, - "home_team": "Chicago Blackhawks", - "away_team": "San Jose Sharks", - "home_team_abbrev": "CHI", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_det_fla_0415", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-15", - "time": null, - "home_team": "Florida Panthers", - "away_team": "Detroit Red Wings", - "home_team_abbrev": "FLA", - "away_team_abbrev": "DET", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_tor_ott_0415", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-15", - "time": null, - "home_team": "Ottawa Senators", - "away_team": "Toronto Maple Leafs", - "home_team_abbrev": "OTT", - "away_team_abbrev": "TOR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_nyr_tbl_0415", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-15", - "time": null, - "home_team": "Tampa Bay Lightning", - "away_team": "New York Rangers", - "home_team_abbrev": "TBL", - "away_team_abbrev": "NYR", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_vgk_0415", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-15", - "time": null, - "home_team": "Vegas Golden Knights", - "away_team": "Seattle Kraken", - "home_team_abbrev": "VGK", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_lak_cgy_0416", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-16", - "time": null, - "home_team": "Calgary Flames", - "away_team": "Los Angeles Kings", - "home_team_abbrev": "CGY", - "away_team_abbrev": "LAK", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sea_col_0416", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-16", - "time": null, - "home_team": "Colorado Avalanche", - "away_team": "Seattle Kraken", - "home_team_abbrev": "COL", - "away_team_abbrev": "SEA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_van_edm_0416", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-16", - "time": null, - "home_team": "Edmonton Oilers", - "away_team": "Vancouver Canucks", - "home_team_abbrev": "EDM", - "away_team_abbrev": "VAN", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_ana_nsh_0416", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-16", - "time": null, - "home_team": "Nashville Predators", - "away_team": "Anaheim Ducks", - "home_team_abbrev": "NSH", - "away_team_abbrev": "ANA", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_stl_uta_0416", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-16", - "time": null, - "home_team": "Utah Mammoth", - "away_team": "St. Louis Blues", - "home_team_abbrev": "UTA", - "away_team_abbrev": "STL", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - }, - { - "id": "nhl_202526_sjs_wpg_0416", - "sport": "NHL", - "season": "2025-26", - "date": "2026-04-16", - "time": null, - "home_team": "Winnipeg Jets", - "away_team": "San Jose Sharks", - "home_team_abbrev": "WPG", - "away_team_abbrev": "SJS", - "venue": "", - "source": "hockey-reference.com", - "is_playoff": false, - "broadcast": null - } -] \ No newline at end of file diff --git a/SportsTime/Resources/games_canonical.json b/SportsTime/Resources/games_canonical.json index b69fe90..e451633 100644 --- a/SportsTime/Resources/games_canonical.json +++ b/SportsTime/Resources/games_canonical.json @@ -1,70852 +1,39655 @@ [ - { - "canonical_id": "game_mls_2025_20250222_min_lafc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-02-22T21:45:00Z", - "home_team_canonical_id": "team_mls_lafc", - "away_team_canonical_id": "team_mls_min", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250223_mtl_atl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-02-23T00:30:00Z", - "home_team_canonical_id": "team_mls_atl", - "away_team_canonical_id": "team_mls_mtl", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250223_chi_clb", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-02-23T00:30:00Z", - "home_team_canonical_id": "team_mls_clb", - "away_team_canonical_id": "team_mls_chi", - "stadium_canonical_id": "stadium_mls_lowercom_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250223_tor_dc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-02-23T00:30:00Z", - "home_team_canonical_id": "team_mls_dc", - "away_team_canonical_id": "team_mls_tor", - "stadium_canonical_id": "stadium_mls_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250223_ny_cin", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-02-23T00:30:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_ny", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250223_nyc_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-02-23T00:30:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250223_phi_orl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-02-23T00:30:00Z", - "home_team_canonical_id": "team_mls_orl", - "away_team_canonical_id": "team_mls_phi", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250223_skc_aus", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-02-23T01:30:00Z", - "home_team_canonical_id": "team_mls_aus", - "away_team_canonical_id": "team_mls_skc", - "stadium_canonical_id": "stadium_mls_q2_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250223_dal_hou", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-02-23T01:30:00Z", - "home_team_canonical_id": "team_mls_hou", - "away_team_canonical_id": "team_mls_dal", - "stadium_canonical_id": "stadium_mls_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250223_ne_nsh", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-02-23T01:30:00Z", - "home_team_canonical_id": "team_mls_nsh", - "away_team_canonical_id": "team_mls_ne", - "stadium_canonical_id": "stadium_mls_geodis_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250223_col_stl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-02-23T01:30:00Z", - "home_team_canonical_id": "team_mls_stl", - "away_team_canonical_id": "team_mls_col", - "stadium_canonical_id": "stadium_mls_citypark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250223_slc_sj", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-02-23T03:30:00Z", - "home_team_canonical_id": "team_mls_sj", - "away_team_canonical_id": "team_mls_slc", - "stadium_canonical_id": "stadium_mls_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250223_clt_sea", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-02-23T03:30:00Z", - "home_team_canonical_id": "team_mls_sea", - "away_team_canonical_id": "team_mls_clt", - "stadium_canonical_id": "stadium_mls_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250223_van_por", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-02-23T21:00:00Z", - "home_team_canonical_id": "team_mls_por", - "away_team_canonical_id": "team_mls_van", - "stadium_canonical_id": "stadium_mls_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250224_sd_lag", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-02-24T00:00:00Z", - "home_team_canonical_id": "team_mls_lag", - "away_team_canonical_id": "team_mls_sd", - "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250301_pit_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-01T18:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250301_wsn_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-01T18:05:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250301_nym_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-01T18:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250301_min_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-01T18:05:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250301_phi_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-01T18:05:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250301_tor_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-01T18:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250301_hou_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-01T18:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250301_atl_clt", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-01T19:15:00Z", - "home_team_canonical_id": "team_mls_clt", - "away_team_canonical_id": "team_mls_atl", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250301_cle_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-01T20:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_spring_sloan_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250301_sd_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-01T20:05:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250301_sf_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-01T20:05:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250301_col_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-01T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250301_oak_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-01T20:10:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250301_chw_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-01T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250301_tex_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-01T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250301_sea_slc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-01T21:30:00Z", - "home_team_canonical_id": "team_mls_slc", - "away_team_canonical_id": "team_mls_sea", - "stadium_canonical_id": "stadium_mls_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250301_mia_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-01T23:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250302_clb_ne", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-02T00:30:00Z", - "home_team_canonical_id": "team_mls_ne", - "away_team_canonical_id": "team_mls_clb", - "stadium_canonical_id": "stadium_mls_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250302_nsh_ny", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-02T00:30:00Z", - "home_team_canonical_id": "team_mls_ny", - "away_team_canonical_id": "team_mls_nsh", - "stadium_canonical_id": "stadium_mls_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250302_tor_orl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-02T00:30:00Z", - "home_team_canonical_id": "team_mls_orl", - "away_team_canonical_id": "team_mls_tor", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250302_cin_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-02T00:30:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_cin", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250302_chc_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-02T01:05:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250302_dc_chi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-02T01:30:00Z", - "home_team_canonical_id": "team_mls_chi", - "away_team_canonical_id": "team_mls_dc", - "stadium_canonical_id": "stadium_mls_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250302_mtl_min", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-02T01:30:00Z", - "home_team_canonical_id": "team_mls_min", - "away_team_canonical_id": "team_mls_mtl", - "stadium_canonical_id": "stadium_mls_allianz_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250302_sj_skc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-02T01:30:00Z", - "home_team_canonical_id": "team_mls_skc", - "away_team_canonical_id": "team_mls_sj", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250302_dal_col", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-02T02:30:00Z", - "home_team_canonical_id": "team_mls_col", - "away_team_canonical_id": "team_mls_dal", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250302_nyc_lafc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-02T03:30:00Z", - "home_team_canonical_id": "team_mls_lafc", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250302_aus_por", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-02T03:30:00Z", - "home_team_canonical_id": "team_mls_por", - "away_team_canonical_id": "team_mls_aus", - "stadium_canonical_id": "stadium_mls_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250302_stl_sd", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-02T03:30:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_stl", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250302_wsn_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-02T18:05:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250302_nym_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-02T18:05:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250302_det_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-02T18:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_spring_lecom_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250302_tbr_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-02T18:05:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250302_bal_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-02T18:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250302_nyy_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-02T18:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250302_phi_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-02T18:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250302_stl_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-02T18:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250302_cin_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-02T20:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_spring_sloan_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250302_lad_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-02T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250302_laa_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-02T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250302_ari_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-02T20:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250302_chw_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-02T20:05:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250302_mil_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-02T20:05:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250302_kc_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-02T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250302_sea_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-02T20:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250302_lag_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-02T22:00:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_lag", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250303_mia_hou", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-03T00:00:00Z", - "home_team_canonical_id": "team_mls_hou", - "away_team_canonical_id": "team_mls_mia", - "stadium_canonical_id": "stadium_mls_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250303_bos_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-03T18:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250303_tor_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-03T18:05:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250303_atl_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-03T18:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250303_hou_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-03T18:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250303_tex_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-03T20:05:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250303_oak_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-03T20:05:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250303_chc_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-03T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250303_col_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-03T20:10:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250303_cle_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-03T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250303_mia_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-03T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_spring_clover_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250303_pit_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-03T23:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250304_mil_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-04T01:05:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250304_bos_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-04T18:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_spring_lecom_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250304_stl_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-04T18:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250304_nym_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-04T18:05:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250304_det_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-04T18:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250304_min_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-04T18:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250304_nyy_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-04T18:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250304_laa_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-04T20:05:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250304_sd_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-04T20:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_spring_sloan_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250304_oak_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-04T20:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250304_cin_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-04T20:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250304_sf_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-04T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250305_cin_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-05T01:05:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250305_stl_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-05T18:05:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250305_tbr_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-05T18:05:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250305_tor_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-05T18:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_spring_lecom_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250305_bal_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-05T18:05:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250305_phi_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-05T18:05:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250305_wsn_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-05T18:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250305_tex_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-05T20:05:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250305_mil_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-05T20:05:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250305_lad_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-05T20:10:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250305_col_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-05T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250305_sf_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-05T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250305_chw_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-05T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250306_sea_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-06T01:05:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250306_wsn_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-06T18:05:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250306_tbr_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-06T18:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250306_min_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-06T18:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250306_bos_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-06T18:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250306_tex_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-06T20:05:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250306_sd_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-06T20:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250306_chw_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-06T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250306_pit_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-06T23:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250306_mia_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-06T23:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250306_hou_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-06T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_spring_clover_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250307_ari_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-07T01:05:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250307_kc_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-07T01:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_spring_sloan_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250307_mil_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-07T01:15:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250307_laa_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-07T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250307_sea_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-07T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250307_min_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-07T18:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250307_phi_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-07T18:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_spring_lecom_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250307_atl_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-07T18:05:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250307_mia_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-07T18:05:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250307_laa_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-07T20:05:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250307_cle_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-07T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250307_sf_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-07T20:05:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250307_chc_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-07T20:05:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250307_ari_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-07T20:10:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250307_sd_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-07T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250307_bal_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-07T23:05:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250307_nym_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-07T23:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250307_hou_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-07T23:05:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250307_tor_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-07T23:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250308_lad_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-08T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250308_tex_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-08T01:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250308_stl_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-08T17:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250308_tbr_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-08T18:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250308_bos_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-08T18:05:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250308_tor_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-08T18:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250308_pit_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-08T18:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250308_det_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-08T18:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250308_hou_clb", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-08T19:30:00Z", - "home_team_canonical_id": "team_mls_clb", - "away_team_canonical_id": "team_mls_hou", - "stadium_canonical_id": "stadium_mls_lowercom_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250308_ari_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-08T20:05:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250308_sea_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-08T20:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_spring_sloan_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250308_kc_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-08T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250308_kc_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-08T20:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250308_lad_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-08T20:05:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250308_oak_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-08T20:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250308_cle_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-08T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250308_laa_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-08T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250308_ari_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-08T21:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_las_vegas_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250308_lafc_sea", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-08T21:45:00Z", - "home_team_canonical_id": "team_mls_sea", - "away_team_canonical_id": "team_mls_lafc", - "stadium_canonical_id": "stadium_mls_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250308_nyy_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-08T23:05:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250308_nym_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-08T23:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250309_ny_atl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-09T00:30:00Z", - "home_team_canonical_id": "team_mls_atl", - "away_team_canonical_id": "team_mls_ny", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250309_skc_dc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-09T00:30:00Z", - "home_team_canonical_id": "team_mls_dc", - "away_team_canonical_id": "team_mls_skc", - "stadium_canonical_id": "stadium_mls_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250309_tor_cin", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-09T00:30:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_tor", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250309_phi_ne", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-09T00:30:00Z", - "home_team_canonical_id": "team_mls_ne", - "away_team_canonical_id": "team_mls_phi", - "stadium_canonical_id": "stadium_mls_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250309_orl_nyc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-09T00:30:00Z", - "home_team_canonical_id": "team_mls_nyc", - "away_team_canonical_id": "team_mls_orl", - "stadium_canonical_id": "stadium_mls_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250309_col_aus", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-09T01:30:00Z", - "home_team_canonical_id": "team_mls_aus", - "away_team_canonical_id": "team_mls_col", - "stadium_canonical_id": "stadium_mls_q2_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250309_chi_dal", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-09T01:30:00Z", - "home_team_canonical_id": "team_mls_dal", - "away_team_canonical_id": "team_mls_chi", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250309_por_nsh", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-09T01:30:00Z", - "home_team_canonical_id": "team_mls_nsh", - "away_team_canonical_id": "team_mls_por", - "stadium_canonical_id": "stadium_mls_geodis_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250309_sd_slc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-09T02:30:00Z", - "home_team_canonical_id": "team_mls_slc", - "away_team_canonical_id": "team_mls_sd", - "stadium_canonical_id": "stadium_mls_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250309_mtl_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-09T02:30:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_mtl", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250309_min_sj", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-09T03:30:00Z", - "home_team_canonical_id": "team_mls_sj", - "away_team_canonical_id": "team_mls_min", - "stadium_canonical_id": "stadium_mls_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250309_pit_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-09T17:05:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250309_tor_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-09T17:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250309_min_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-09T17:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250309_bal_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-09T17:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250309_atl_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-09T17:05:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250309_mia_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-09T17:05:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250309_nyy_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-09T17:05:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250309_wsn_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-09T17:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_spring_clover_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250309_clt_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-09T20:00:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_clt", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250309_ari_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-09T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_las_vegas_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250309_oak_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-09T20:05:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250309_sf_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-09T20:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_spring_sloan_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250309_sd_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-09T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250309_chw_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-09T20:05:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250309_mil_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-09T20:05:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250309_cin_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-09T20:10:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250309_col_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-09T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250309_tex_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-09T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250309_stl_lag", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-09T23:00:00Z", - "home_team_canonical_id": "team_mls_lag", - "away_team_canonical_id": "team_mls_stl", - "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250310_phi_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-10T17:05:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250310_tbr_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-10T17:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250310_det_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-10T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250310_hou_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-10T17:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250310_wsn_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-10T17:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250310_chc_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-10T20:05:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250310_cle_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-10T20:05:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250310_ari_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-10T20:05:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250310_chw_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-10T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250310_col_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-10T20:10:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250310_cin_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-10T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250310_sf_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-10T20:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250310_sea_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-10T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250310_bal_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-10T22:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_spring_lecom_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250310_mia_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-10T22:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250310_stl_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-10T22:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_spring_clover_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250311_nym_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-11T17:05:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250311_phi_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-11T17:05:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250311_det_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-11T17:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250311_mia_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-11T17:05:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250311_bal_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-11T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250311_nyy_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-11T17:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_spring_lecom_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250311_min_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-11T17:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250311_col_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-11T20:05:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250311_cle_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-11T20:05:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250311_laa_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-11T20:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250311_mil_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-11T20:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_spring_sloan_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250311_kc_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-11T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250311_chw_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-11T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250311_oak_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-11T23:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250312_hou_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-12T17:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250312_nym_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-12T17:05:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250312_tbr_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-12T17:05:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250312_atl_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-12T17:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250312_ari_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-12T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250312_sf_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-12T20:05:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250312_cin_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-12T20:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250312_laa_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-12T20:05:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250312_sd_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-12T20:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250312_kc_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-12T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250312_min_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-12T22:05:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250313_stl_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-13T17:05:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250313_wsn_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-13T17:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250313_pit_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-13T17:05:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250313_atl_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-13T17:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250313_nyy_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-13T17:05:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250313_bal_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-13T17:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250313_bos_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-13T17:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_spring_clover_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250313_hou_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-13T17:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250313_oak_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-13T19:05:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250313_tex_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-13T19:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250313_cle_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-13T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250313_sd_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-13T19:15:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250313_mil_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-13T20:05:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250314_ari_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-14T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250314_wsn_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-14T17:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250314_laa_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-14T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250314_sea_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-14T20:05:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250314_cin_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-14T20:05:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250314_cin_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-14T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250314_kc_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-14T20:10:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250314_bos_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-14T20:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250314_sf_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-14T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250314_det_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-14T22:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_spring_lecom_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250314_tor_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-14T22:05:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250314_min_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-14T22:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250314_tbr_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-14T22:05:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250314_stl_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-14T22:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_spring_clover_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250314_phi_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-14T22:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250315_wsh_hou", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-15T00:00:00Z", - "home_team_canonical_id": "team_nwsl_hou", - "away_team_canonical_id": "team_nwsl_wsh", - "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250315_chi_orl", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-15T00:00:00Z", - "home_team_canonical_id": "team_nwsl_orl", - "away_team_canonical_id": "team_nwsl_chi", - "stadium_canonical_id": "stadium_nwsl_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250315_col_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-15T01:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250315_tex_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-15T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250315_mia_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-15T16:05:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250315_por_kcc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-15T16:45:00Z", - "home_team_canonical_id": "team_nwsl_kcc", - "away_team_canonical_id": "team_nwsl_por", - "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250315_bal_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-15T17:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_spring_lecom_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250315_tor_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-15T17:05:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250315_det_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-15T17:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250315_atl_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-15T17:05:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250315_nyy_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-15T17:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250315_orl_ny", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-15T18:30:00Z", - "home_team_canonical_id": "team_mls_ny", - "away_team_canonical_id": "team_mls_orl", - "stadium_canonical_id": "stadium_mls_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250315_chi_tor", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-15T18:30:00Z", - "home_team_canonical_id": "team_mls_tor", - "away_team_canonical_id": "team_mls_chi", - "stadium_canonical_id": "stadium_mls_bmo_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250315_aus_lafc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-15T19:45:00Z", - "home_team_canonical_id": "team_mls_lafc", - "away_team_canonical_id": "team_mls_aus", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250315_kc_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-15T20:05:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250315_cle_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-15T20:05:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250315_sea_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-15T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250315_tex_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-15T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250315_col_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-15T20:05:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250315_sd_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-15T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250315_chw_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-15T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250315_mil_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-15T20:10:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250315_oak_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-15T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250315_nym_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-15T22:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250315_min_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-15T22:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250315_cin_clt", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-15T23:30:00Z", - "home_team_canonical_id": "team_mls_clt", - "away_team_canonical_id": "team_mls_cin", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250315_mtl_dc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-15T23:30:00Z", - "home_team_canonical_id": "team_mls_dc", - "away_team_canonical_id": "team_mls_mtl", - "stadium_canonical_id": "stadium_mls_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250315_ne_nyc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-15T23:30:00Z", - "home_team_canonical_id": "team_mls_nyc", - "away_team_canonical_id": "team_mls_ne", - "stadium_canonical_id": "stadium_mls_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250315_bay_uta", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-15T23:30:00Z", - "home_team_canonical_id": "team_nwsl_uta", - "away_team_canonical_id": "team_nwsl_bay", - "stadium_canonical_id": "stadium_nwsl_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250316_ncc_rgn", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-16T00:00:00Z", - "home_team_canonical_id": "team_nwsl_rgn", - "away_team_canonical_id": "team_nwsl_ncc", - "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250316_min_skc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-16T00:15:00Z", - "home_team_canonical_id": "team_mls_skc", - "away_team_canonical_id": "team_mls_min", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250316_van_dal", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-16T00:30:00Z", - "home_team_canonical_id": "team_mls_dal", - "away_team_canonical_id": "team_mls_van", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250316_slc_hou", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-16T00:30:00Z", - "home_team_canonical_id": "team_mls_hou", - "away_team_canonical_id": "team_mls_slc", - "stadium_canonical_id": "stadium_mls_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250316_sea_stl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-16T00:30:00Z", - "home_team_canonical_id": "team_mls_stl", - "away_team_canonical_id": "team_mls_sea", - "stadium_canonical_id": "stadium_mls_citypark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250316_njy_sea", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-16T02:00:00Z", - "home_team_canonical_id": "team_nwsl_sea", - "away_team_canonical_id": "team_nwsl_njy", - "stadium_canonical_id": "stadium_nwsl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250316_clb_sd", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-16T02:30:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_clb", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250316_col_sj", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-16T02:30:00Z", - "home_team_canonical_id": "team_mls_sj", - "away_team_canonical_id": "team_mls_col", - "stadium_canonical_id": "stadium_mls_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250316_bal_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-16T17:05:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250316_tbr_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-16T17:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250316_bos_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-16T17:05:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250316_phi_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-16T17:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250316_pit_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-16T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250316_nyy_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-16T17:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250316_atl_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-16T17:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250316_hou_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-16T17:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_spring_clover_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250316_stl_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-16T17:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250316_nsh_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-16T18:25:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_nsh", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250316_sea_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-16T20:05:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250316_oak_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-16T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250316_chw_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-16T20:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250316_kc_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-16T20:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250316_sd_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-16T20:10:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250316_ari_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-16T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250316_cle_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-16T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250316_lag_por", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-16T20:45:00Z", - "home_team_canonical_id": "team_mls_por", - "away_team_canonical_id": "team_mls_lag", - "stadium_canonical_id": "stadium_mls_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250316_sdw_ang", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-16T22:50:00Z", - "home_team_canonical_id": "team_nwsl_ang", - "away_team_canonical_id": "team_nwsl_sdw", - "stadium_canonical_id": "stadium_nwsl_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250316_mia_atl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-16T23:00:00Z", - "home_team_canonical_id": "team_mls_atl", - "away_team_canonical_id": "team_mls_mia", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250317_bal_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-17T17:05:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250317_pit_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-17T17:05:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250317_stl_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-17T17:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250317_min_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-17T17:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_spring_lecom_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250317_tor_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-17T17:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250317_bos_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-17T17:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250317_nyy_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-17T17:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250317_tbr_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-17T17:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_spring_clover_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250317_nym_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-17T17:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250317_ari_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-17T20:05:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250317_sea_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-17T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250317_sf_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-17T20:05:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250317_laa_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-17T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250317_mil_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-17T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250318_cin_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-18T01:05:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250318_lad_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-18T10:10:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250318_det_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-18T17:05:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250318_phi_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-18T17:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_spring_lecom_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250318_mia_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-18T17:05:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250318_bos_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-18T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250318_laa_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-18T20:05:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250318_mil_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-18T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250318_wsn_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-18T22:05:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250318_tor_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-18T22:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250319_sd_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-19T01:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250319_cle_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-19T01:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250319_sf_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-19T01:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250319_lad_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-19T10:10:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250319_det_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-19T17:05:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250319_wsn_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-19T17:05:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250319_pit_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-19T17:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250319_nyy_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-19T17:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250319_oak_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-19T20:05:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250319_cle_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-19T20:10:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250319_col_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-19T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250319_tex_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-19T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250319_chw_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-19T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250319_nym_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-19T22:05:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250319_atl_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-19T22:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250320_sf_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-20T01:05:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250320_phi_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-20T17:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250320_tbr_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-20T17:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250320_hou_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-20T17:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250320_kc_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-20T20:05:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250320_laa_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-20T20:05:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250320_oak_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-20T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250320_nym_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-20T22:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250320_bos_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-20T22:05:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250320_nyy_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-20T22:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250321_col_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-21T01:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250321_tex_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-21T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250321_hou_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-21T17:05:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250321_min_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-21T17:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250321_atl_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-21T17:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250321_phi_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-21T17:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250321_stl_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-21T17:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_spring_clover_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250321_tex_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-21T19:10:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250321_kc_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-21T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250321_sd_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-21T20:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_spring_sloan_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250321_sea_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-21T20:05:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250321_cle_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-21T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250321_chw_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-21T20:05:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250321_laa_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-21T20:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250321_cin_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-21T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250321_det_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-21T22:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250321_pit_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-21T22:05:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250321_mia_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-21T22:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250321_nyy_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-21T22:05:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250322_ari_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-22T01:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250322_ang_por", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-22T02:00:00Z", - "home_team_canonical_id": "team_nwsl_por", - "away_team_canonical_id": "team_nwsl_ang", - "stadium_canonical_id": "stadium_nwsl_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250322_bal_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-22T17:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_spring_lecom_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250322_bos_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-22T17:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250322_tor_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-22T17:05:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250322_atl_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-22T17:05:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250322_phi_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-22T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250322_wsn_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-22T17:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_spring_clover_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250322_stl_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-22T17:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250322_atl_cin", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-22T18:30:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_atl", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250322_ari_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-22T19:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250322_kc_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-22T19:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250322_col_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-22T20:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_spring_sloan_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250322_sd_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-22T20:05:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250322_sea_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-22T20:05:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250322_mil_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-22T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250322_cin_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-22T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250322_chw_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-22T20:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250322_lag_min", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-22T20:30:00Z", - "home_team_canonical_id": "team_mls_min", - "away_team_canonical_id": "team_mls_lag", - "stadium_canonical_id": "stadium_mls_allianz_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250322_mia_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-22T22:05:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250322_sea_ncc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-22T23:00:00Z", - "home_team_canonical_id": "team_nwsl_ncc", - "away_team_canonical_id": "team_nwsl_sea", - "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250322_sj_clt", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-22T23:30:00Z", - "home_team_canonical_id": "team_mls_clt", - "away_team_canonical_id": "team_mls_sj", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250322_nyc_clb", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-22T23:30:00Z", - "home_team_canonical_id": "team_mls_clb", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_lowercom_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250322_tor_ny", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-22T23:30:00Z", - "home_team_canonical_id": "team_mls_ny", - "away_team_canonical_id": "team_mls_tor", - "stadium_canonical_id": "stadium_mls_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250322_dc_orl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-22T23:30:00Z", - "home_team_canonical_id": "team_mls_orl", - "away_team_canonical_id": "team_mls_dc", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250322_stl_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-22T23:30:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_stl", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250322_kcc_wsh", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-22T23:30:00Z", - "home_team_canonical_id": "team_nwsl_wsh", - "away_team_canonical_id": "team_nwsl_kcc", - "stadium_canonical_id": "stadium_nwsl_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250323_mtl_nsh", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-23T00:30:00Z", - "home_team_canonical_id": "team_mls_nsh", - "away_team_canonical_id": "team_mls_mtl", - "stadium_canonical_id": "stadium_mls_geodis_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250323_lafc_skc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-23T00:30:00Z", - "home_team_canonical_id": "team_mls_skc", - "away_team_canonical_id": "team_mls_lafc", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250323_por_col", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-23T01:30:00Z", - "home_team_canonical_id": "team_mls_col", - "away_team_canonical_id": "team_mls_por", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250323_dal_slc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-23T01:30:00Z", - "home_team_canonical_id": "team_mls_slc", - "away_team_canonical_id": "team_mls_dal", - "stadium_canonical_id": "stadium_mls_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250323_rgn_bay", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-23T02:00:00Z", - "home_team_canonical_id": "team_nwsl_bay", - "away_team_canonical_id": "team_nwsl_rgn", - "stadium_canonical_id": "stadium_nwsl_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250323_uta_sdw", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-23T02:00:00Z", - "home_team_canonical_id": "team_nwsl_sdw", - "away_team_canonical_id": "team_nwsl_uta", - "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250323_hou_sea", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-23T02:30:00Z", - "home_team_canonical_id": "team_mls_sea", - "away_team_canonical_id": "team_mls_hou", - "stadium_canonical_id": "stadium_mls_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250323_chi_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-23T02:30:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_chi", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250323_hou_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-23T16:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_spring_cacti_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250323_det_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-23T16:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250323_wsn_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-23T17:05:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250323_min_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-23T17:05:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250323_bal_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-23T17:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250323_tbr_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-23T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250323_pit_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-23T17:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250323_mia_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-23T17:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_spring_clover_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250323_hou_chi", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-23T19:00:00Z", - "home_team_canonical_id": "team_nwsl_chi", - "away_team_canonical_id": "team_nwsl_hou", - "stadium_canonical_id": "stadium_nwsl_seatgeek_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250323_cle_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-23T19:05:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250323_sd_aus", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-23T20:00:00Z", - "home_team_canonical_id": "team_mls_aus", - "away_team_canonical_id": "team_mls_sd", - "stadium_canonical_id": "stadium_mls_q2_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250323_oak_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-23T20:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_spring_sloan_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250323_ari_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-23T20:05:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250323_sd_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-23T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250323_col_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-23T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250323_mil_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-23T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250323_orl_njy", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-23T21:00:00Z", - "home_team_canonical_id": "team_nwsl_njy", - "away_team_canonical_id": "team_nwsl_orl", - "stadium_canonical_id": "stadium_nwsl_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250324_laa_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-24T00:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250324_tbr_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-24T16:35:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250324_pit_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-24T17:05:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250324_bal_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-24T17:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250324_nyy_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-24T17:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_spring_clover_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250324_oak_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-24T19:05:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250324_sea_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-24T19:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250324_mil_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-24T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250324_atl_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-24T20:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_spring_sloan_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250325_kc_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-25T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250325_lad_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-25T01:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250325_cle_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-25T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250325_det_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-25T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250325_col_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-25T17:05:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250325_nyy_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-25T17:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250325_kc_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-25T18:35:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250325_cle_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-25T19:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250325_atl_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-25T20:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_spring_sloan_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250326_det_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-26T00:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250326_lad_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-26T01:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250327_mil_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-27T19:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250327_bal_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-27T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250327_bos_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-27T20:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250327_phi_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-27T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250327_cle_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-27T20:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250327_nym_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-27T20:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250327_sf_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-27T20:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250327_atl_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-27T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250327_laa_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-27T20:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250327_pit_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-27T20:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250327_min_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-27T20:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250327_det_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-27T23:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250328_chc_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-28T02:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250328_oak_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-28T02:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250328_col_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-28T20:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250328_bal_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-28T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250328_pit_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-28T23:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250329_njy_hou", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-29T00:00:00Z", - "home_team_canonical_id": "team_nwsl_hou", - "away_team_canonical_id": "team_nwsl_njy", - "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250329_bay_wsh", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-29T00:00:00Z", - "home_team_canonical_id": "team_nwsl_wsh", - "away_team_canonical_id": "team_nwsl_bay", - "stadium_canonical_id": "stadium_nwsl_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250329_bos_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-29T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250329_nym_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-29T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250329_chc_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-29T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250329_oak_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-29T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250329_atl_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-29T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250329_det_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-29T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250329_sdw_orl", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-29T16:00:00Z", - "home_team_canonical_id": "team_nwsl_orl", - "away_team_canonical_id": "team_nwsl_sdw", - "stadium_canonical_id": "stadium_nwsl_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250329_mil_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-29T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250329_laa_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-29T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250329_min_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-29T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250329_ny_ne", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-29T18:30:00Z", - "home_team_canonical_id": "team_mls_ne", - "away_team_canonical_id": "team_mls_ny", - "stadium_canonical_id": "stadium_mls_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250329_van_tor", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-29T18:30:00Z", - "home_team_canonical_id": "team_mls_tor", - "away_team_canonical_id": "team_mls_van", - "stadium_canonical_id": "stadium_mls_bmo_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250329_bal_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-29T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250329_phi_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-29T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250329_cle_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-29T20:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250329_sf_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-29T20:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250329_col_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-29T20:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250329_pit_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-29T20:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250329_clt_col", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-29T20:30:00Z", - "home_team_canonical_id": "team_mls_col", - "away_team_canonical_id": "team_mls_clt", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250329_bos_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-29T23:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250329_nym_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-29T23:15:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250329_atl_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-29T23:15:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250329_nyc_atl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-29T23:30:00Z", - "home_team_canonical_id": "team_mls_atl", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250329_clb_dc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-29T23:30:00Z", - "home_team_canonical_id": "team_mls_dc", - "away_team_canonical_id": "team_mls_clb", - "stadium_canonical_id": "stadium_mls_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250329_phi_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-29T23:30:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_phi", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250329_uta_kcc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-29T23:30:00Z", - "home_team_canonical_id": "team_nwsl_kcc", - "away_team_canonical_id": "team_nwsl_uta", - "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250330_chc_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-30T00:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250330_mtl_chi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-30T00:30:00Z", - "home_team_canonical_id": "team_mls_chi", - "away_team_canonical_id": "team_mls_mtl", - "stadium_canonical_id": "stadium_mls_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250330_skc_dal", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-30T00:30:00Z", - "home_team_canonical_id": "team_mls_dal", - "away_team_canonical_id": "team_mls_skc", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250330_slc_min", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-30T00:30:00Z", - "home_team_canonical_id": "team_mls_min", - "away_team_canonical_id": "team_mls_slc", - "stadium_canonical_id": "stadium_mls_allianz_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250330_cin_nsh", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-30T00:30:00Z", - "home_team_canonical_id": "team_mls_nsh", - "away_team_canonical_id": "team_mls_cin", - "stadium_canonical_id": "stadium_mls_geodis_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250330_det_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-30T01:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250330_oak_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-30T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250330_ncc_por", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-30T02:00:00Z", - "home_team_canonical_id": "team_nwsl_por", - "away_team_canonical_id": "team_nwsl_ncc", - "stadium_canonical_id": "stadium_nwsl_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250330_orl_lag", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-30T02:30:00Z", - "home_team_canonical_id": "team_mls_lag", - "away_team_canonical_id": "team_mls_orl", - "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250330_lafc_sd", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-30T02:30:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_lafc", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250330_sea_sj", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-30T02:30:00Z", - "home_team_canonical_id": "team_mls_sj", - "away_team_canonical_id": "team_mls_sea", - "stadium_canonical_id": "stadium_mls_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250330_phi_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-30T17:35:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250330_mil_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-30T17:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250330_bal_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-30T17:37:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250330_sf_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-30T17:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250330_col_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-30T17:40:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250330_pit_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-30T17:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250330_cle_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-30T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250330_laa_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-30T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250330_min_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-30T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250330_aus_stl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-30T18:15:00Z", - "home_team_canonical_id": "team_mls_stl", - "away_team_canonical_id": "team_mls_aus", - "stadium_canonical_id": "stadium_mls_citypark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250330_bos_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-30T18:35:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250330_rgn_chi", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-30T20:00:00Z", - "home_team_canonical_id": "team_nwsl_chi", - "away_team_canonical_id": "team_nwsl_rgn", - "stadium_canonical_id": "stadium_nwsl_seatgeek_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250330_chc_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-30T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250330_oak_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-30T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250330_hou_por", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-03-30T23:00:00Z", - "home_team_canonical_id": "team_mls_por", - "away_team_canonical_id": "team_mls_hou", - "stadium_canonical_id": "stadium_mls_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250330_atl_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-30T23:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250331_sea_ang", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-03-31T00:00:00Z", - "home_team_canonical_id": "team_nwsl_ang", - "away_team_canonical_id": "team_nwsl_sea", - "stadium_canonical_id": "stadium_nwsl_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250331_min_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-31T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250331_kc_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-31T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250331_bos_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-31T18:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250331_col_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-31T19:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250331_tex_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-31T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250331_nym_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-31T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250331_pit_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-31T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250331_wsn_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-31T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250331_laa_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-03-31T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250401_sf_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-01T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250401_cle_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-01T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250401_det_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-01T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250401_chc_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-01T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250401_atl_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-01T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250401_tex_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-01T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250401_nym_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-01T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250401_pit_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-01T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250401_ari_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-01T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250401_wsn_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-01T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250401_min_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-01T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250401_kc_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-01T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250401_laa_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-01T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250402_sf_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-02T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250402_cle_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-02T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250402_det_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-02T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250402_chc_oak_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-02T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250402_atl_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-02T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250402_tex_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-02T16:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250402_pit_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-02T17:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250402_kc_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-02T17:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250402_laa_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-02T17:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250402_min_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-02T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250402_wsn_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-02T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250402_chc_oak_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-02T19:35:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250402_sf_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-02T20:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250402_cle_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-02T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250402_det_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-02T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250402_nym_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-02T20:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250402_bos_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-02T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250402_col_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-02T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250402_ari_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-02T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250403_atl_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-03T00:38:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250403_bos_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-03T17:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250403_col_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-03T17:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250403_hou_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-03T20:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250403_ari_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-03T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250403_cin_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-03T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250404_chw_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-04T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250404_stl_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-04T18:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250404_sd_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-04T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250404_tor_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-04T19:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250404_oak_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-04T20:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250404_nyy_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-04T20:12:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250404_sea_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-04T20:35:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250404_ari_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-04T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250404_lad_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-04T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250404_mia_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-04T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250404_bal_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-04T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250405_tbr_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-05T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250405_cin_mil_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-05T00:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250405_cle_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-05T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250405_chw_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-05T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250405_hou_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-05T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250405_sd_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-05T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250405_nsh_clt", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-05T18:30:00Z", - "home_team_canonical_id": "team_mls_clt", - "away_team_canonical_id": "team_mls_nsh", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250405_ari_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-05T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250405_lad_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-05T20:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250405_nyy_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-05T20:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250405_bal_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-05T20:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250405_stl_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-05T20:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250405_lag_slc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-05T20:30:00Z", - "home_team_canonical_id": "team_mls_slc", - "away_team_canonical_id": "team_mls_lag", - "stadium_canonical_id": "stadium_mls_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250405_tbr_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-05T23:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250405_cin_mil_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-05T23:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250405_tor_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-05T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250405_mia_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-05T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250405_dal_atl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-05T23:30:00Z", - "home_team_canonical_id": "team_mls_atl", - "away_team_canonical_id": "team_mls_dal", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250405_mtl_clb", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-05T23:30:00Z", - "home_team_canonical_id": "team_mls_clb", - "away_team_canonical_id": "team_mls_mtl", - "stadium_canonical_id": "stadium_mls_lowercom_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250405_ne_cin", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-05T23:30:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_ne", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250405_chi_ny", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-05T23:30:00Z", - "home_team_canonical_id": "team_mls_ny", - "away_team_canonical_id": "team_mls_chi", - "stadium_canonical_id": "stadium_mls_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250405_orl_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-05T23:30:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_orl", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250405_por_aus", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-05T23:45:00Z", - "home_team_canonical_id": "team_mls_aus", - "away_team_canonical_id": "team_mls_por", - "stadium_canonical_id": "stadium_mls_q2_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250406_oak_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-06T00:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250406_stl_skc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-06T00:30:00Z", - "home_team_canonical_id": "team_mls_skc", - "away_team_canonical_id": "team_mls_stl", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250406_lafc_hou", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-06T01:00:00Z", - "home_team_canonical_id": "team_mls_hou", - "away_team_canonical_id": "team_mls_lafc", - "stadium_canonical_id": "stadium_mls_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250406_sea_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-06T01:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250406_col_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-06T01:30:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_col", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250406_cle_laa_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-06T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250406_sea_sd", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-06T02:30:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_sea", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250406_ari_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-06T17:35:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250406_stl_bos_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-06T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250406_lad_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-06T17:35:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250406_nyy_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-06T17:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250406_mia_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-06T17:35:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250406_tor_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-06T17:40:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250406_chw_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-06T17:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250406_bal_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-06T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250406_hou_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-06T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250406_cin_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-06T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250406_sd_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-06T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250406_tbr_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-06T18:35:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250406_min_nyc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-06T19:00:00Z", - "home_team_canonical_id": "team_mls_nyc", - "away_team_canonical_id": "team_mls_min", - "stadium_canonical_id": "stadium_mls_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250406_oak_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-06T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250406_sea_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-06T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250406_cle_laa_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-06T20:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250406_dc_sj", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-06T21:00:00Z", - "home_team_canonical_id": "team_mls_sj", - "away_team_canonical_id": "team_mls_dc", - "stadium_canonical_id": "stadium_mls_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250406_tor_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-06T23:00:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_tor", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250406_stl_bos_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-06T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250407_nyy_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-07T19:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250407_stl_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-07T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250407_lad_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-07T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250407_tor_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-07T22:45:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250407_mia_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-07T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250407_tex_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-07T23:40:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250407_min_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-07T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250408_bal_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-08T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250408_hou_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-08T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250408_cin_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-08T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250408_sd_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-08T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250408_nyy_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-08T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250408_chw_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-08T20:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250408_mia_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-08T20:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250408_stl_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-08T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250408_lad_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-08T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250408_tor_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-08T22:45:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250408_laa_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-08T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250408_phi_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-08T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250408_tex_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-08T23:40:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250408_min_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-08T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250409_mil_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-09T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250409_bal_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-09T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250409_hou_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-09T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250409_cin_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-09T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250409_sd_oak_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-09T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250409_stl_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-09T16:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250409_mia_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-09T17:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250409_nyy_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-09T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250409_tex_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-09T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250409_sd_oak_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-09T19:35:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250409_bal_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-09T19:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250409_cin_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-09T19:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250409_lad_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-09T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250409_hou_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-09T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250409_chw_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-09T22:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250409_tor_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-09T22:45:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250409_laa_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-09T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250409_phi_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-09T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250409_min_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-09T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250410_mil_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-10T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250410_laa_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-10T17:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250410_chw_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-10T17:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250410_min_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-10T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250410_mil_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-10T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250410_tor_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-10T20:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250410_phi_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-10T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250411_kc_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-11T22:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250411_pit_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-11T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250411_atl_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-11T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250411_sf_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-11T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250411_tor_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-11T23:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250411_wsn_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-11T23:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250411_bos_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-11T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250412_laa_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-12T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250412_det_min_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-12T00:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250412_phi_stl_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-12T00:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250412_col_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-12T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250412_tex_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-12T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250412_mil_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-12T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250412_por_uta", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-12T02:00:00Z", - "home_team_canonical_id": "team_nwsl_uta", - "away_team_canonical_id": "team_nwsl_por", - "stadium_canonical_id": "stadium_nwsl_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250412_nym_oak_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-12T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250412_chc_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-12T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250412_det_min_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-12T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250412_phi_stl_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-12T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250412_min_tor", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-12T18:30:00Z", - "home_team_canonical_id": "team_mls_tor", - "away_team_canonical_id": "team_mls_min", - "stadium_canonical_id": "stadium_mls_bmo_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250412_ne_atl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-12T18:45:00Z", - "home_team_canonical_id": "team_mls_atl", - "away_team_canonical_id": "team_mls_ne", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250412_sf_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-12T19:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250412_nym_oak_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-12T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250412_tor_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-12T20:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250412_atl_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-12T20:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250412_bos_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-12T20:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250412_wsn_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-12T20:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250412_ny_orl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-12T20:30:00Z", - "home_team_canonical_id": "team_mls_orl", - "away_team_canonical_id": "team_mls_ny", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250412_ang_hou", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-12T21:00:00Z", - "home_team_canonical_id": "team_nwsl_hou", - "away_team_canonical_id": "team_nwsl_ang", - "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250412_wsh_rgn", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-12T21:00:00Z", - "home_team_canonical_id": "team_nwsl_rgn", - "away_team_canonical_id": "team_nwsl_wsh", - "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250412_kc_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-12T22:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250412_pit_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-12T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250412_laa_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-12T23:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250412_clt_mtl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-12T23:30:00Z", - "home_team_canonical_id": "team_mls_mtl", - "away_team_canonical_id": "team_mls_clt", - "stadium_canonical_id": "stadium_mls_stade_saputo", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250412_cin_dc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-12T23:30:00Z", - "home_team_canonical_id": "team_mls_dc", - "away_team_canonical_id": "team_mls_cin", - "stadium_canonical_id": "stadium_mls_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250412_phi_nyc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-12T23:30:00Z", - "home_team_canonical_id": "team_mls_nyc", - "away_team_canonical_id": "team_mls_phi", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250412_aus_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-12T23:30:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_aus", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250412_orl_sea", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-12T23:30:00Z", - "home_team_canonical_id": "team_nwsl_sea", - "away_team_canonical_id": "team_nwsl_orl", - "stadium_canonical_id": "stadium_nwsl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250413_mil_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-13T00:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250413_sea_dal", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-13T00:30:00Z", - "home_team_canonical_id": "team_mls_dal", - "away_team_canonical_id": "team_mls_sea", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250413_slc_nsh", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-13T00:30:00Z", - "home_team_canonical_id": "team_mls_nsh", - "away_team_canonical_id": "team_mls_slc", - "stadium_canonical_id": "stadium_mls_geodis_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250413_col_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-13T00:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250413_chc_lad_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-13T01:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250413_sd_col", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-13T01:30:00Z", - "home_team_canonical_id": "team_mls_col", - "away_team_canonical_id": "team_mls_sd", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250413_tex_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-13T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250413_kcc_sdw", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-13T02:00:00Z", - "home_team_canonical_id": "team_nwsl_sdw", - "away_team_canonical_id": "team_nwsl_kcc", - "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250413_hou_lag", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-13T02:30:00Z", - "home_team_canonical_id": "team_mls_lag", - "away_team_canonical_id": "team_mls_hou", - "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250413_sj_lafc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-13T02:30:00Z", - "home_team_canonical_id": "team_mls_lafc", - "away_team_canonical_id": "team_mls_sj", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250413_tor_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-13T17:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250413_sf_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-13T17:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250413_kc_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-13T17:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250413_pit_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-13T17:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250413_atl_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-13T17:40:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250413_wsn_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-13T17:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250413_laa_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-13T18:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250413_det_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-13T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250413_bos_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-13T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250413_phi_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-13T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250413_por_skc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-13T18:15:00Z", - "home_team_canonical_id": "team_mls_skc", - "away_team_canonical_id": "team_mls_por", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250413_ncc_njy", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-13T20:00:00Z", - "home_team_canonical_id": "team_nwsl_njy", - "away_team_canonical_id": "team_nwsl_ncc", - "stadium_canonical_id": "stadium_nwsl_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250413_nym_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-13T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250413_mil_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-13T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250413_col_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-13T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250413_tex_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-13T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250413_mia_chi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-13T20:30:00Z", - "home_team_canonical_id": "team_mls_chi", - "away_team_canonical_id": "team_mls_mia", - "stadium_canonical_id": "stadium_mls_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250413_clb_stl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-13T23:00:00Z", - "home_team_canonical_id": "team_mls_stl", - "away_team_canonical_id": "team_mls_clb", - "stadium_canonical_id": "stadium_mls_citypark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250413_chi_bay", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-13T23:00:00Z", - "home_team_canonical_id": "team_nwsl_bay", - "away_team_canonical_id": "team_nwsl_chi", - "stadium_canonical_id": "stadium_nwsl_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250413_chc_lad_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-13T23:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250414_wsn_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-14T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250414_sf_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-14T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250414_bos_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-14T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250414_kc_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-14T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250414_atl_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-14T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250414_nym_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-14T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250414_det_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-14T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250414_hou_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-14T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250415_chc_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-15T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250415_col_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-15T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250415_wsn_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-15T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250415_sea_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-15T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250415_ari_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-15T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250415_sf_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-15T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250415_cle_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-15T23:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250415_bos_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-15T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250415_kc_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-15T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250415_atl_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-15T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250415_nym_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-15T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250415_oak_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-15T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250415_det_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-15T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250415_hou_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-15T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250416_laa_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-16T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250416_chc_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-16T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250416_col_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-16T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250416_atl_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-16T17:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250416_nym_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-16T17:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250416_det_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-16T17:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250416_hou_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-16T17:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250416_chc_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-16T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250416_cle_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-16T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250416_wsn_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-16T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250416_sea_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-16T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250416_ari_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-16T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250416_sf_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-16T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250416_bos_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-16T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250416_kc_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-16T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250416_oak_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-16T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250417_laa_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-17T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250417_col_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-17T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250417_ari_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-17T16:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250417_wsn_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-17T16:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250417_sea_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-17T16:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250417_oak_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-17T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250417_sf_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-17T20:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250417_cle_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-17T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250417_kc_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-17T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250417_nyy_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-17T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250417_stl_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-17T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250418_laa_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-18T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250418_ari_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-18T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250418_kc_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-18T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250418_cle_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-18T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250418_mia_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-18T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250418_cin_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-18T23:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250418_nyy_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-18T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250418_sea_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-18T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250418_stl_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-18T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250418_chw_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-18T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250418_min_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-18T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250419_lad_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-19T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250419_sd_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-19T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250419_oak_mil_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-19T00:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250419_wsn_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-19T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250419_chi_uta", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-19T01:30:00Z", - "home_team_canonical_id": "team_nwsl_uta", - "away_team_canonical_id": "team_nwsl_chi", - "stadium_canonical_id": "stadium_nwsl_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250419_sf_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-19T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250419_por_sea", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-19T02:00:00Z", - "home_team_canonical_id": "team_nwsl_sea", - "away_team_canonical_id": "team_nwsl_por", - "stadium_canonical_id": "stadium_nwsl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250419_njy_ang", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-19T02:30:00Z", - "home_team_canonical_id": "team_nwsl_ang", - "away_team_canonical_id": "team_nwsl_njy", - "stadium_canonical_id": "stadium_nwsl_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250419_mia_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-19T17:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250419_kc_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-19T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250419_lag_aus", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-19T17:45:00Z", - "home_team_canonical_id": "team_mls_aus", - "away_team_canonical_id": "team_mls_lag", - "stadium_canonical_id": "stadium_mls_q2_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250419_ari_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-19T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250419_sdw_rgn", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-19T19:00:00Z", - "home_team_canonical_id": "team_nwsl_rgn", - "away_team_canonical_id": "team_nwsl_sdw", - "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250419_sea_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-19T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250419_lad_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-19T20:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250419_cin_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-19T20:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250419_cle_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-19T20:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250419_stl_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-19T20:05:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250419_wsn_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-19T20:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250419_chw_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-19T20:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250419_nyy_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-19T20:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250419_mia_clb", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-19T20:30:00Z", - "home_team_canonical_id": "team_mls_clb", - "away_team_canonical_id": "team_mls_mia", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250419_wsh_orl", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-19T21:05:00Z", - "home_team_canonical_id": "team_nwsl_orl", - "away_team_canonical_id": "team_nwsl_wsh", - "stadium_canonical_id": "stadium_nwsl_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250419_bay_ncc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-19T23:00:00Z", - "home_team_canonical_id": "team_nwsl_ncc", - "away_team_canonical_id": "team_nwsl_bay", - "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250419_sd_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-19T23:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250419_oak_mil_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-19T23:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250419_min_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-19T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250419_orl_mtl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-19T23:30:00Z", - "home_team_canonical_id": "team_mls_mtl", - "away_team_canonical_id": "team_mls_orl", - "stadium_canonical_id": "stadium_mls_stade_saputo", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250419_sd_clt", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-19T23:30:00Z", - "home_team_canonical_id": "team_mls_clt", - "away_team_canonical_id": "team_mls_sd", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250419_nyc_ne", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-19T23:30:00Z", - "home_team_canonical_id": "team_mls_ne", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250419_dc_ny", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-19T23:30:00Z", - "home_team_canonical_id": "team_mls_ny", - "away_team_canonical_id": "team_mls_dc", - "stadium_canonical_id": "stadium_mls_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250419_atl_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-19T23:30:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_atl", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250419_nsh_sea", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-19T23:30:00Z", - "home_team_canonical_id": "team_mls_sea", - "away_team_canonical_id": "team_mls_nsh", - "stadium_canonical_id": "stadium_mls_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250419_hou_kcc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-19T23:30:00Z", - "home_team_canonical_id": "team_nwsl_kcc", - "away_team_canonical_id": "team_nwsl_hou", - "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250420_cin_chi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-20T00:30:00Z", - "home_team_canonical_id": "team_mls_chi", - "away_team_canonical_id": "team_mls_cin", - "stadium_canonical_id": "stadium_mls_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250420_col_hou", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-20T00:30:00Z", - "home_team_canonical_id": "team_mls_hou", - "away_team_canonical_id": "team_mls_col", - "stadium_canonical_id": "stadium_mls_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250420_dal_min", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-20T00:30:00Z", - "home_team_canonical_id": "team_mls_min", - "away_team_canonical_id": "team_mls_dal", - "stadium_canonical_id": "stadium_mls_allianz_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250420_van_stl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-20T00:30:00Z", - "home_team_canonical_id": "team_mls_stl", - "away_team_canonical_id": "team_mls_van", - "stadium_canonical_id": "stadium_mls_citypark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250420_tor_slc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-20T01:30:00Z", - "home_team_canonical_id": "team_mls_slc", - "away_team_canonical_id": "team_mls_tor", - "stadium_canonical_id": "stadium_mls_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250420_sf_laa_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-20T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250420_lafc_por", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-20T02:15:00Z", - "home_team_canonical_id": "team_mls_por", - "away_team_canonical_id": "team_mls_lafc", - "stadium_canonical_id": "stadium_mls_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250420_skc_sj", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-20T02:30:00Z", - "home_team_canonical_id": "team_mls_sj", - "away_team_canonical_id": "team_mls_skc", - "stadium_canonical_id": "stadium_mls_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250420_cin_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-20T17:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250420_cle_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-20T17:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250420_min_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-20T17:35:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250420_chw_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-20T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250420_mia_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-20T17:35:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250420_sea_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-20T17:37:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250420_kc_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-20T17:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250420_stl_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-20T17:40:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250420_nyy_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-20T17:40:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250420_oak_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-20T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250420_ari_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-20T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250420_lad_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-20T18:35:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250420_wsn_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-20T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250420_sf_laa_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-20T20:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250420_sd_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-20T23:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250421_wsn_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-21T00:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250421_chw_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-21T15:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250421_nyy_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-21T22:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250421_sd_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-21T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250421_cin_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-21T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250421_phi_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-21T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250421_stl_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-21T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250422_tor_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-22T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250422_mil_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-22T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250422_nyy_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-22T22:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250422_sd_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-22T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250422_cin_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-22T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250422_bal_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-22T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250422_sea_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-22T22:45:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250422_phi_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-22T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250422_stl_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-22T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250422_col_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-22T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250422_lad_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-22T23:40:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250422_chw_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-22T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250423_tor_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-23T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250423_pit_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-23T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250423_tbr_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-23T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250423_mil_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-23T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250423_tex_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-23T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250423_njy_por", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-23T02:30:00Z", - "home_team_canonical_id": "team_nwsl_por", - "away_team_canonical_id": "team_nwsl_njy", - "stadium_canonical_id": "stadium_nwsl_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250423_stl_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-23T16:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250423_sd_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-23T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250423_phi_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-23T17:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250423_cin_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-23T17:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250423_nyy_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-23T17:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250423_bal_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-23T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250423_sea_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-23T22:45:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250423_lad_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-23T23:00:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250423_tor_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-23T23:40:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250423_chw_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-23T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250423_col_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-23T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250424_pit_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-24T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250424_tbr_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-24T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250424_mil_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-24T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250424_tex_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-24T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250424_chw_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-24T17:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250424_sea_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-24T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250424_col_kc_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-24T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250424_col_kc_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-24T18:15:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250424_mil_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-24T19:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250424_bal_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-24T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250425_pit_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-25T01:29:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250425_tbr_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-25T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250425_tex_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-25T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250425_phi_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-25T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250425_bal_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-25T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250425_nym_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-25T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250425_tor_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-25T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250425_bos_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-25T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250425_hou_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-25T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250425_laa_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-25T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250426_uta_hou", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-26T00:00:00Z", - "home_team_canonical_id": "team_nwsl_hou", - "away_team_canonical_id": "team_nwsl_uta", - "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250426_ang_orl", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-26T00:00:00Z", - "home_team_canonical_id": "team_nwsl_orl", - "away_team_canonical_id": "team_nwsl_ang", - "stadium_canonical_id": "stadium_nwsl_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_mil_stl_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T00:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_cin_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_tbr_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_atl_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_mia_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_chw_oak_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_pit_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_tex_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T02:15:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250426_njy_wsh", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-26T17:00:00Z", - "home_team_canonical_id": "team_nwsl_wsh", - "away_team_canonical_id": "team_nwsl_njy", - "stadium_canonical_id": "stadium_nwsl_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_tor_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_bos_cle_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T17:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_bal_det_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_laa_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_mil_stl_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250426_skc_cin", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-26T18:30:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_skc", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250426_nyc_tor", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-26T18:30:00Z", - "home_team_canonical_id": "team_mls_tor", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_bmo_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_cin_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_chw_oak_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_tex_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_nym_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_phi_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T20:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250426_mtl_ny", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-26T20:30:00Z", - "home_team_canonical_id": "team_mls_ny", - "away_team_canonical_id": "team_mls_mtl", - "stadium_canonical_id": "stadium_mls_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250426_dc_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-26T20:30:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_dc", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_bos_cle_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T22:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_bal_det_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T22:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250426_kcc_ncc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-26T23:00:00Z", - "home_team_canonical_id": "team_nwsl_ncc", - "away_team_canonical_id": "team_nwsl_kcc", - "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250426_hou_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-26T23:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250426_atl_orl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-26T23:15:00Z", - "home_team_canonical_id": "team_mls_orl", - "away_team_canonical_id": "team_mls_atl", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250426_ne_clt", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-26T23:30:00Z", - "home_team_canonical_id": "team_mls_clt", - "away_team_canonical_id": "team_mls_ne", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250426_sj_clb", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-26T23:30:00Z", - "home_team_canonical_id": "team_mls_clb", - "away_team_canonical_id": "team_mls_sj", - "stadium_canonical_id": "stadium_mls_lowercom_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250426_slc_sd", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-26T23:30:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_slc", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250426_sdw_chi", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-26T23:30:00Z", - "home_team_canonical_id": "team_nwsl_chi", - "away_team_canonical_id": "team_nwsl_sdw", - "stadium_canonical_id": "stadium_nwsl_seatgeek_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_atl_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T00:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250427_aus_hou", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-27T00:30:00Z", - "home_team_canonical_id": "team_mls_hou", - "away_team_canonical_id": "team_mls_aus", - "stadium_canonical_id": "stadium_mls_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250427_chi_nsh", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-27T00:30:00Z", - "home_team_canonical_id": "team_mls_nsh", - "away_team_canonical_id": "team_mls_chi", - "stadium_canonical_id": "stadium_mls_geodis_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_tbr_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T00:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_pit_lad_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T01:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250427_sea_col", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-27T01:30:00Z", - "home_team_canonical_id": "team_mls_col", - "away_team_canonical_id": "team_mls_sea", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_mia_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250427_sea_bay", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-27T02:00:00Z", - "home_team_canonical_id": "team_nwsl_bay", - "away_team_canonical_id": "team_nwsl_sea", - "stadium_canonical_id": "stadium_nwsl_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_nym_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T17:35:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_tor_nyy_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T17:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_tor_nyy_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T17:40:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_bos_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T17:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_bal_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T17:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_laa_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T17:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_hou_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_mil_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250427_van_min", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-27T19:00:00Z", - "home_team_canonical_id": "team_mls_min", - "away_team_canonical_id": "team_mls_van", - "stadium_canonical_id": "stadium_mls_allianz_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_cin_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250427_rgn_por", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-04-27T20:00:00Z", - "home_team_canonical_id": "team_nwsl_por", - "away_team_canonical_id": "team_nwsl_rgn", - "stadium_canonical_id": "stadium_nwsl_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_tex_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_chw_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_atl_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_tbr_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_pit_lad_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T20:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_mia_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250427_dal_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-27T21:00:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_dal", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250427_stl_lafc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-27T23:00:00Z", - "home_team_canonical_id": "team_mls_lafc", - "away_team_canonical_id": "team_mls_stl", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250427_phi_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-27T23:10:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250428_por_lag", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-04-28T01:00:00Z", - "home_team_canonical_id": "team_mls_lag", - "away_team_canonical_id": "team_mls_por", - "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250428_nym_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-28T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250428_min_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-28T22:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250428_nyy_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-28T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250428_stl_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-28T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250429_oak_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-29T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250429_det_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-29T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250429_atl_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-29T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250429_mia_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-29T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250429_min_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-29T22:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250429_nyy_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-29T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250429_chc_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-29T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250429_stl_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-29T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250429_wsn_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-29T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250429_kc_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-29T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250429_bos_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-29T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250429_ari_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-29T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250429_mil_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-29T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_oak_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_det_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_atl_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_laa_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_sf_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_mia_lad_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_stl_cin_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T16:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_det_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T18:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_atl_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_mia_lad_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T19:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_laa_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_sf_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_min_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T22:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_nyy_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_stl_cin_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_chc_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_wsn_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_kc_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_bos_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_ari_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250430_mil_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-04-30T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250501_oak_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-01T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250501_chc_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-01T16:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250501_stl_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-01T16:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250501_ari_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-01T17:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250501_kc_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-01T17:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250501_min_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-01T17:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250501_mil_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-01T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250501_oak_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-01T18:35:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250501_wsn_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-01T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250501_bos_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-01T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250502_det_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-02T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250502_col_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-02T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250502_wsn_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-02T22:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250502_sd_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-02T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250502_ari_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-02T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250502_dal_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-02T23:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_purcell_pavilion", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250502_kc_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-02T23:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250502_tbr_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-02T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250502_cle_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-02T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250502_min_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-02T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250502_oak_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-02T23:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250502_lad_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-02T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250502_hou_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-02T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250503_ang_wsh", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-03T00:00:00Z", - "home_team_canonical_id": "team_nwsl_wsh", - "away_team_canonical_id": "team_nwsl_ang", - "stadium_canonical_id": "stadium_nwsl_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250503_sea_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-03T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250503_chc_mil_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-03T00:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250503_nym_stl_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-03T00:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250503_det_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-03T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250503_rgn_hou", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-03T01:58:00Z", - "home_team_canonical_id": "team_nwsl_hou", - "away_team_canonical_id": "team_nwsl_rgn", - "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250503_col_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-03T02:15:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250503_kcc_sea", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-03T02:30:00Z", - "home_team_canonical_id": "team_nwsl_sea", - "away_team_canonical_id": "team_nwsl_kcc", - "stadium_canonical_id": "stadium_nwsl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250503_was_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-03T17:00:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250503_tbr_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-03T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250503_hou_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-03T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250503_nym_stl_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-03T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250503_nsh_atl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-03T18:45:00Z", - "home_team_canonical_id": "team_mls_atl", - "away_team_canonical_id": "team_mls_nsh", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250503_cle_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-03T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250503_col_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-03T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250503_sd_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-03T20:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250503_min_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-03T20:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250503_oak_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-03T20:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250503_ne_tor", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-03T20:30:00Z", - "home_team_canonical_id": "team_mls_tor", - "away_team_canonical_id": "team_mls_ne", - "stadium_canonical_id": "stadium_mls_bmo_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250503_ari_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-03T22:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250503_wsn_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-03T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250503_sea_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-03T23:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250503_chc_mil_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-03T23:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250503_kc_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-03T23:15:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250503_lad_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-03T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250503_phi_mtl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-03T23:30:00Z", - "home_team_canonical_id": "team_mls_mtl", - "away_team_canonical_id": "team_mls_phi", - "stadium_canonical_id": "stadium_mls_stade_saputo", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250503_clt_clb", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-03T23:30:00Z", - "home_team_canonical_id": "team_mls_clb", - "away_team_canonical_id": "team_mls_clt", - "stadium_canonical_id": "stadium_mls_lowercom_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250503_col_dc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-03T23:30:00Z", - "home_team_canonical_id": "team_mls_dc", - "away_team_canonical_id": "team_mls_col", - "stadium_canonical_id": "stadium_mls_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250503_ny_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-03T23:30:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_ny", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250503_orl_por", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-03T23:30:00Z", - "home_team_canonical_id": "team_nwsl_por", - "away_team_canonical_id": "team_nwsl_orl", - "stadium_canonical_id": "stadium_nwsl_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250504_min_aus", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-04T00:30:00Z", - "home_team_canonical_id": "team_mls_aus", - "away_team_canonical_id": "team_mls_min", - "stadium_canonical_id": "stadium_mls_q2_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250504_orl_chi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-04T00:30:00Z", - "home_team_canonical_id": "team_mls_chi", - "away_team_canonical_id": "team_mls_orl", - "stadium_canonical_id": "stadium_mls_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250504_dal_sd", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-04T01:15:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_dal", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250504_slc_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-04T01:30:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_slc", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250504_det_laa_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-04T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250504_ncc_uta", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-04T02:00:00Z", - "home_team_canonical_id": "team_nwsl_uta", - "away_team_canonical_id": "team_nwsl_ncc", - "stadium_canonical_id": "stadium_nwsl_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250504_hou_lafc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-04T02:30:00Z", - "home_team_canonical_id": "team_mls_lafc", - "away_team_canonical_id": "team_mls_hou", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250504_por_sj", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-04T02:30:00Z", - "home_team_canonical_id": "team_mls_sj", - "away_team_canonical_id": "team_mls_por", - "stadium_canonical_id": "stadium_mls_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250504_stl_sea", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-04T02:30:00Z", - "home_team_canonical_id": "team_mls_sea", - "away_team_canonical_id": "team_mls_stl", - "stadium_canonical_id": "stadium_mls_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250504_chi_njy", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-04T17:00:00Z", - "home_team_canonical_id": "team_nwsl_njy", - "away_team_canonical_id": "team_nwsl_chi", - "stadium_canonical_id": "stadium_nwsl_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250504_nym_stl_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-04T17:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250504_kc_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-04T17:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250504_sd_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-04T17:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250504_min_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-04T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250504_tbr_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-04T17:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250504_cle_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-04T17:37:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250504_oak_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-04T17:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250504_ari_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-04T18:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250504_hou_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-04T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250504_chc_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-04T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250504_sea_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-04T18:35:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250504_cin_nyc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-04T19:00:00Z", - "home_team_canonical_id": "team_mls_nyc", - "away_team_canonical_id": "team_mls_cin", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250504_col_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-04T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250504_det_laa_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-04T20:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250504_wsn_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-04T20:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250504_con_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-04T22:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250504_nym_stl_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-04T22:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250504_lag_skc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-04T23:00:00Z", - "home_team_canonical_id": "team_mls_skc", - "away_team_canonical_id": "team_mls_lag", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250504_lad_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-04T23:10:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250505_bay_sdw", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-05T00:00:00Z", - "home_team_canonical_id": "team_nwsl_sdw", - "away_team_canonical_id": "team_nwsl_bay", - "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250505_lad_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-05T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250505_cle_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-05T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250505_sd_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-05T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250505_cin_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-05T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250505_sf_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-05T23:40:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250505_chw_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-05T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250505_hou_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-05T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250505_pit_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-05T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250506_nym_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-06T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250506_sea_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-06T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250506_cle_wsn_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-06T19:35:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250506_cle_wsn_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-06T19:40:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250506_lad_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-06T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250506_tex_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-06T22:45:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250506_min_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-06T23:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250506_phi_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-06T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250506_sd_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-06T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250506_cin_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-06T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250506_sf_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-06T23:40:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250506_bal_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-06T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250506_chw_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-06T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250506_hou_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-06T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250506_pit_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-06T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250507_det_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-07T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250507_tor_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-07T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250507_nym_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-07T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250507_la_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-07T02:00:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250507_phx_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-07T02:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250507_sea_oak_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-07T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250507_atl_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-07T15:30:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250507_cle_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-07T16:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250507_hou_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-07T17:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250507_pit_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-07T17:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250507_sf_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-07T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250507_sea_oak_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-07T19:35:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250507_nym_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-07T19:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250507_lad_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-07T20:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250507_tex_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-07T22:45:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250507_phi_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-07T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250507_sd_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-07T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250507_cin_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-07T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250507_bal_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-07T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250507_chw_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-07T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250508_det_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-08T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250508_tor_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-08T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250508_bal_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-08T17:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250508_tex_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-08T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250508_chw_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-08T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250508_det_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-08T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250508_det_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-08T19:15:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250508_phi_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-08T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250508_cin_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-08T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250509_tor_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-09T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250509_lad_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-09T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250509_tex_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-09T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250509_atl_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-09T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250509_stl_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-09T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250509_con_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-09T23:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250509_mil_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-09T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250509_chc_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-09T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250509_phi_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-09T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250509_bos_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-09T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250509_mia_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-09T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250510_njy_rgn", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-10T00:00:00Z", - "home_team_canonical_id": "team_nwsl_rgn", - "away_team_canonical_id": "team_nwsl_njy", - "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250510_cin_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-10T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250510_sf_min_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-10T00:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250510_sd_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-10T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250510_bal_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-10T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250510_lad_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-10T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250510_tor_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-10T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250510_nyy_oak_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-10T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250510_uta_ang", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-10T02:30:00Z", - "home_team_canonical_id": "team_nwsl_ang", - "away_team_canonical_id": "team_nwsl_uta", - "stadium_canonical_id": "stadium_nwsl_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250510_wsh_chi", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-10T16:50:00Z", - "home_team_canonical_id": "team_nwsl_chi", - "away_team_canonical_id": "team_nwsl_wsh", - "stadium_canonical_id": "stadium_nwsl_seatgeek_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250510_atl_chi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-10T18:30:00Z", - "home_team_canonical_id": "team_mls_chi", - "away_team_canonical_id": "team_mls_atl", - "stadium_canonical_id": "stadium_mls_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250510_ind_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-10T19:00:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250510_nyy_oak_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-10T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250510_stl_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-10T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250510_atl_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-10T20:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250510_mil_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-10T20:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250510_mia_min", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-10T20:30:00Z", - "home_team_canonical_id": "team_mls_min", - "away_team_canonical_id": "team_mls_mia", - "stadium_canonical_id": "stadium_mls_allianz_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250510_dc_tor", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-10T20:30:00Z", - "home_team_canonical_id": "team_mls_tor", - "away_team_canonical_id": "team_mls_dc", - "stadium_canonical_id": "stadium_mls_bmo_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250510_tex_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-10T22:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250510_phi_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-10T22:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250510_cin_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-10T23:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250510_bos_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-10T23:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250510_mia_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-10T23:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250510_sf_min_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-10T23:15:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250510_chc_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-10T23:15:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250510_aus_cin", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-10T23:30:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_aus", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250510_mtl_nyc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-10T23:30:00Z", - "home_team_canonical_id": "team_mls_nyc", - "away_team_canonical_id": "team_mls_mtl", - "stadium_canonical_id": "stadium_mls_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250510_lag_ny", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-10T23:30:00Z", - "home_team_canonical_id": "team_mls_ny", - "away_team_canonical_id": "team_mls_lag", - "stadium_canonical_id": "stadium_mls_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250510_ne_orl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-10T23:30:00Z", - "home_team_canonical_id": "team_mls_orl", - "away_team_canonical_id": "team_mls_ne", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250510_clb_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-10T23:30:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_clb", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250510_orl_ncc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-10T23:30:00Z", - "home_team_canonical_id": "team_nwsl_ncc", - "away_team_canonical_id": "team_nwsl_orl", - "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250511_chi_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-11T00:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250511_lad_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-11T00:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250511_sd_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-11T00:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250511_slc_dal", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-11T00:30:00Z", - "home_team_canonical_id": "team_mls_dal", - "away_team_canonical_id": "team_mls_slc", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250511_sea_hou", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-11T00:30:00Z", - "home_team_canonical_id": "team_mls_hou", - "away_team_canonical_id": "team_mls_sea", - "stadium_canonical_id": "stadium_mls_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250511_clt_nsh", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-11T00:30:00Z", - "home_team_canonical_id": "team_mls_nsh", - "away_team_canonical_id": "team_mls_clt", - "stadium_canonical_id": "stadium_mls_geodis_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250511_sd_stl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-11T00:30:00Z", - "home_team_canonical_id": "team_mls_stl", - "away_team_canonical_id": "team_mls_sd", - "stadium_canonical_id": "stadium_mls_citypark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250511_sj_col", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-11T01:30:00Z", - "home_team_canonical_id": "team_mls_col", - "away_team_canonical_id": "team_mls_sj", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250511_bal_laa_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-11T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250511_tor_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-11T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250511_por_sdw", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-11T02:00:00Z", - "home_team_canonical_id": "team_nwsl_sdw", - "away_team_canonical_id": "team_nwsl_por", - "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250511_skc_por", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-11T02:30:00Z", - "home_team_canonical_id": "team_mls_por", - "away_team_canonical_id": "team_mls_skc", - "stadium_canonical_id": "stadium_mls_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250511_chc_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-11T16:05:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250511_bay_kcc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-11T16:50:00Z", - "home_team_canonical_id": "team_nwsl_kcc", - "away_team_canonical_id": "team_nwsl_bay", - "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250511_stl_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-11T17:35:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250511_atl_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-11T17:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250511_tex_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-11T17:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250511_mil_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-11T17:40:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250511_cin_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-11T18:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250511_bos_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-11T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250511_sf_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-11T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250511_mia_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-11T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250511_sd_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-11T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250511_nyy_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-11T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250511_bal_laa_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-11T20:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250511_lad_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-11T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250511_tor_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-11T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250511_gsv_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-11T22:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250511_lafc_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-11T23:00:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_lafc", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250511_phi_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-11T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250512_hou_sea", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-12T00:00:00Z", - "home_team_canonical_id": "team_nwsl_sea", - "away_team_canonical_id": "team_nwsl_hou", - "stadium_canonical_id": "stadium_nwsl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250512_mil_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-12T22:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250512_bos_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-12T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250512_stl_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-12T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250512_pit_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-12T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250512_wsn_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-12T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250512_mia_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-12T23:40:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250513_col_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-13T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250513_kc_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-13T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250513_laa_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-13T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250513_nyy_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-13T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250513_ari_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-13T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250513_mil_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-13T22:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250513_min_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-13T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250513_bos_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-13T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250513_chw_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-13T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250513_stl_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-13T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250513_tbr_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-13T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250513_pit_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-13T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250513_wsn_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-13T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250513_mia_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-13T23:40:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250514_col_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-14T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250514_kc_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-14T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250514_laa_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-14T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250514_nyy_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-14T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250514_ari_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-14T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250514_oak_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-14T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250514_min_bal_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-14T16:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250514_min_bal_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-14T16:10:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250514_stl_phi_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-14T17:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250514_mil_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-14T17:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250514_ari_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-14T19:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250514_nyy_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-14T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250514_stl_phi_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-14T22:15:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250514_bos_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-14T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250514_tbr_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-14T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250514_pit_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-14T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250514_chw_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-14T23:14:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250514_wsn_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-14T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250514_clb_mtl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-14T23:30:00Z", - "home_team_canonical_id": "team_mls_mtl", - "away_team_canonical_id": "team_mls_clb", - "stadium_canonical_id": "stadium_mls_stade_saputo", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250514_nyc_dc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-14T23:30:00Z", - "home_team_canonical_id": "team_mls_dc", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250514_clt_orl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-14T23:30:00Z", - "home_team_canonical_id": "team_mls_orl", - "away_team_canonical_id": "team_mls_clt", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250514_lag_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-14T23:30:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_lag", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250514_cin_tor", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-14T23:30:00Z", - "home_team_canonical_id": "team_mls_tor", - "away_team_canonical_id": "team_mls_cin", - "stadium_canonical_id": "stadium_mls_bmo_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250514_mia_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-14T23:40:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250515_col_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-15T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250515_kc_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-15T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250515_min_hou", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-15T00:30:00Z", - "home_team_canonical_id": "team_mls_hou", - "away_team_canonical_id": "team_mls_min", - "stadium_canonical_id": "stadium_mls_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250515_ny_nsh", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-15T00:30:00Z", - "home_team_canonical_id": "team_mls_nsh", - "away_team_canonical_id": "team_mls_ny", - "stadium_canonical_id": "stadium_mls_geodis_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250515_skc_stl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-15T00:45:00Z", - "home_team_canonical_id": "team_mls_stl", - "away_team_canonical_id": "team_mls_skc", - "stadium_canonical_id": "stadium_mls_citypark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250515_atl_aus", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-15T01:00:00Z", - "home_team_canonical_id": "team_mls_aus", - "away_team_canonical_id": "team_mls_atl", - "stadium_canonical_id": "stadium_mls_q2_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250515_por_slc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-15T01:30:00Z", - "home_team_canonical_id": "team_mls_slc", - "away_team_canonical_id": "team_mls_por", - "stadium_canonical_id": "stadium_mls_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250515_laa_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-15T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250515_oak_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-15T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250515_sea_lafc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-15T02:30:00Z", - "home_team_canonical_id": "team_mls_lafc", - "away_team_canonical_id": "team_mls_sea", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250515_col_sd", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-15T02:30:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_col", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250515_mia_sj", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-15T02:30:00Z", - "home_team_canonical_id": "team_mls_sj", - "away_team_canonical_id": "team_mls_mia", - "stadium_canonical_id": "stadium_mls_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250515_wsn_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-15T16:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250515_min_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-15T16:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250515_chw_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-15T16:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250515_tbr_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-15T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250516_hou_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-16T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250516_oak_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-16T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250516_chw_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-16T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250516_cle_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-16T21:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250516_pit_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-16T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250516_wsn_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-16T23:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250516_nym_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-16T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250516_det_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-16T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250516_atl_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-16T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250516_tbr_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-16T23:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250516_atl_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-16T23:30:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250516_min_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-16T23:30:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250516_sdw_njy", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-16T23:30:00Z", - "home_team_canonical_id": "team_nwsl_njy", - "away_team_canonical_id": "team_nwsl_sdw", - "stadium_canonical_id": "stadium_nwsl_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250516_stl_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-16T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250517_por_hou", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-17T00:00:00Z", - "home_team_canonical_id": "team_nwsl_hou", - "away_team_canonical_id": "team_nwsl_por", - "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250517_kcc_orl", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-17T00:00:00Z", - "home_team_canonical_id": "team_nwsl_orl", - "away_team_canonical_id": "team_nwsl_kcc", - "stadium_canonical_id": "stadium_nwsl_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250517_hou_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-17T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250517_min_mil_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-17T00:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250517_col_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-17T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250517_sea_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-17T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250517_la_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-17T02:00:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250517_laa_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-17T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250517_oak_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-17T02:15:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250517_lv_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-17T17:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250517_sea_rgn", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-17T17:00:00Z", - "home_team_canonical_id": "team_nwsl_rgn", - "away_team_canonical_id": "team_nwsl_sea", - "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250517_nym_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-17T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250517_chw_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-17T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250517_tor_mtl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-17T18:30:00Z", - "home_team_canonical_id": "team_mls_mtl", - "away_team_canonical_id": "team_mls_tor", - "stadium_canonical_id": "stadium_mls_stade_saputo", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250517_det_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-17T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250517_chi_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-17T19:20:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250517_wsn_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-17T20:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250517_tbr_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-17T20:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250517_ny_nyc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-17T20:30:00Z", - "home_team_canonical_id": "team_mls_nyc", - "away_team_canonical_id": "team_mls_ny", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250517_chi_ncc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-17T21:00:00Z", - "home_team_canonical_id": "team_nwsl_ncc", - "away_team_canonical_id": "team_nwsl_chi", - "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250517_pit_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-17T22:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250517_cle_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-17T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250517_hou_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-17T23:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250517_stl_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-17T23:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250517_min_mil_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-17T23:15:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250517_atl_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-17T23:15:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250517_cin_clb", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-17T23:15:00Z", - "home_team_canonical_id": "team_mls_clb", - "away_team_canonical_id": "team_mls_cin", - "stadium_canonical_id": "stadium_mls_lowercom_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250517_phi_atl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-17T23:30:00Z", - "home_team_canonical_id": "team_mls_atl", - "away_team_canonical_id": "team_mls_phi", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250517_chi_clt", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-17T23:30:00Z", - "home_team_canonical_id": "team_mls_clt", - "away_team_canonical_id": "team_mls_chi", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250517_sj_ne", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-17T23:30:00Z", - "home_team_canonical_id": "team_mls_ne", - "away_team_canonical_id": "team_mls_sj", - "stadium_canonical_id": "stadium_mls_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250517_uta_wsh", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-17T23:30:00Z", - "home_team_canonical_id": "team_nwsl_wsh", - "away_team_canonical_id": "team_nwsl_uta", - "stadium_canonical_id": "stadium_nwsl_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250518_col_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-18T00:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250518_van_aus", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-18T00:30:00Z", - "home_team_canonical_id": "team_mls_aus", - "away_team_canonical_id": "team_mls_van", - "stadium_canonical_id": "stadium_mls_q2_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250518_stl_min", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-18T00:30:00Z", - "home_team_canonical_id": "team_mls_min", - "away_team_canonical_id": "team_mls_stl", - "stadium_canonical_id": "stadium_mls_allianz_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250518_dc_nsh", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-18T00:30:00Z", - "home_team_canonical_id": "team_mls_nsh", - "away_team_canonical_id": "team_mls_dc", - "stadium_canonical_id": "stadium_mls_geodis_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250518_sea_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-18T00:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250518_oak_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-18T01:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250518_laa_lad_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-18T01:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250518_hou_dal", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-18T01:25:00Z", - "home_team_canonical_id": "team_mls_dal", - "away_team_canonical_id": "team_mls_hou", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250518_slc_col", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-18T01:30:00Z", - "home_team_canonical_id": "team_mls_col", - "away_team_canonical_id": "team_mls_slc", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250518_sea_por", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-18T01:30:00Z", - "home_team_canonical_id": "team_mls_por", - "away_team_canonical_id": "team_mls_sea", - "stadium_canonical_id": "stadium_mls_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250518_sea_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-18T02:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250518_ang_bay", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-18T02:00:00Z", - "home_team_canonical_id": "team_nwsl_bay", - "away_team_canonical_id": "team_nwsl_ang", - "stadium_canonical_id": "stadium_nwsl_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250518_skc_sd", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-18T02:30:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_skc", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250518_was_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-18T17:00:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250518_hou_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-18T17:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250518_wsn_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-18T17:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250518_pit_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-18T17:35:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250518_atl_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-18T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250518_det_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-18T17:37:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250518_cle_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-18T17:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250518_tbr_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-18T17:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250518_stl_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-18T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250518_min_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-18T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250518_chw_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-18T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250518_oak_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-18T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250518_col_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-18T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250518_sea_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-18T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250518_laa_lad_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-18T20:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250518_min_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-18T22:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250518_orl_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-18T23:00:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_orl", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250518_nym_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-18T23:10:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250519_lafc_lag", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-19T01:00:00Z", - "home_team_canonical_id": "team_mls_lag", - "away_team_canonical_id": "team_mls_lafc", - "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250519_cin_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-19T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250519_chc_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-19T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250519_nym_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-19T22:45:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250519_hou_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-19T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250519_cle_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-19T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250519_sea_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-19T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250519_bal_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-19T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250519_det_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-19T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250520_sea_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-20T00:00:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250520_phi_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-20T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250520_kc_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-20T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250520_laa_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-20T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250520_ari_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-20T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250520_cin_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-20T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250520_chc_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-20T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250520_nym_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-20T22:45:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250520_atl_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-20T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250520_lv_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-20T23:00:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250520_atl_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-20T23:00:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250520_hou_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-20T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250520_tex_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-20T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250520_sd_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-20T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250520_sea_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-20T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250520_bal_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-20T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250520_cle_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-20T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250520_det_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-20T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250521_phi_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-21T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250521_kc_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-21T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250521_laa_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-21T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250521_ari_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-21T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250521_cin_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-21T16:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250521_hou_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-21T17:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250521_cle_min_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-21T17:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250521_chc_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-21T17:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250521_bal_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-21T17:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250521_det_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-21T17:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250521_sea_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-21T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250521_kc_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-21T19:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250521_cle_min_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-21T19:55:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250521_nym_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-21T22:45:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250521_atl_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-21T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250521_tex_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-21T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250521_sd_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-21T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250522_dal_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-22T00:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250522_phi_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-22T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250522_was_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-22T02:00:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250522_la_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-22T02:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250522_laa_oak_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-22T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250522_ari_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-22T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250522_tex_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-22T16:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250522_sd_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-22T17:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250522_phi_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-22T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250522_laa_oak_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-22T19:35:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250522_cle_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-22T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250522_mil_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-22T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250522_atl_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-22T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250522_bal_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-22T22:45:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250522_ind_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-22T23:30:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250523_ny_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-23T00:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250523_sea_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-23T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250523_bal_bos_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-23T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250523_chc_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-23T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250523_mil_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-23T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250523_sf_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-23T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250523_tor_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-23T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250523_bal_bos_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-23T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250523_cle_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-23T23:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250523_lad_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-23T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250523_sd_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-23T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250523_con_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-23T23:30:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250523_tex_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-23T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_sea_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_kc_min_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T00:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_ari_stl_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T00:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_nyy_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250524_orl_uta", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-24T01:30:00Z", - "home_team_canonical_id": "team_nwsl_uta", - "away_team_canonical_id": "team_nwsl_orl", - "stadium_canonical_id": "stadium_nwsl_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_mia_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250524_was_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-24T02:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250524_gsv_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-24T02:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250524_phx_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-24T02:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250524_wsh_sea", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-24T02:00:00Z", - "home_team_canonical_id": "team_nwsl_sea", - "away_team_canonical_id": "team_nwsl_wsh", - "stadium_canonical_id": "stadium_nwsl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_phi_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250524_ny_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-24T17:00:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_bal_bos_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T17:05:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_kc_min_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_ari_stl_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250524_dal_sea", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-24T19:00:00Z", - "home_team_canonical_id": "team_mls_sea", - "away_team_canonical_id": "team_mls_dal", - "stadium_canonical_id": "stadium_mls_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250524_dal_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-24T19:00:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_sf_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_mil_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T20:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_sea_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T20:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_nyy_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T20:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_chc_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T20:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_sd_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T20:10:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_tex_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T20:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250524_lag_sd", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-24T20:45:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_lag", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_bal_bos_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T22:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_tor_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_cle_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T23:15:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250524_lad_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-24T23:15:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250524_lafc_mtl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-24T23:30:00Z", - "home_team_canonical_id": "team_mls_mtl", - "away_team_canonical_id": "team_mls_lafc", - "stadium_canonical_id": "stadium_mls_stade_saputo", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250524_clb_clt", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-24T23:30:00Z", - "home_team_canonical_id": "team_mls_clt", - "away_team_canonical_id": "team_mls_clb", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250524_ny_dc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-24T23:30:00Z", - "home_team_canonical_id": "team_mls_dc", - "away_team_canonical_id": "team_mls_ny", - "stadium_canonical_id": "stadium_mls_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250524_por_orl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-24T23:30:00Z", - "home_team_canonical_id": "team_mls_orl", - "away_team_canonical_id": "team_mls_por", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250524_mia_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-24T23:30:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_mia", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250524_nsh_tor", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-24T23:30:00Z", - "home_team_canonical_id": "team_mls_tor", - "away_team_canonical_id": "team_mls_nsh", - "stadium_canonical_id": "stadium_mls_bmo_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250524_kcc_chi", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-24T23:30:00Z", - "home_team_canonical_id": "team_nwsl_chi", - "away_team_canonical_id": "team_nwsl_kcc", - "stadium_canonical_id": "stadium_nwsl_seatgeek_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250525_bay_hou", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-25T00:00:00Z", - "home_team_canonical_id": "team_nwsl_hou", - "away_team_canonical_id": "team_nwsl_bay", - "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250525_aus_min", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-25T00:30:00Z", - "home_team_canonical_id": "team_mls_min", - "away_team_canonical_id": "team_mls_aus", - "stadium_canonical_id": "stadium_mls_allianz_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250525_ne_skc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-25T00:30:00Z", - "home_team_canonical_id": "team_mls_skc", - "away_team_canonical_id": "team_mls_ne", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250525_stl_col", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-25T01:30:00Z", - "home_team_canonical_id": "team_mls_col", - "away_team_canonical_id": "team_mls_stl", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250525_van_slc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-25T01:30:00Z", - "home_team_canonical_id": "team_mls_slc", - "away_team_canonical_id": "team_mls_van", - "stadium_canonical_id": "stadium_mls_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250525_rgn_ang", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-25T02:00:00Z", - "home_team_canonical_id": "team_nwsl_ang", - "away_team_canonical_id": "team_nwsl_rgn", - "stadium_canonical_id": "stadium_nwsl_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250525_phi_oak_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-25T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250525_mia_laa_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-25T02:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250525_hou_sj", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-25T02:30:00Z", - "home_team_canonical_id": "team_mls_sj", - "away_team_canonical_id": "team_mls_hou", - "stadium_canonical_id": "stadium_mls_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250525_cle_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-25T15:35:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250525_bal_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-25T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250525_sf_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-25T17:35:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250525_mil_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-25T17:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250525_chc_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-25T17:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250525_tor_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-25T17:40:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250525_sea_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-25T18:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250525_kc_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-25T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250525_tex_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-25T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250525_ari_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-25T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250525_chi_nyc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-25T19:00:00Z", - "home_team_canonical_id": "team_mls_nyc", - "away_team_canonical_id": "team_mls_chi", - "stadium_canonical_id": "stadium_mls_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250525_con_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-25T19:00:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250525_nyy_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-25T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250525_phi_oak_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-25T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250525_mia_laa_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-25T20:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250525_sd_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-25T20:10:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250525_chi_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-25T22:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250525_was_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-25T22:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250525_lv_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-25T22:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250525_cin_atl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-25T23:00:00Z", - "home_team_canonical_id": "team_mls_atl", - "away_team_canonical_id": "team_mls_cin", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250525_lad_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-25T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250526_ncc_sdw", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-05-26T02:00:00Z", - "home_team_canonical_id": "team_nwsl_sdw", - "away_team_canonical_id": "team_nwsl_ncc", - "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250526_sf_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-26T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250526_bos_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-26T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250526_col_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-26T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250526_stl_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-26T19:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250526_tor_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-26T20:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250526_cin_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-26T20:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250526_chw_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-26T20:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250526_lad_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-26T22:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250526_min_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-26T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250527_pit_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-27T00:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250527_mia_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-27T00:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250527_nyy_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-27T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250527_lad_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-27T22:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250527_stl_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-27T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250527_sf_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-27T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250527_atl_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-27T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250527_dal_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-27T23:00:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250527_gsv_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-27T23:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250527_min_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-27T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250527_chw_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-27T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250527_cin_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-27T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250527_bos_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-27T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250528_sea_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-28T00:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250528_col_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-28T00:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250528_tor_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-28T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250528_oak_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-28T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250528_nyy_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-28T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250528_pit_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-28T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250528_wsn_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-28T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250528_mia_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-28T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250528_atl_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-28T02:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250528_chi_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-28T02:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250528_lad_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-28T17:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250528_sf_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-28T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250528_min_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-28T17:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250528_chw_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-28T17:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250528_bos_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-28T17:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250528_oak_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-28T18:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250528_pit_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-28T19:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250528_mia_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-28T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250528_stl_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-28T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250528_atl_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-28T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250528_orl_atl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-28T23:30:00Z", - "home_team_canonical_id": "team_mls_atl", - "away_team_canonical_id": "team_mls_orl", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250528_ne_dc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-28T23:30:00Z", - "home_team_canonical_id": "team_mls_dc", - "away_team_canonical_id": "team_mls_ne", - "stadium_canonical_id": "stadium_mls_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250528_dal_cin", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-28T23:30:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_dal", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250528_mtl_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-28T23:30:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_mtl", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250528_hou_nyc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-28T23:30:00Z", - "home_team_canonical_id": "team_mls_nyc", - "away_team_canonical_id": "team_mls_hou", - "stadium_canonical_id": "stadium_mls_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250528_clt_ny", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-28T23:30:00Z", - "home_team_canonical_id": "team_mls_ny", - "away_team_canonical_id": "team_mls_clt", - "stadium_canonical_id": "stadium_mls_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250528_phi_tor", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-28T23:30:00Z", - "home_team_canonical_id": "team_mls_tor", - "away_team_canonical_id": "team_mls_phi", - "stadium_canonical_id": "stadium_mls_bmo_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250528_ind_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-28T23:30:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_cfg_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250528_cin_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-28T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250529_nsh_clb", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-29T00:00:00Z", - "home_team_canonical_id": "team_mls_clb", - "away_team_canonical_id": "team_mls_nsh", - "stadium_canonical_id": "stadium_mls_lowercom_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250529_col_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-29T00:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250529_tor_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-29T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250529_slc_aus", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-29T00:30:00Z", - "home_team_canonical_id": "team_mls_aus", - "away_team_canonical_id": "team_mls_slc", - "stadium_canonical_id": "stadium_mls_q2_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250529_sd_sea", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-29T00:30:00Z", - "home_team_canonical_id": "team_mls_sea", - "away_team_canonical_id": "team_mls_sd", - "stadium_canonical_id": "stadium_mls_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250529_nyy_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-29T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250529_wsn_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-29T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250529_sj_lag", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-29T02:15:00Z", - "home_team_canonical_id": "team_mls_lag", - "away_team_canonical_id": "team_mls_sj", - "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250529_col_por", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-29T02:30:00Z", - "home_team_canonical_id": "team_mls_por", - "away_team_canonical_id": "team_mls_col", - "stadium_canonical_id": "stadium_mls_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250529_min_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-29T02:30:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_min", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250529_atl_phi_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-29T17:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250529_atl_phi_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-29T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250529_gsv_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-29T23:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250529_oak_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-29T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250530_dal_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-30T00:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250530_tbr_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-30T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250530_wsn_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-30T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250530_cin_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-30T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250530_chw_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-30T20:30:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250530_mil_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-30T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250530_oak_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-30T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250530_laa_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-30T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250530_col_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-30T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250530_sf_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-30T23:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250530_bos_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-30T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250530_con_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-30T23:30:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250530_ny_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-30T23:30:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_stl_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_det_kc_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T00:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_tbr_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_wsn_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_pit_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250531_la_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-31T02:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250531_min_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-31T02:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250531_atl_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-05-31T02:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_min_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T02:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_nyy_lad_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_cin_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250531_sj_stl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-31T18:30:00Z", - "home_team_canonical_id": "team_mls_stl", - "away_team_canonical_id": "team_mls_sj", - "stadium_canonical_id": "stadium_mls_citypark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_oak_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_stl_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T20:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_chw_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T20:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_mil_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T20:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_det_kc_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T20:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_tbr_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T20:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_laa_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T20:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_col_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T20:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_bos_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T20:10:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_sf_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T20:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250531_nyc_nsh", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-31T20:30:00Z", - "home_team_canonical_id": "team_mls_nsh", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_geodis_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_min_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T23:15:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250531_nyy_lad_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-05-31T23:15:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250531_ne_mtl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-31T23:30:00Z", - "home_team_canonical_id": "team_mls_mtl", - "away_team_canonical_id": "team_mls_ne", - "stadium_canonical_id": "stadium_mls_stade_saputo", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250531_dc_cin", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-31T23:30:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_dc", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250531_clb_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-31T23:30:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_clb", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250531_atl_ny", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-31T23:30:00Z", - "home_team_canonical_id": "team_mls_ny", - "away_team_canonical_id": "team_mls_atl", - "stadium_canonical_id": "stadium_mls_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250531_chi_orl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-31T23:30:00Z", - "home_team_canonical_id": "team_mls_orl", - "away_team_canonical_id": "team_mls_chi", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250531_clt_tor", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-05-31T23:30:00Z", - "home_team_canonical_id": "team_mls_tor", - "away_team_canonical_id": "team_mls_clt", - "stadium_canonical_id": "stadium_mls_bmo_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250601_chi_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-01T00:00:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250601_phi_dal", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-01T00:30:00Z", - "home_team_canonical_id": "team_mls_dal", - "away_team_canonical_id": "team_mls_phi", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250601_skc_hou", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-01T00:30:00Z", - "home_team_canonical_id": "team_mls_hou", - "away_team_canonical_id": "team_mls_skc", - "stadium_canonical_id": "stadium_mls_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250601_pit_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-01T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250601_wsn_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-01T02:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250601_slc_lag", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-01T02:30:00Z", - "home_team_canonical_id": "team_mls_lag", - "away_team_canonical_id": "team_mls_slc", - "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250601_aus_sd", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-01T02:30:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_aus", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250601_stl_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-01T17:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250601_bos_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-01T17:35:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250601_chw_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-01T17:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250601_mil_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-01T17:35:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250601_oak_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-01T17:37:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250601_laa_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-01T17:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250601_col_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-01T17:40:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250601_sf_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-01T17:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250601_det_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-01T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250601_tbr_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-01T18:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250601_cin_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-01T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250601_con_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-01T19:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250601_wsn_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-01T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250601_min_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-01T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250601_pit_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-01T21:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250601_min_sea", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-01T22:00:00Z", - "home_team_canonical_id": "team_mls_sea", - "away_team_canonical_id": "team_mls_min", - "stadium_canonical_id": "stadium_mls_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250601_phx_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-01T22:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250601_lv_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-01T22:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250601_nyy_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-01T23:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250602_min_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-02T00:30:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250602_col_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-02T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250602_laa_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-02T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250602_mil_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-02T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250602_det_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-02T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250603_sd_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-03T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250603_min_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-03T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250603_nym_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-03T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250603_hou_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-03T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250603_col_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-03T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250603_chc_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-03T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250603_was_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-03T23:00:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250603_cle_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-03T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250603_phi_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-03T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250603_laa_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-03T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250603_mil_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-03T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250603_ari_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-03T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250603_tex_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-03T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250603_det_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-03T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250603_kc_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-03T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250604_phx_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-04T00:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250604_dal_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-04T01:30:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250604_bal_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-04T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250604_sd_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-04T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250604_min_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-04T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250604_nym_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-04T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250604_col_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-04T16:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250604_mil_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-04T16:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250604_laa_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-04T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250604_kc_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-04T17:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250604_hou_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-04T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250604_chc_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-04T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250604_cle_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-04T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250604_phi_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-04T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250604_ari_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-04T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250604_tex_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-04T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250604_det_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-04T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250605_bal_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-05T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250605_sd_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-05T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250605_min_oak_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-05T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250605_nym_lad_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-05T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250605_ari_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-05T16:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250605_kc_stl_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-05T17:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250605_det_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-05T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250605_phi_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-05T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250605_min_oak_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-05T19:35:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250605_bal_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-05T19:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250605_sd_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-05T19:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250605_nym_lad_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-05T20:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250605_hou_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-05T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250605_chc_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-05T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250605_cle_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-05T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250605_ny_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-05T23:30:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250605_tex_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-05T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250605_kc_stl_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-05T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250606_gsv_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-06T02:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250606_mia_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-06T17:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250606_phi_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-06T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250606_tex_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-06T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250606_bos_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-06T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250606_ari_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-06T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250606_chc_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-06T23:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250606_hou_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-06T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250606_atl_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-06T23:30:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250606_kc_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-06T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_tor_min_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T00:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_sd_mil_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T00:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_lad_stl_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T00:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250607_uta_rgn", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-07T00:34:00Z", - "home_team_canonical_id": "team_nwsl_rgn", - "away_team_canonical_id": "team_nwsl_uta", - "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_nym_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250607_la_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-07T01:30:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_sea_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250607_sea_sdw", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-07T02:00:00Z", - "home_team_canonical_id": "team_nwsl_sdw", - "away_team_canonical_id": "team_nwsl_sea", - "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_bal_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_atl_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T02:15:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250607_kcc_njy", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-07T17:00:00Z", - "home_team_canonical_id": "team_nwsl_njy", - "away_team_canonical_id": "team_nwsl_kcc", - "stadium_canonical_id": "stadium_nwsl_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_chc_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_tor_min_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_ari_cin_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T18:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_lad_stl_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250607_lv_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-07T19:00:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_atl_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_tex_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_phi_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T20:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_ari_cin_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T20:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_hou_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T20:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_kc_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T20:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_mia_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T20:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250607_hou_orl", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-07T23:00:00Z", - "home_team_canonical_id": "team_nwsl_orl", - "away_team_canonical_id": "team_nwsl_hou", - "stadium_canonical_id": "stadium_nwsl_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250607_chi_dc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-07T23:30:00Z", - "home_team_canonical_id": "team_mls_dc", - "away_team_canonical_id": "team_mls_chi", - "stadium_canonical_id": "stadium_mls_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250607_por_bay", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-07T23:30:00Z", - "home_team_canonical_id": "team_nwsl_bay", - "away_team_canonical_id": "team_nwsl_por", - "stadium_canonical_id": "stadium_nwsl_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_sd_mil_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T23:35:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250607_bos_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-07T23:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250608_ind_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-08T00:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250608_aus_col", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-08T01:30:00Z", - "home_team_canonical_id": "team_mls_col", - "away_team_canonical_id": "team_mls_aus", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250608_sea_laa_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-08T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250608_nym_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-08T01:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250608_sea_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-08T02:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250608_chi_ang", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-08T02:00:00Z", - "home_team_canonical_id": "team_nwsl_ang", - "away_team_canonical_id": "team_nwsl_chi", - "stadium_canonical_id": "stadium_nwsl_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250608_bal_oak_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-08T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250608_mia_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-08T16:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250608_sd_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-08T17:05:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250608_tex_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-08T17:35:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250608_phi_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-08T17:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250608_ari_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-08T17:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250608_chc_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-08T17:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250608_hou_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-08T17:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250608_tor_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-08T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250608_kc_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-08T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250608_lad_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-08T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250608_con_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-08T19:00:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250608_nym_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-08T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250608_min_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-08T20:00:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250608_ncc_wsh", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-08T20:00:00Z", - "home_team_canonical_id": "team_nwsl_wsh", - "away_team_canonical_id": "team_nwsl_ncc", - "stadium_canonical_id": "stadium_nwsl_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250608_bal_oak_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-08T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250608_atl_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-08T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250608_sea_laa_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-08T20:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250608_stl_por", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-08T23:00:00Z", - "home_team_canonical_id": "team_mls_por", - "away_team_canonical_id": "team_mls_stl", - "stadium_canonical_id": "stadium_mls_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250608_bos_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-08T23:10:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250609_skc_lafc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-09T01:00:00Z", - "home_team_canonical_id": "team_mls_lafc", - "away_team_canonical_id": "team_mls_skc", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250609_sea_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-09T01:00:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_sea", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250609_cin_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-09T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250609_mia_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-09T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250609_chc_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-09T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250609_tbr_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-09T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250609_atl_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-09T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250609_tor_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-09T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250610_oak_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-10T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250610_lad_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-10T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250610_sea_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-10T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250610_gsv_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-10T02:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250610_det_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-10T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250610_cin_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-10T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250610_mia_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-10T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250610_chc_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-10T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250610_wsn_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-10T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250610_tbr_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-10T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250610_ind_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-10T23:30:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250610_tex_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-10T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250610_nyy_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-10T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250610_atl_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-10T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250610_tor_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-10T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250611_chi_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-11T00:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250611_chw_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-11T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250611_sf_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-11T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250611_oak_laa_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-11T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250611_lad_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-11T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250611_sea_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-11T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250611_mia_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-11T16:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250611_chc_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-11T17:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250611_cin_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-11T17:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250611_atl_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-11T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250611_tor_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-11T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250611_sea_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-11T19:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250611_oak_laa_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-11T20:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250611_lad_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-11T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250611_det_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-11T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250611_wsn_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-11T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250611_tbr_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-11T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250611_tex_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-11T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250611_nyy_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-11T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250612_chw_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-12T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250612_sf_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-12T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250612_la_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-12T02:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250612_dal_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-12T02:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250612_min_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-12T02:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250612_wsn_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-12T17:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250612_tex_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-12T17:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250612_sf_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-12T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250612_det_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-12T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250612_atl_nyc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-12T23:30:00Z", - "home_team_canonical_id": "team_mls_nyc", - "away_team_canonical_id": "team_mls_atl", - "stadium_canonical_id": "stadium_mls_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250612_nyy_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-12T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250612_stl_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-12T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250613_pit_chc_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-13T00:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250613_chw_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-13T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250613_pit_chc_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-13T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250613_tor_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-13T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250613_mia_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-13T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250613_laa_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-13T23:08:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250613_cin_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-13T23:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250613_tbr_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-13T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250613_nyy_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-13T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250613_col_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-13T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250613_chi_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-13T23:30:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250614_sdw_hou", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-14T00:00:00Z", - "home_team_canonical_id": "team_nwsl_hou", - "away_team_canonical_id": "team_nwsl_sdw", - "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_chw_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_oak_kc_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T00:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_min_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_stl_mil_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T00:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250614_njy_uta", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-14T01:30:00Z", - "home_team_canonical_id": "team_nwsl_uta", - "away_team_canonical_id": "team_nwsl_njy", - "stadium_canonical_id": "stadium_nwsl_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_sd_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250614_dal_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-14T02:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250614_orl_bay", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-14T02:00:00Z", - "home_team_canonical_id": "team_nwsl_bay", - "away_team_canonical_id": "team_nwsl_orl", - "stadium_canonical_id": "stadium_nwsl_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_cle_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T02:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_sf_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250614_sj_por", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-14T02:30:00Z", - "home_team_canonical_id": "team_mls_por", - "away_team_canonical_id": "team_mls_sj", - "stadium_canonical_id": "stadium_mls_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250614_la_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-14T17:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_mia_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T17:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_cin_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_pit_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250614_ny_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-14T19:00:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_chw_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T20:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_laa_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T20:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_tor_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T20:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_oak_kc_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T20:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_min_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T20:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_stl_mil_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_tbr_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T20:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_col_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T20:10:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250614_lag_stl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-14T20:30:00Z", - "home_team_canonical_id": "team_mls_stl", - "away_team_canonical_id": "team_mls_lag", - "stadium_canonical_id": "stadium_mls_citypark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250614_sea_chi", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-14T21:00:00Z", - "home_team_canonical_id": "team_nwsl_chi", - "away_team_canonical_id": "team_nwsl_sea", - "stadium_canonical_id": "stadium_nwsl_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_sd_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T23:15:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250614_nyy_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-14T23:15:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250614_van_clb", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-14T23:30:00Z", - "home_team_canonical_id": "team_mls_clb", - "away_team_canonical_id": "team_mls_van", - "stadium_canonical_id": "stadium_mls_lowercom_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250614_cin_ne", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-14T23:30:00Z", - "home_team_canonical_id": "team_mls_ne", - "away_team_canonical_id": "team_mls_cin", - "stadium_canonical_id": "stadium_mls_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250614_clt_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-14T23:30:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_clt", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250614_rgn_kcc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-14T23:30:00Z", - "home_team_canonical_id": "team_nwsl_kcc", - "away_team_canonical_id": "team_nwsl_rgn", - "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250615_ny_aus", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-15T00:30:00Z", - "home_team_canonical_id": "team_mls_aus", - "away_team_canonical_id": "team_mls_ny", - "stadium_canonical_id": "stadium_mls_q2_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250615_nsh_chi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-15T00:30:00Z", - "home_team_canonical_id": "team_mls_chi", - "away_team_canonical_id": "team_mls_nsh", - "stadium_canonical_id": "stadium_mls_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250615_mtl_hou", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-15T00:30:00Z", - "home_team_canonical_id": "team_mls_hou", - "away_team_canonical_id": "team_mls_mtl", - "stadium_canonical_id": "stadium_mls_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250615_sd_min", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-15T00:30:00Z", - "home_team_canonical_id": "team_mls_min", - "away_team_canonical_id": "team_mls_sd", - "stadium_canonical_id": "stadium_mls_allianz_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250615_dal_skc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-15T00:30:00Z", - "home_team_canonical_id": "team_mls_skc", - "away_team_canonical_id": "team_mls_dal", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250615_sea_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-15T00:30:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250615_orl_col", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-15T01:30:00Z", - "home_team_canonical_id": "team_mls_col", - "away_team_canonical_id": "team_mls_orl", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250615_dc_slc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-15T01:30:00Z", - "home_team_canonical_id": "team_mls_slc", - "away_team_canonical_id": "team_mls_dc", - "stadium_canonical_id": "stadium_mls_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250615_cle_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-15T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250615_ncc_ang", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-15T02:00:00Z", - "home_team_canonical_id": "team_nwsl_ang", - "away_team_canonical_id": "team_nwsl_ncc", - "stadium_canonical_id": "stadium_nwsl_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250615_sf_lad_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-15T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250615_chi_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-15T16:00:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250615_cin_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-15T16:05:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250615_laa_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-15T17:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250615_tor_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-15T17:35:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250615_col_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-15T17:35:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250615_mia_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-15T17:35:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250615_nyy_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-15T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250615_tbr_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-15T17:40:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250615_atl_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-15T18:00:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250615_oak_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-15T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250615_min_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-15T18:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250615_stl_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-15T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250615_pit_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-15T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250615_chw_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-15T18:35:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250615_wsh_por", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-15T20:00:00Z", - "home_team_canonical_id": "team_nwsl_por", - "away_team_canonical_id": "team_nwsl_wsh", - "stadium_canonical_id": "stadium_nwsl_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250615_cle_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-15T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250615_sd_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-15T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250615_phx_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-15T22:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250615_sf_lad_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-15T23:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250616_phi_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-16T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250616_col_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-16T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250616_laa_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-16T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250616_bal_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-16T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250617_bos_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-17T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250617_hou_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-17T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250617_sd_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-17T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250617_phi_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-17T22:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250617_pit_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-17T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250617_col_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-17T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250617_con_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-17T23:00:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250617_atl_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-17T23:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250617_laa_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-17T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250617_ari_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-17T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250617_min_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-17T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250617_nym_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-17T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250617_bal_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-17T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250617_stl_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-17T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250618_was_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-18T00:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250618_gsv_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-18T00:00:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250618_lv_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-18T00:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250618_kc_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-18T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250618_mil_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-18T00:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250618_bos_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-18T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250618_cle_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-18T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250618_sea_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-18T02:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250618_hou_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-18T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250618_sd_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-18T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250618_bos_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-18T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250618_phi_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-18T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250618_pit_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-18T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250618_col_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-18T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250618_phx_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-18T23:00:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250618_laa_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-18T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250618_ari_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-18T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250618_min_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-18T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250618_nym_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-18T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250618_bal_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-18T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250618_stl_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-18T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250619_kc_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-19T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250619_mil_chc_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-19T00:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250619_cle_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-19T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250619_hou_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-19T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250619_sd_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-19T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250619_min_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-19T16:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250619_col_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-19T17:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250619_laa_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-19T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250619_pit_det_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-19T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250619_stl_chw_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-19T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250619_stl_chw_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-19T18:15:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250619_mil_chc_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-19T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250619_kc_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-19T18:35:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250619_ari_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-19T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250619_cle_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-19T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250619_pit_det_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-19T22:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250619_phi_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-19T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250619_phx_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-19T23:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250619_nym_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-19T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250619_bal_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-19T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250620_ind_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-20T02:00:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250620_hou_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-20T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250620_sd_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-20T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250620_sea_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-20T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250620_tex_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-20T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250620_det_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-20T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250620_bal_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-20T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250620_chw_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-20T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250620_atl_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-20T23:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250620_cin_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-20T23:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250620_nym_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-20T23:15:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250620_was_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-20T23:30:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250620_dal_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-20T23:30:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250621_ang_kcc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-21T00:00:00Z", - "home_team_canonical_id": "team_nwsl_kcc", - "away_team_canonical_id": "team_nwsl_ang", - "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250621_orl_rgn", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-21T00:00:00Z", - "home_team_canonical_id": "team_nwsl_rgn", - "away_team_canonical_id": "team_nwsl_orl", - "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250621_mil_min_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-21T00:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250621_ari_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-21T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250621_hou_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-21T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250621_kc_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-21T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250621_sea_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-21T02:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250621_cle_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-21T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250621_wsn_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-21T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250621_bos_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-21T02:15:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250621_det_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-21T16:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250621_phx_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-21T17:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250621_bal_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-21T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250621_mil_min_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-21T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250621_cin_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-21T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250621_sea_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-21T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250621_chw_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-21T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250621_bos_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-21T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250621_tex_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-21T20:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250621_atl_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-21T20:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250621_sea_uta", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-21T21:00:00Z", - "home_team_canonical_id": "team_nwsl_uta", - "away_team_canonical_id": "team_nwsl_sea", - "stadium_canonical_id": "stadium_nwsl_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250621_kc_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-21T23:15:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250621_nym_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-21T23:15:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250621_bay_njy", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-21T23:30:00Z", - "home_team_canonical_id": "team_nwsl_njy", - "away_team_canonical_id": "team_nwsl_bay", - "stadium_canonical_id": "stadium_nwsl_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250621_hou_ncc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-21T23:30:00Z", - "home_team_canonical_id": "team_nwsl_ncc", - "away_team_canonical_id": "team_nwsl_hou", - "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250622_la_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-22T00:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250622_ari_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-22T01:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250622_hou_laa_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-22T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250622_chi_por", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-22T02:00:00Z", - "home_team_canonical_id": "team_nwsl_por", - "away_team_canonical_id": "team_nwsl_chi", - "stadium_canonical_id": "stadium_nwsl_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250622_cle_oak_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-22T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250622_wsn_lad_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-22T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250622_bal_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-22T15:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250622_det_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-22T16:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250622_tex_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-22T17:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250622_chw_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-22T17:37:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250622_atl_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-22T17:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250622_mil_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-22T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250622_cin_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-22T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250622_sea_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-22T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250622_chi_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-22T19:00:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250622_dal_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-22T19:00:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250622_ind_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-22T19:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250622_ari_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-22T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250622_cle_oak_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-22T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250622_bos_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-22T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250622_hou_laa_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-22T20:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250622_wsn_lad_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-22T20:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250622_kc_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-22T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250622_ny_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-22T23:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250622_nym_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-22T23:10:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250623_con_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-23T00:30:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250623_wsh_sdw", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-06-23T02:00:00Z", - "home_team_canonical_id": "team_nwsl_sdw", - "away_team_canonical_id": "team_nwsl_wsh", - "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250623_tex_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-23T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250623_atl_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-23T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250623_nyy_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-23T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250623_sea_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-23T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250623_ari_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-23T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250623_pit_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-23T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250623_chc_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-23T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250624_bos_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-24T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250624_wsn_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-24T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250624_tex_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-24T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250624_oak_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-24T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250624_tor_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-24T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250624_atl_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-24T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250624_nyy_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-24T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250624_tbr_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-24T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250624_sea_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-24T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250624_ari_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-24T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250624_pit_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-24T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250624_chc_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-24T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250625_min_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-25T00:00:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250625_la_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-25T00:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250625_atl_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-25T00:00:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250625_phi_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-25T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250625_lad_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-25T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250625_bos_laa_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-25T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250625_wsn_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-25T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250625_mia_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-25T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250625_ind_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-25T02:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250625_ari_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-25T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250625_pit_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-25T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250625_bos_laa_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-25T20:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250625_wsn_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-25T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250625_tex_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-25T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250625_oak_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-25T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250625_tor_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-25T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250625_atl_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-25T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250625_nyy_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-25T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250625_cin_mtl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-25T23:30:00Z", - "home_team_canonical_id": "team_mls_mtl", - "away_team_canonical_id": "team_mls_cin", - "stadium_canonical_id": "stadium_mls_stade_saputo", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250625_atl_clb", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-25T23:30:00Z", - "home_team_canonical_id": "team_mls_clb", - "away_team_canonical_id": "team_mls_atl", - "stadium_canonical_id": "stadium_mls_lowercom_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250625_nsh_ne", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-25T23:30:00Z", - "home_team_canonical_id": "team_mls_ne", - "away_team_canonical_id": "team_mls_nsh", - "stadium_canonical_id": "stadium_mls_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250625_ny_tor", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-25T23:30:00Z", - "home_team_canonical_id": "team_mls_tor", - "away_team_canonical_id": "team_mls_ny", - "stadium_canonical_id": "stadium_mls_bmo_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250625_tbr_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-25T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250625_sea_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-25T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250625_chc_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-25T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250626_phi_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-26T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250626_phi_chi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-26T00:30:00Z", - "home_team_canonical_id": "team_mls_chi", - "away_team_canonical_id": "team_mls_phi", - "stadium_canonical_id": "stadium_mls_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250626_hou_min", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-26T00:30:00Z", - "home_team_canonical_id": "team_mls_min", - "away_team_canonical_id": "team_mls_hou", - "stadium_canonical_id": "stadium_mls_allianz_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250626_clt_skc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-26T00:30:00Z", - "home_team_canonical_id": "team_mls_skc", - "away_team_canonical_id": "team_mls_clt", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250626_orl_stl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-26T00:30:00Z", - "home_team_canonical_id": "team_mls_stl", - "away_team_canonical_id": "team_mls_orl", - "stadium_canonical_id": "stadium_mls_citypark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250626_lad_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-26T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250626_lag_col", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-26T01:30:00Z", - "home_team_canonical_id": "team_mls_col", - "away_team_canonical_id": "team_mls_lag", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250626_mia_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-26T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250626_ny_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-26T02:00:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250626_con_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-26T02:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250626_sj_dal", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-26T02:05:00Z", - "home_team_canonical_id": "team_mls_dal", - "away_team_canonical_id": "team_mls_sj", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250626_sd_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-26T02:30:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_sd", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250626_oak_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-26T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250626_tor_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-26T17:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250626_sea_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-26T17:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250626_phi_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-26T18:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250626_tbr_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-26T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250626_chc_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-26T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250626_lad_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-26T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250626_mia_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-26T19:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250626_la_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-26T23:00:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250626_atl_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-26T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250627_was_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-27T02:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250627_nym_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-27T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250627_tbr_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-27T23:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250627_oak_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-27T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250627_sd_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-27T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250627_stl_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-27T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250627_tor_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-27T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250627_min_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-27T23:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250627_phi_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-27T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250627_min_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-27T23:30:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250627_ind_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-27T23:30:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250627_sf_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-27T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_sea_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_chc_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_lad_kc_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T00:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_col_mil_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T00:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_wsn_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_mia_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250628_chi_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-28T02:00:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250628_ny_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-28T02:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250628_con_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-28T02:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_oak_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_min_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_sea_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T20:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_nym_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T20:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_tbr_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T20:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_lad_kc_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T20:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_col_mil_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_mia_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_sd_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T20:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_stl_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T20:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_tor_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T20:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_sf_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T20:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_chc_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T23:15:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250628_phi_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-28T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250628_nyc_mtl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-28T23:30:00Z", - "home_team_canonical_id": "team_mls_mtl", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_stade_saputo", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250628_nsh_dc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-28T23:30:00Z", - "home_team_canonical_id": "team_mls_dc", - "away_team_canonical_id": "team_mls_nsh", - "stadium_canonical_id": "stadium_mls_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250628_col_ne", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-28T23:30:00Z", - "home_team_canonical_id": "team_mls_ne", - "away_team_canonical_id": "team_mls_col", - "stadium_canonical_id": "stadium_mls_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250628_min_ny", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-28T23:30:00Z", - "home_team_canonical_id": "team_mls_ny", - "away_team_canonical_id": "team_mls_min", - "stadium_canonical_id": "stadium_mls_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250628_cin_orl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-28T23:30:00Z", - "home_team_canonical_id": "team_mls_orl", - "away_team_canonical_id": "team_mls_cin", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250628_por_tor", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-28T23:30:00Z", - "home_team_canonical_id": "team_mls_tor", - "away_team_canonical_id": "team_mls_por", - "stadium_canonical_id": "stadium_mls_bmo_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250629_was_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-29T00:00:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250629_clt_chi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-29T00:30:00Z", - "home_team_canonical_id": "team_mls_chi", - "away_team_canonical_id": "team_mls_clt", - "stadium_canonical_id": "stadium_mls_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250629_sd_dal", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-29T00:30:00Z", - "home_team_canonical_id": "team_mls_dal", - "away_team_canonical_id": "team_mls_sd", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250629_stl_hou", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-29T00:30:00Z", - "home_team_canonical_id": "team_mls_hou", - "away_team_canonical_id": "team_mls_stl", - "stadium_canonical_id": "stadium_mls_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250629_slc_skc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-29T00:30:00Z", - "home_team_canonical_id": "team_mls_skc", - "away_team_canonical_id": "team_mls_slc", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250629_wsn_laa_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-29T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250629_lag_sj", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-29T02:30:00Z", - "home_team_canonical_id": "team_mls_sj", - "away_team_canonical_id": "team_mls_lag", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250629_aus_sea", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-29T02:30:00Z", - "home_team_canonical_id": "team_mls_sea", - "away_team_canonical_id": "team_mls_aus", - "stadium_canonical_id": "stadium_mls_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250629_stl_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-29T16:05:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250629_nym_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-29T17:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250629_tbr_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-29T17:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250629_tor_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-29T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250629_phi_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-29T17:35:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250629_oak_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-29T17:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250629_sd_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-29T17:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250629_chc_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-29T18:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250629_lad_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-29T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250629_sf_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-29T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250629_col_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-29T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250629_sea_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-29T18:35:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250629_ny_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-29T19:00:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250629_chi_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-29T20:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250629_wsn_laa_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-29T20:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250629_mia_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-29T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250629_phi_clb", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-29T22:00:00Z", - "home_team_canonical_id": "team_mls_clb", - "away_team_canonical_id": "team_mls_phi", - "stadium_canonical_id": "stadium_mls_lowercom_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250629_lv_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-29T22:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250629_con_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-29T23:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250629_min_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-29T23:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250630_sea_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-06-30T00:30:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250630_van_lafc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-06-30T01:30:00Z", - "home_team_canonical_id": "team_mls_lafc", - "away_team_canonical_id": "team_mls_van", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250630_sd_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-30T22:35:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250630_stl_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-30T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250630_nyy_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-30T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250630_cin_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-30T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250630_oak_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-06-30T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250701_bal_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-01T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250701_kc_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-01T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250701_sf_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-01T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250701_nyy_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-01T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250701_sd_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-01T22:35:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250701_stl_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-01T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250701_min_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-01T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250701_det_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-01T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250701_oak_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-01T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250701_cin_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-01T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250701_mil_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-01T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250701_laa_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-01T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250702_ind_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-02T00:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250702_cle_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-02T00:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250702_bal_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-02T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250702_hou_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-02T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250702_kc_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-02T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250702_sf_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-02T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250702_chw_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-02T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250702_oak_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-02T16:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250702_stl_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-02T16:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250702_det_wsn_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-02T17:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250702_sd_phi_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-02T17:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250702_mil_nym_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-02T17:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250702_cin_bos_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-02T18:30:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250702_sd_phi_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-02T22:15:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250702_min_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-02T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250702_det_wsn_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-02T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250702_nyy_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-02T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250702_mil_nym_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-02T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250702_cin_bos_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-02T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250702_laa_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-02T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250703_cle_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-03T00:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250703_bal_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-03T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250703_hou_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-03T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250703_kc_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-03T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250703_sf_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-03T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250703_chw_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-03T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250703_min_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-03T16:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250703_hou_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-03T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250703_det_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-03T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250703_lv_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-03T23:00:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250703_la_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-03T23:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250703_nyy_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-03T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250703_mil_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-03T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250703_laa_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-03T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250703_tor_nyc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-03T23:30:00Z", - "home_team_canonical_id": "team_mls_nyc", - "away_team_canonical_id": "team_mls_tor", - "stadium_canonical_id": "stadium_mls_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250703_sea_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-03T23:30:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250704_phx_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-04T00:00:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250704_was_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-04T00:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250704_cle_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-04T00:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250704_sf_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-04T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250704_kc_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-04T02:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250704_chw_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-04T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250704_bos_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-04T15:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250704_cin_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-04T17:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250704_stl_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-04T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250704_nyy_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-04T19:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250704_pit_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-04T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250704_tbr_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-04T20:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250704_tex_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-04T22:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250704_laa_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-04T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250704_det_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-04T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250704_mil_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-04T23:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250704_bal_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-04T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250705_chw_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-05T00:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250705_min_dal", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-05T00:45:00Z", - "home_team_canonical_id": "team_mls_dal", - "away_team_canonical_id": "team_mls_min", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250705_hou_lad_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-05T01:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250705_skc_col", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-05T01:30:00Z", - "home_team_canonical_id": "team_mls_col", - "away_team_canonical_id": "team_mls_skc", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250705_kc_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-05T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250705_sf_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-05T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250705_van_lag", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-05T02:30:00Z", - "home_team_canonical_id": "team_mls_lag", - "away_team_canonical_id": "team_mls_van", - "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250705_tbr_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-05T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250705_stl_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-05T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250705_laa_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-05T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250705_bos_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-05T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250705_cin_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-05T20:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250705_kc_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-05T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250705_bal_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-05T20:10:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250705_nyy_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-05T20:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250705_mil_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-05T20:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250705_la_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-05T23:00:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250705_hou_lad_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-05T23:15:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250705_det_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-05T23:15:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250705_orl_clt", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-05T23:15:00Z", - "home_team_canonical_id": "team_mls_clt", - "away_team_canonical_id": "team_mls_orl", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250705_mia_mtl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-05T23:30:00Z", - "home_team_canonical_id": "team_mls_mtl", - "away_team_canonical_id": "team_mls_mia", - "stadium_canonical_id": "stadium_mls_stade_saputo", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250705_atl_dc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-05T23:30:00Z", - "home_team_canonical_id": "team_mls_dc", - "away_team_canonical_id": "team_mls_atl", - "stadium_canonical_id": "stadium_mls_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250705_chi_cin", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-05T23:30:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_chi", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250706_gsv_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-06T00:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250706_phi_nsh", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-06T00:30:00Z", - "home_team_canonical_id": "team_mls_nsh", - "away_team_canonical_id": "team_mls_phi", - "stadium_canonical_id": "stadium_mls_geodis_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250706_chw_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-06T01:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250706_stl_slc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-06T01:30:00Z", - "home_team_canonical_id": "team_mls_slc", - "away_team_canonical_id": "team_mls_stl", - "stadium_canonical_id": "stadium_mls_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250706_tex_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-06T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250706_sf_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-06T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250706_pit_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-06T02:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250706_ne_por", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-06T02:30:00Z", - "home_team_canonical_id": "team_mls_por", - "away_team_canonical_id": "team_mls_ne", - "stadium_canonical_id": "stadium_mls_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250706_hou_sd", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-06T02:30:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_hou", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250706_ny_sj", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-06T02:30:00Z", - "home_team_canonical_id": "team_mls_sj", - "away_team_canonical_id": "team_mls_ny", - "stadium_canonical_id": "stadium_mls_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250706_bal_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-06T15:35:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250706_sea_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-06T17:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250706_bos_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-06T17:35:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250706_cin_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-06T17:35:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250706_laa_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-06T17:37:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250706_det_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-06T17:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250706_nyy_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-06T17:40:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250706_mil_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-06T17:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250706_tbr_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-06T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250706_chw_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-06T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250706_lv_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-06T20:00:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250706_pit_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-06T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250706_kc_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-06T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250706_hou_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-06T20:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250706_clb_sea", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-06T21:00:00Z", - "home_team_canonical_id": "team_mls_sea", - "away_team_canonical_id": "team_mls_clb", - "stadium_canonical_id": "stadium_mls_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250706_stl_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-06T22:10:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250706_chi_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-06T23:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250707_tex_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-07T01:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250707_sf_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-07T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250707_tbr_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-07T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250707_col_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-07T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250707_mia_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-07T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250707_gsv_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-07T23:30:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250707_pit_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-07T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250707_tor_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-07T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250707_lad_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-07T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250708_cle_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-08T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250708_tex_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-08T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250708_ari_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-08T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250708_phi_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-08T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250708_dal_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-08T02:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250708_chi_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-08T15:30:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250708_nym_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-08T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250708_tbr_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-08T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250708_sea_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-08T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250708_col_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-08T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250708_mia_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-08T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250708_pit_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-08T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250708_chc_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-08T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250708_tor_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-08T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250708_lad_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-08T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250708_wsn_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-08T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250709_lv_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-09T00:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250709_cle_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-09T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250709_tex_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-09T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250709_ari_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-09T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250709_phi_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-09T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250709_atl_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-09T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250709_sea_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-09T15:00:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250709_gsv_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-09T16:00:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250709_tor_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-09T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250709_lad_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-09T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250709_min_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-09T19:30:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250709_phi_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-09T19:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250709_tbr_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-09T21:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250709_sea_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-09T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250709_nym_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-09T23:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250709_col_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-09T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250709_mia_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-09T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250709_mia_ne", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-09T23:30:00Z", - "home_team_canonical_id": "team_mls_ne", - "away_team_canonical_id": "team_mls_mia", - "stadium_canonical_id": "stadium_mls_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250709_pit_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-09T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250709_chc_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-09T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250709_wsn_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-09T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250710_dal_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-10T00:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250710_cle_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-10T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250710_tex_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-10T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250710_ari_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-10T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250710_atl_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-10T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250710_col_lafc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-10T02:25:00Z", - "home_team_canonical_id": "team_mls_lafc", - "away_team_canonical_id": "team_mls_col", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250710_nym_bal_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-10T16:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250710_chc_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-10T17:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250710_min_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-10T19:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250710_nym_bal_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-10T21:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250710_mia_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-10T21:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250710_sea_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-10T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250710_tbr_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-10T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250710_lv_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-10T23:30:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250710_cle_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-10T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250710_wsn_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-10T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250711_atl_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-11T01:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250711_tex_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-11T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250711_ari_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-11T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250711_cle_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-11T19:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250711_mia_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-11T23:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250711_chc_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-11T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250711_col_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-11T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250711_sea_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-11T23:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250711_tbr_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-11T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250711_atl_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-11T23:30:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_cle_chw_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T00:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_nym_kc_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T00:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_tex_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_pit_min_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T00:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_wsn_mil_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T00:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_atl_stl_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T00:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_ari_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_phi_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250712_con_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-12T02:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_tor_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_lad_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T02:15:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250712_min_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-12T17:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_chc_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_sea_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_pit_min_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_atl_stl_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250712_gsv_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-12T20:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_lad_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_mia_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T20:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_cle_chw_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T20:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_nym_kc_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T20:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_wsn_mil_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_col_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T20:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_tbr_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T20:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250712_clb_cin", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-12T23:30:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_clb", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250712_mtl_orl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-12T23:30:00Z", - "home_team_canonical_id": "team_mls_orl", - "away_team_canonical_id": "team_mls_mtl", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250712_ny_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-12T23:30:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_ny", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250712_atl_tor", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-12T23:30:00Z", - "home_team_canonical_id": "team_mls_tor", - "away_team_canonical_id": "team_mls_atl", - "stadium_canonical_id": "stadium_mls_bmo_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_tex_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T23:35:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250712_phi_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-12T23:35:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250712_nsh_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-12T23:45:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_nsh", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250713_ne_aus", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-13T00:30:00Z", - "home_team_canonical_id": "team_mls_aus", - "away_team_canonical_id": "team_mls_ne", - "stadium_canonical_id": "stadium_mls_q2_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250713_sd_chi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-13T00:30:00Z", - "home_team_canonical_id": "team_mls_chi", - "away_team_canonical_id": "team_mls_sd", - "stadium_canonical_id": "stadium_mls_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250713_sj_min", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-13T00:30:00Z", - "home_team_canonical_id": "team_mls_min", - "away_team_canonical_id": "team_mls_sj", - "stadium_canonical_id": "stadium_mls_allianz_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250713_sea_skc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-13T00:30:00Z", - "home_team_canonical_id": "team_mls_skc", - "away_team_canonical_id": "team_mls_sea", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250713_nyc_clt", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-13T00:58:00Z", - "home_team_canonical_id": "team_mls_clt", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250713_van_col", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-13T01:30:00Z", - "home_team_canonical_id": "team_mls_col", - "away_team_canonical_id": "team_mls_van", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250713_hou_slc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-13T01:30:00Z", - "home_team_canonical_id": "team_mls_slc", - "away_team_canonical_id": "team_mls_hou", - "stadium_canonical_id": "stadium_mls_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250713_ari_laa_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-13T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250713_tor_oak_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-13T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250713_dc_lag", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-13T02:30:00Z", - "home_team_canonical_id": "team_mls_lag", - "away_team_canonical_id": "team_mls_dc", - "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250713_dal_lafc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-13T02:30:00Z", - "home_team_canonical_id": "team_mls_lafc", - "away_team_canonical_id": "team_mls_dal", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250713_dal_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-13T17:00:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250713_tbr_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-13T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250713_mia_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-13T17:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250713_chc_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-13T17:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250713_col_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-13T17:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250713_sea_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-13T17:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250713_nym_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-13T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250713_tex_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-13T18:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250713_pit_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-13T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250713_cle_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-13T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250713_wsn_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-13T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250713_atl_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-13T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250713_atl_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-13T19:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250713_tor_oak_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-13T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250713_lad_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-13T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250713_ari_laa_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-13T20:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250713_phi_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-13T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250713_con_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-13T22:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250713_was_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-13T22:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250713_por_stl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-13T23:00:00Z", - "home_team_canonical_id": "team_mls_stl", - "away_team_canonical_id": "team_mls_por", - "stadium_canonical_id": "stadium_mls_citypark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250715_min_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-15T00:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250715_phx_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-15T02:00:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250716_ind_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-16T00:00:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250716_was_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-16T02:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250716_atl_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-16T16:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250716_phx_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-16T17:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250716_gsv_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-16T19:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250716_chi_atl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-16T23:30:00Z", - "home_team_canonical_id": "team_mls_atl", - "away_team_canonical_id": "team_mls_chi", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250716_dc_clt", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-16T23:30:00Z", - "home_team_canonical_id": "team_mls_clt", - "away_team_canonical_id": "team_mls_dc", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250716_mia_cin", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-16T23:30:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_mia", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250716_ne_ny", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-16T23:30:00Z", - "home_team_canonical_id": "team_mls_ny", - "away_team_canonical_id": "team_mls_ne", - "stadium_canonical_id": "stadium_mls_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250716_mtl_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-16T23:30:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_mtl", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250716_ind_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-16T23:30:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250717_lv_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-17T00:00:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250717_nyc_orl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-17T00:15:00Z", - "home_team_canonical_id": "team_mls_orl", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250717_van_hou", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-17T00:30:00Z", - "home_team_canonical_id": "team_mls_hou", - "away_team_canonical_id": "team_mls_van", - "stadium_canonical_id": "stadium_mls_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250717_lafc_min", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-17T00:30:00Z", - "home_team_canonical_id": "team_mls_min", - "away_team_canonical_id": "team_mls_lafc", - "stadium_canonical_id": "stadium_mls_allianz_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250717_clb_nsh", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-17T00:30:00Z", - "home_team_canonical_id": "team_mls_nsh", - "away_team_canonical_id": "team_mls_clb", - "stadium_canonical_id": "stadium_mls_geodis_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250717_col_sea", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-17T02:00:00Z", - "home_team_canonical_id": "team_mls_sea", - "away_team_canonical_id": "team_mls_col", - "stadium_canonical_id": "stadium_mls_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250717_aus_lag", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-17T02:30:00Z", - "home_team_canonical_id": "team_mls_lag", - "away_team_canonical_id": "team_mls_aus", - "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250717_slc_por", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-17T02:30:00Z", - "home_team_canonical_id": "team_mls_por", - "away_team_canonical_id": "team_mls_slc", - "stadium_canonical_id": "stadium_mls_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250717_tor_sd", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-17T02:30:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_tor", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250717_dal_sj", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-17T02:30:00Z", - "home_team_canonical_id": "team_mls_sj", - "away_team_canonical_id": "team_mls_dal", - "stadium_canonical_id": "stadium_mls_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250718_bos_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-18T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250718_chw_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-18T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250718_sd_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-18T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250718_laa_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-18T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250718_sf_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-18T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250718_cin_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-18T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250718_oak_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-18T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250718_kc_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-18T23:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250718_nyy_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-18T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250718_bal_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-18T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250719_det_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-19T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250719_min_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-19T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250719_stl_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-19T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250719_hou_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-19T02:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250719_mil_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-19T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250719_sf_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-19T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250719_cin_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-19T20:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250719_kc_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-19T20:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250719_laa_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-19T22:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250719_chw_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-19T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250719_sd_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-19T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250719_det_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-19T23:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250719_bal_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-19T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250719_oak_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-19T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250719_stl_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-19T23:15:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250719_bos_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-19T23:15:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250719_nyy_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-19T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250719_clt_atl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-19T23:30:00Z", - "home_team_canonical_id": "team_mls_atl", - "away_team_canonical_id": "team_mls_clt", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250719_chi_mtl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-19T23:30:00Z", - "home_team_canonical_id": "team_mls_mtl", - "away_team_canonical_id": "team_mls_chi", - "stadium_canonical_id": "stadium_mls_stade_saputo", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250719_dc_clb", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-19T23:30:00Z", - "home_team_canonical_id": "team_mls_clb", - "away_team_canonical_id": "team_mls_dc", - "stadium_canonical_id": "stadium_mls_lowercom_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250719_orl_ne", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-19T23:30:00Z", - "home_team_canonical_id": "team_mls_ne", - "away_team_canonical_id": "team_mls_orl", - "stadium_canonical_id": "stadium_mls_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250719_mia_ny", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-19T23:30:00Z", - "home_team_canonical_id": "team_mls_ny", - "away_team_canonical_id": "team_mls_mia", - "stadium_canonical_id": "stadium_mls_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250720_min_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-20T00:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250720_stl_dal", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-20T00:30:00Z", - "home_team_canonical_id": "team_mls_dal", - "away_team_canonical_id": "team_mls_stl", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250720_phi_hou", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-20T00:30:00Z", - "home_team_canonical_id": "team_mls_hou", - "away_team_canonical_id": "team_mls_phi", - "stadium_canonical_id": "stadium_mls_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250720_sj_sea", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-20T00:30:00Z", - "home_team_canonical_id": "team_mls_sea", - "away_team_canonical_id": "team_mls_sj", - "stadium_canonical_id": "stadium_mls_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250720_nyc_skc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-20T00:30:00Z", - "home_team_canonical_id": "team_mls_skc", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250720_mil_lad_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-20T01:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250720_tor_nsh", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-20T01:15:00Z", - "home_team_canonical_id": "team_mls_nsh", - "away_team_canonical_id": "team_mls_tor", - "stadium_canonical_id": "stadium_mls_geodis_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250720_cin_slc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-20T01:30:00Z", - "home_team_canonical_id": "team_mls_slc", - "away_team_canonical_id": "team_mls_cin", - "stadium_canonical_id": "stadium_mls_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250720_hou_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-20T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250720_lag_lafc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-20T02:30:00Z", - "home_team_canonical_id": "team_mls_lafc", - "away_team_canonical_id": "team_mls_lag", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250720_min_por", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-20T02:30:00Z", - "home_team_canonical_id": "team_mls_por", - "away_team_canonical_id": "team_mls_min", - "stadium_canonical_id": "stadium_mls_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250720_van_sd", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-20T02:30:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_van", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250720_sf_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-20T16:05:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250720_bal_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-20T16:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250720_sd_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-20T17:35:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250720_laa_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-20T17:35:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250720_chw_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-20T17:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250720_nyy_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-20T17:35:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250720_cin_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-20T17:40:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250720_oak_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-20T17:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250720_kc_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-20T17:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250720_bos_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-20T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250720_min_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-20T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250720_mil_lad_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-20T20:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250720_hou_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-20T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250720_stl_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-20T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250720_det_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-20T23:10:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250721_bal_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-21T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250721_det_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-21T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250721_sd_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-21T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250721_cin_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-21T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250721_bos_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-21T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250721_nyy_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-21T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250721_laa_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-21T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250721_sf_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-21T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250721_chw_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-21T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250722_kc_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-22T00:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250722_oak_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-22T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250722_stl_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-22T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250722_hou_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-22T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250722_mil_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-22T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250722_min_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-22T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250722_bal_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-22T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250722_det_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-22T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250722_sd_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-22T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250722_cin_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-22T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250722_bos_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-22T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250722_chw_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-22T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250722_nyy_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-22T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250722_laa_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-22T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250722_sf_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-22T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250722_la_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-22T23:30:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250723_ind_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-23T00:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250723_chi_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-23T00:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_kc_chc_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T00:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_oak_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_stl_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_hou_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_mil_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250723_atl_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-23T02:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250723_dal_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-23T02:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_min_lad_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_cin_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T16:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_sd_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T16:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_sf_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T16:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_det_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T16:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_laa_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T17:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_kc_chc_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_stl_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_hou_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T19:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_mil_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T19:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_min_lad_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T20:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_bal_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_nyy_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_bos_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T23:10:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250723_chw_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-23T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250724_oak_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-24T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250724_atl_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-24T02:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250724_bal_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-24T17:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250724_tor_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-24T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250724_la_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-24T23:00:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250724_lv_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-24T23:00:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250724_sd_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-24T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250725_oak_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-25T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250725_sea_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-25T00:30:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250725_sea_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-25T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250725_mia_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-25T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250725_ari_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-25T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250725_col_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-25T23:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250725_phi_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-25T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250725_lad_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-25T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250725_tbr_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-25T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250725_tor_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-25T23:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250725_sd_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-25T23:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250725_mtl_ne", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-25T23:30:00Z", - "home_team_canonical_id": "team_mls_ne", - "away_team_canonical_id": "team_mls_mtl", - "stadium_canonical_id": "stadium_mls_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250725_phx_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-25T23:30:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250725_lv_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-25T23:30:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250725_chc_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-25T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_atl_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_oak_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_wsn_min_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T00:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_cle_kc_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T00:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250726_nyc_dal", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-26T00:30:00Z", - "home_team_canonical_id": "team_mls_dal", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250726_orl_clb", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-26T00:40:00Z", - "home_team_canonical_id": "team_mls_clb", - "away_team_canonical_id": "team_mls_orl", - "stadium_canonical_id": "stadium_mls_lowercom_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_sea_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250726_dal_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-26T02:00:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_nym_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T02:15:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250726_por_lafc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-26T02:30:00Z", - "home_team_canonical_id": "team_mls_lafc", - "away_team_canonical_id": "team_mls_por", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250726_nsh_sd", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-26T02:30:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_nsh", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_phi_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_cle_kc_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T18:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_tor_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T22:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_ari_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_tbr_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250726_la_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-26T23:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_atl_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T23:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_col_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T23:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_oak_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T23:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_wsn_min_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T23:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_chc_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T23:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_mia_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T23:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_cle_kc_3", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T23:15:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_lad_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T23:15:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250726_sd_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-26T23:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250726_cin_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-26T23:15:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_cin", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250726_sea_atl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-26T23:30:00Z", - "home_team_canonical_id": "team_mls_atl", - "away_team_canonical_id": "team_mls_sea", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250726_tor_clt", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-26T23:30:00Z", - "home_team_canonical_id": "team_mls_clt", - "away_team_canonical_id": "team_mls_tor", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250726_aus_dc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-26T23:30:00Z", - "home_team_canonical_id": "team_mls_dc", - "away_team_canonical_id": "team_mls_aus", - "stadium_canonical_id": "stadium_mls_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250726_col_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-26T23:30:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_col", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250726_sea_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-26T23:30:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250727_ny_chi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-27T00:30:00Z", - "home_team_canonical_id": "team_mls_chi", - "away_team_canonical_id": "team_mls_ny", - "stadium_canonical_id": "stadium_mls_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250727_min_stl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-27T00:30:00Z", - "home_team_canonical_id": "team_mls_stl", - "away_team_canonical_id": "team_mls_min", - "stadium_canonical_id": "stadium_mls_citypark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250727_nym_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-27T01:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250727_sj_slc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-27T01:30:00Z", - "home_team_canonical_id": "team_mls_slc", - "away_team_canonical_id": "team_mls_sj", - "stadium_canonical_id": "stadium_mls_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250727_sea_laa_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-27T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250727_skc_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-07-27T02:30:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_skc", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250727_gsv_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-27T17:00:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250727_col_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-27T17:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250727_lad_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-27T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250727_ari_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-27T17:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250727_phi_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-27T17:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250727_tbr_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-27T17:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250727_tor_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-27T17:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250727_cle_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-27T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250727_oak_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-27T18:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250727_wsn_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-27T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250727_chc_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-27T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250727_mia_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-27T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250727_sd_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-27T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250727_atl_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-27T18:35:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250727_ind_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-27T19:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250727_lv_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-27T20:00:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250727_sea_laa_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-27T20:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250727_phx_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-27T22:00:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250727_atl_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-27T23:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250727_nym_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-27T23:10:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250728_tor_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-28T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250728_col_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-28T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250728_ari_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-28T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250728_sea_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-28T23:00:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250728_tbr_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-28T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250728_lad_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-28T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250728_bos_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-28T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250728_atl_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-28T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250728_phi_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-28T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250728_chc_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-28T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250728_mia_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-28T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250729_ny_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-29T00:00:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250729_wsn_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-29T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250729_tex_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-29T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250729_nym_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-29T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250729_pit_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-29T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250729_sea_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-29T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250729_tor_bal_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-29T16:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250729_tor_bal_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-29T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250729_col_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-29T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250729_ari_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-29T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250729_tbr_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-29T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250729_lad_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-29T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250729_gsv_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-29T23:30:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250729_chi_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-29T23:30:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250729_bos_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-29T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250729_atl_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-29T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250729_phi_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-29T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250729_chc_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-29T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250729_mia_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-29T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250730_wsn_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-30T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250730_tex_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-30T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250730_nym_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-30T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250730_pit_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-30T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250730_lv_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-30T02:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250730_sea_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-30T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250730_tor_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-30T16:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250730_ari_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-30T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250730_bos_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-30T17:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250730_wsn_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-30T18:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250730_atl_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-30T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250730_phi_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-30T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250730_chc_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-30T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250730_pit_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-30T19:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250730_nym_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-30T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250730_col_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-30T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250730_phx_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-30T23:00:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250730_tbr_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-30T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250730_lad_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-30T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250730_mia_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-30T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250731_atl_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-31T00:00:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250731_ny_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-31T00:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250731_tex_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-31T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250731_sea_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-31T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250731_tbr_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-31T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250731_atl_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-07-31T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250731_gsv_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-07-31T23:30:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250801_lac_det", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-01T00:00:00Z", - "home_team_canonical_id": "team_nfl_det", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, { "canonical_id": "game_nfl_2026_20250801_lac_det", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-01T00:00:00Z", + "season": "2025", + "date": "2025-07-31", + "time": "8p", + "home_team": "Detroit Lions", + "away_team": "Los Angeles Chargers", + "home_team_abbrev": "DET", + "away_team_abbrev": "LAC", "home_team_canonical_id": "team_nfl_det", "away_team_canonical_id": "team_nfl_lac", + "venue": "Tom Benson Hall of Fame Stadium", "stadium_canonical_id": "stadium_nfl_tom_benson_hall_of_fame_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250801_tex_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-01T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250801_atl_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-01T16:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250801_bal_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-01T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250801_det_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-01T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250801_mil_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-01T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250801_kc_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-01T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250801_hou_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-01T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250801_sf_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-01T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250801_min_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-01T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250801_nyy_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-01T23:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250801_phx_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-01T23:30:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250801_ny_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-01T23:30:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250801_gsv_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-01T23:30:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250801_ind_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-01T23:30:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250801_lad_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-01T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250802_njy_chi", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-02T00:00:00Z", - "home_team_canonical_id": "team_nwsl_chi", - "away_team_canonical_id": "team_nwsl_njy", - "stadium_canonical_id": "stadium_nwsl_seatgeek_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250802_kcc_rgn", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-02T00:00:00Z", - "home_team_canonical_id": "team_nwsl_rgn", - "away_team_canonical_id": "team_nwsl_kcc", - "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250802_pit_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-02T00:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250802_chw_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-02T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250802_stl_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-02T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250802_la_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-02T02:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250802_ari_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-02T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250802_tex_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-02T02:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250802_ang_sea", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-02T02:30:00Z", - "home_team_canonical_id": "team_nwsl_sea", - "away_team_canonical_id": "team_nwsl_ang", - "stadium_canonical_id": "stadium_nwsl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250802_lad_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-02T17:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250802_bal_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-02T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250802_min_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-02T19:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250802_kc_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-02T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250802_pit_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-02T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250802_det_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-02T20:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250802_mil_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-02T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250802_tex_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-02T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250802_hou_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-02T20:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250802_sf_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-02T20:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250802_min_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-02T20:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250802_nyy_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-02T20:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250802_atl_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-02T23:15:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250802_sdw_ncc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-02T23:30:00Z", - "home_team_canonical_id": "team_nwsl_ncc", - "away_team_canonical_id": "team_nwsl_sdw", - "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250803_hou_bay", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-03T02:00:00Z", - "home_team_canonical_id": "team_nwsl_bay", - "away_team_canonical_id": "team_nwsl_hou", - "stadium_canonical_id": "stadium_nwsl_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250803_ari_oak_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-03T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250803_chw_laa_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-03T02:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250803_stl_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-03T02:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250803_hou_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-03T15:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250803_lad_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-03T16:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250803_por_wsh", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-03T16:30:00Z", - "home_team_canonical_id": "team_nwsl_wsh", - "away_team_canonical_id": "team_nwsl_por", - "stadium_canonical_id": "stadium_nwsl_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250803_ny_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-03T17:00:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250803_atl_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-03T17:05:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250803_mil_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-03T17:35:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250803_kc_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-03T17:37:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250803_sf_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-03T17:40:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250803_min_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-03T17:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250803_nyy_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-03T17:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250803_bal_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-03T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250803_was_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-03T19:00:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250803_ind_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-03T19:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250803_pit_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-03T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250803_ari_oak_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-03T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250803_chw_laa_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-03T20:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250803_stl_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-03T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250803_tex_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-03T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250803_phx_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-03T22:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250803_gsv_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-03T22:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250803_uta_orl", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-03T22:00:00Z", - "home_team_canonical_id": "team_nwsl_orl", - "away_team_canonical_id": "team_nwsl_uta", - "stadium_canonical_id": "stadium_nwsl_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250803_det_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-03T23:10:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250804_sf_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-04T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250804_min_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-04T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250804_hou_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-04T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250804_bal_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-04T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250804_kc_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-04T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250804_cle_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-04T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250804_mil_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-04T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250805_cin_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-05T00:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250805_nyy_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-05T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250805_tor_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-05T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250805_tbr_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-05T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250805_sd_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-05T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250805_stl_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-05T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250805_sf_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-05T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250805_min_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-05T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250805_hou_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-05T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250805_oak_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-05T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250805_bal_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-05T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250805_dal_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-05T23:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250805_kc_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-05T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250805_cle_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-05T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250805_mil_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-05T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250806_was_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-06T00:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_cin_chc_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T00:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_nyy_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_tor_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_tbr_laa_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_sd_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_chw_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250806_ind_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-06T02:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250806_con_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-06T02:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250806_min_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-06T02:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_stl_lad_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_sf_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T16:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_bal_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T16:35:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_cle_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T17:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_min_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_cin_chc_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_nyy_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T18:35:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_tor_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_tbr_laa_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T20:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_stl_lad_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T20:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_hou_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T20:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_oak_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_kc_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250806_mil_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-06T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250807_sd_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-07T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250807_chw_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-07T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250807_lv_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-07T02:00:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250807_oak_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-07T16:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250807_chw_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-07T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250807_cin_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-07T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250807_ind_bal", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-07T23:00:00Z", - "home_team_canonical_id": "team_nfl_bal", - "away_team_canonical_id": "team_nfl_ind", - "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250807_ind_bal", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-07T23:00:00Z", + "season": "2025", + "date": "2025-08-07", + "time": "7p", + "home_team": "Baltimore Ravens", + "away_team": "Indianapolis Colts", + "home_team_abbrev": "BAL", + "away_team_abbrev": "IND", "home_team_canonical_id": "team_nfl_bal", "away_team_canonical_id": "team_nfl_ind", - "stadium_canonical_id": "stadium_nfl_mt_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250807_mia_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-07T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250807_cin_phi", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-07T23:30:00Z", - "home_team_canonical_id": "team_nfl_phi", - "away_team_canonical_id": "team_nfl_cin", - "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", + "venue": "M&T Bank Stadium", + "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250807_cin_phi", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-07T23:30:00Z", + "season": "2025", + "date": "2025-08-07", + "time": "7:30p", + "home_team": "Philadelphia Eagles", + "away_team": "Cincinnati Bengals", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_nfl_phi", "away_team_canonical_id": "team_nfl_cin", + "venue": "Lincoln Financial Field", "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250808_atl_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-08T00:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250808_lv_sea", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-08T02:00:00Z", - "home_team_canonical_id": "team_nfl_sea", - "away_team_canonical_id": "team_nfl_lv", - "stadium_canonical_id": "stadium_nfl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250808_con_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-08T02:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250808_ind_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-08T02:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250808_lv_sea", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-08T02:00:00Z", + "season": "2025", + "date": "2025-08-07", + "time": "7p", + "home_team": "Seattle Seahawks", + "away_team": "Las Vegas Raiders", + "home_team_abbrev": "SEA", + "away_team_abbrev": "LV", "home_team_canonical_id": "team_nfl_sea", "away_team_canonical_id": "team_nfl_lv", + "venue": "Lumen Field", "stadium_canonical_id": "stadium_nfl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250808_cin_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-08T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250808_det_atl", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-08T23:00:00Z", - "home_team_canonical_id": "team_nfl_atl", - "away_team_canonical_id": "team_nfl_det", - "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250808_cle_car", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-08T23:00:00Z", - "home_team_canonical_id": "team_nfl_car", - "away_team_canonical_id": "team_nfl_cle", - "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250808_det_atl", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-08T23:00:00Z", + "season": "2025", + "date": "2025-08-08", + "time": "7p", + "home_team": "Atlanta Falcons", + "away_team": "Detroit Lions", + "home_team_abbrev": "ATL", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nfl_atl", "away_team_canonical_id": "team_nfl_det", + "venue": "Mercedes-Benz Stadium", "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250808_cle_car", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-08T23:00:00Z", + "season": "2025", + "date": "2025-08-08", + "time": "7p", + "home_team": "Carolina Panthers", + "away_team": "Cleveland Browns", + "home_team_abbrev": "CAR", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nfl_car", "away_team_canonical_id": "team_nfl_cle", + "venue": "Bank of America Stadium", "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250808_oak_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-08T23:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250808_hou_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-08T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250808_laa_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-08T23:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250808_mia_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-08T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250808_was_ne", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-08T23:30:00Z", - "home_team_canonical_id": "team_nfl_ne", - "away_team_canonical_id": "team_nfl_was", - "stadium_canonical_id": "stadium_nfl_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250808_ny_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-08T23:30:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250808_was_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-08T23:30:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_target_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250808_was_ne", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-08T23:30:00Z", + "season": "2025", + "date": "2025-08-08", + "time": "7:30p", + "home_team": "New England Patriots", + "away_team": "Washington Commanders", + "home_team_abbrev": "NE", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nfl_ne", "away_team_canonical_id": "team_nfl_was", + "venue": "Gillette Stadium", "stadium_canonical_id": "stadium_nfl_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250808_cle_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-08T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_phi_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_kc_min_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T00:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_nym_mil_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T00:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_chc_stl_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T00:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250809_ncc_hou", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-09T00:47:00Z", - "home_team_canonical_id": "team_nwsl_hou", - "away_team_canonical_id": "team_nwsl_ncc", - "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_col_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_bos_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_tbr_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250809_sea_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-09T02:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250809_kcc_uta", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-09T02:00:00Z", - "home_team_canonical_id": "team_nwsl_uta", - "away_team_canonical_id": "team_nwsl_kcc", - "stadium_canonical_id": "stadium_nwsl_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_tor_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_wsn_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T02:15:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250809_wsh_njy", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-09T16:00:00Z", - "home_team_canonical_id": "team_nwsl_njy", - "away_team_canonical_id": "team_nwsl_wsh", - "stadium_canonical_id": "stadium_nwsl_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250809_nyg_buf", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-09T17:00:00Z", - "home_team_canonical_id": "team_nfl_buf", - "away_team_canonical_id": "team_nfl_nyg", - "stadium_canonical_id": "stadium_nfl_highmark_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250809_nyg_buf", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-09T17:00:00Z", + "season": "2025", + "date": "2025-08-09", + "time": "1p", + "home_team": "Buffalo Bills", + "away_team": "New York Giants", + "home_team_abbrev": "BUF", + "away_team_abbrev": "NYG", "home_team_canonical_id": "team_nfl_buf", "away_team_canonical_id": "team_nfl_nyg", + "venue": "Highmark Stadium", "stadium_canonical_id": "stadium_nfl_highmark_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_mia_atl_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T17:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_hou_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T18:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250809_hou_min", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-09T20:00:00Z", - "home_team_canonical_id": "team_nfl_min", - "away_team_canonical_id": "team_nfl_hou", - "stadium_canonical_id": "stadium_nfl_us_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250809_hou_min", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-09T20:00:00Z", + "season": "2025", + "date": "2025-08-09", + "time": "3p", + "home_team": "Minnesota Vikings", + "away_team": "Houston Texans", + "home_team_abbrev": "MIN", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nfl_min", "away_team_canonical_id": "team_nfl_hou", + "venue": "U.S. Bank Stadium", "stadium_canonical_id": "stadium_nfl_us_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_wsn_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_laa_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T22:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_cin_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250809_dal_lar", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-09T23:00:00Z", - "home_team_canonical_id": "team_nfl_lar", - "away_team_canonical_id": "team_nfl_dal", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250809_pit_jax", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-09T23:00:00Z", - "home_team_canonical_id": "team_nfl_jax", - "away_team_canonical_id": "team_nfl_pit", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250809_pit_jax", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-09T23:00:00Z", - "home_team_canonical_id": "team_nfl_jax", - "away_team_canonical_id": "team_nfl_pit", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250809_dal_lar", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-09T23:00:00Z", + "season": "2025", + "date": "2025-08-09", + "time": "4p", + "home_team": "Los Angeles Rams", + "away_team": "Dallas Cowboys", + "home_team_abbrev": "LAR", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nfl_lar", "away_team_canonical_id": "team_nfl_dal", + "venue": "SoFi Stadium", "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20250809_oak_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T23:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_kc_min_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T23:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_nym_mil_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T23:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_cle_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T23:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_phi_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T23:15:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_chc_stl_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T23:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250809_mia_atl_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-09T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250809_ten_tb", + "canonical_id": "game_nfl_2026_20250809_pit_jax", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-08-09T23:30:00Z", - "home_team_canonical_id": "team_nfl_tb", - "away_team_canonical_id": "team_nfl_ten", - "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250809_atl_mtl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-09T23:30:00Z", - "home_team_canonical_id": "team_mls_mtl", - "away_team_canonical_id": "team_mls_atl", - "stadium_canonical_id": "stadium_mls_stade_saputo", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250809_dc_ne", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-09T23:30:00Z", - "home_team_canonical_id": "team_mls_ne", - "away_team_canonical_id": "team_mls_dc", - "stadium_canonical_id": "stadium_mls_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250809_tor_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-09T23:30:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_tor", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250809_rgn_orl", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-09T23:30:00Z", - "home_team_canonical_id": "team_nwsl_orl", - "away_team_canonical_id": "team_nwsl_rgn", - "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "date": "2025-08-09", + "time": "7p", + "home_team": "Jacksonville Jaguars", + "away_team": "Pittsburgh Steelers", + "home_team_abbrev": "JAX", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nfl_jax", + "away_team_canonical_id": "team_nfl_pit", + "venue": "EverBank Stadium", + "stadium_canonical_id": "stadium_nfl_everbank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250809_ten_tb", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-09T23:30:00Z", + "season": "2025", + "date": "2025-08-09", + "time": "7:30p", + "home_team": "Tampa Bay Buccaneers", + "away_team": "Tennessee Titans", + "home_team_abbrev": "TB", + "away_team_abbrev": "TEN", "home_team_canonical_id": "team_nfl_tb", "away_team_canonical_id": "team_nfl_ten", + "venue": "Raymond James Stadium", "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250810_nyj_gb", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-10T00:00:00Z", - "home_team_canonical_id": "team_nfl_gb", - "away_team_canonical_id": "team_nfl_nyj", - "stadium_canonical_id": "stadium_nfl_lambeau_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250810_kc_ari", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-10T00:00:00Z", - "home_team_canonical_id": "team_nfl_ari", - "away_team_canonical_id": "team_nfl_kc", - "stadium_canonical_id": "stadium_nfl_state_farm_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250810_chi_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-10T00:00:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250810_nyj_gb", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-10T00:00:00Z", - "home_team_canonical_id": "team_nfl_gb", - "away_team_canonical_id": "team_nfl_nyj", - "stadium_canonical_id": "stadium_nfl_lambeau_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250810_kc_ari", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-10T00:00:00Z", + "season": "2025", + "date": "2025-08-09", + "time": "5p", + "home_team": "Arizona Cardinals", + "away_team": "Kansas City Chiefs", + "home_team_abbrev": "ARI", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_nfl_ari", "away_team_canonical_id": "team_nfl_kc", + "venue": "State Farm Stadium", "stadium_canonical_id": "stadium_nfl_state_farm_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20250810_col_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-10T00:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250810_den_sf", + "canonical_id": "game_nfl_2026_20250810_nyj_gb", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-08-10T00:30:00Z", - "home_team_canonical_id": "team_nfl_sf", - "away_team_canonical_id": "team_nfl_den", - "stadium_canonical_id": "stadium_nfl_levis_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250810_hou_aus", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-10T00:30:00Z", - "home_team_canonical_id": "team_mls_aus", - "away_team_canonical_id": "team_mls_hou", - "stadium_canonical_id": "stadium_mls_q2_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250810_lafc_chi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-10T00:30:00Z", - "home_team_canonical_id": "team_mls_chi", - "away_team_canonical_id": "team_mls_lafc", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250810_por_dal", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-10T00:30:00Z", - "home_team_canonical_id": "team_mls_dal", - "away_team_canonical_id": "team_mls_por", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250810_nsh_stl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-10T00:30:00Z", - "home_team_canonical_id": "team_mls_stl", - "away_team_canonical_id": "team_mls_nsh", - "stadium_canonical_id": "stadium_mls_citypark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250810_la_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-10T00:30:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_chase_center", + "date": "2025-08-09", + "time": "7p", + "home_team": "Green Bay Packers", + "away_team": "New York Jets", + "home_team_abbrev": "GB", + "away_team_abbrev": "NYJ", + "home_team_canonical_id": "team_nfl_gb", + "away_team_canonical_id": "team_nfl_nyj", + "venue": "Lambeau Field", + "stadium_canonical_id": "stadium_nfl_lambeau_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250810_den_sf", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-10T00:30:00Z", + "season": "2025", + "date": "2025-08-09", + "time": "5:30p", + "home_team": "San Francisco 49ers", + "away_team": "Denver Broncos", + "home_team_abbrev": "SF", + "away_team_abbrev": "DEN", "home_team_canonical_id": "team_nfl_sf", "away_team_canonical_id": "team_nfl_den", + "venue": "Levi's Stadium", "stadium_canonical_id": "stadium_nfl_levis_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250810_bos_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-10T00:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250810_sd_skc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-10T00:45:00Z", - "home_team_canonical_id": "team_mls_skc", - "away_team_canonical_id": "team_mls_sd", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250810_tor_lad_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-10T01:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250810_tbr_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-10T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250810_ang_sdw", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-10T02:00:00Z", - "home_team_canonical_id": "team_nwsl_sdw", - "away_team_canonical_id": "team_nwsl_ang", - "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250810_van_sj", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-10T02:30:00Z", - "home_team_canonical_id": "team_mls_sj", - "away_team_canonical_id": "team_mls_van", - "stadium_canonical_id": "stadium_mls_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250810_min_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-10T16:30:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250810_mia_chi", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-10T17:00:00Z", - "home_team_canonical_id": "team_nfl_chi", - "away_team_canonical_id": "team_nfl_mia", - "stadium_canonical_id": "stadium_nfl_soldier_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250810_mia_chi", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-10T17:00:00Z", + "season": "2025", + "date": "2025-08-10", + "time": "12p", + "home_team": "Chicago Bears", + "away_team": "Miami Dolphins", + "home_team_abbrev": "CHI", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_nfl_chi", "away_team_canonical_id": "team_nfl_mia", + "venue": "Soldier Field", "stadium_canonical_id": "stadium_nfl_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250810_kc_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-10T17:05:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250810_oak_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-10T17:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250810_cin_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-10T17:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250810_mia_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-10T17:35:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250810_hou_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-10T17:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250810_laa_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-10T17:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250810_bay_chi", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-10T18:00:00Z", - "home_team_canonical_id": "team_nwsl_chi", - "away_team_canonical_id": "team_nwsl_bay", - "stadium_canonical_id": "stadium_nwsl_seatgeek_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250810_cle_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-10T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250810_nym_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-10T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250810_phi_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-10T18:35:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250810_no_lac", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-10T20:00:00Z", - "home_team_canonical_id": "team_nfl_lac", - "away_team_canonical_id": "team_nfl_no", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250810_was_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-10T20:00:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250810_sea_por", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-10T20:00:00Z", - "home_team_canonical_id": "team_nwsl_por", - "away_team_canonical_id": "team_nwsl_sea", - "stadium_canonical_id": "stadium_nwsl_providence_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250810_no_lac", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-10T20:00:00Z", + "season": "2025", + "date": "2025-08-10", + "time": "1p", + "home_team": "Los Angeles Chargers", + "away_team": "New Orleans Saints", + "home_team_abbrev": "LAC", + "away_team_abbrev": "NO", "home_team_canonical_id": "team_nfl_lac", "away_team_canonical_id": "team_nfl_no", + "venue": "SoFi Stadium", "stadium_canonical_id": "stadium_nfl_sofi_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250810_wsn_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-10T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250810_col_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-10T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250810_bos_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-10T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250810_tor_lad_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-10T20:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250810_tbr_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-10T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250810_clt_cin", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-10T22:00:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_clt", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250810_col_min", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-10T22:00:00Z", - "home_team_canonical_id": "team_mls_min", - "away_team_canonical_id": "team_mls_col", - "stadium_canonical_id": "stadium_mls_allianz_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250810_slc_ny", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-10T22:00:00Z", - "home_team_canonical_id": "team_mls_ny", - "away_team_canonical_id": "team_mls_slc", - "stadium_canonical_id": "stadium_mls_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250810_atl_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-10T22:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250810_chc_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-10T23:10:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250811_mia_orl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-11T00:00:00Z", - "home_team_canonical_id": "team_mls_orl", - "away_team_canonical_id": "team_mls_mia", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250811_sea_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-11T00:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250811_con_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-11T01:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250811_sea_lag", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-11T02:00:00Z", - "home_team_canonical_id": "team_mls_lag", - "away_team_canonical_id": "team_mls_sea", - "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250811_phi_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-11T22:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250811_min_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-11T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250811_wsn_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-11T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250811_det_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-11T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250811_pit_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-11T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250811_col_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-11T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250812_ari_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-12T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250812_bos_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-12T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250812_lad_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-12T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250812_sd_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-12T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250812_con_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-12T02:00:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250812_tbr_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-12T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250812_sea_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-12T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250812_phi_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-12T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250812_mia_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-12T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250812_min_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-12T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250812_chc_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-12T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250812_atl_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-12T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250812_dal_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-12T23:30:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250812_wsn_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-12T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250812_det_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-12T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250812_pit_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-12T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250812_col_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-12T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250813_ari_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-13T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250813_bos_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-13T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250813_lad_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-13T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250813_sd_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-13T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250813_ny_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-13T02:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250813_tbr_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-13T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250813_wsn_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-13T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250813_det_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-13T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250813_pit_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-13T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250813_col_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-13T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250813_ari_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-13T18:35:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250813_sd_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-13T19:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250813_phi_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-13T21:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250813_sea_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-13T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250813_mia_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-13T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250813_chi_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-13T23:00:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250813_min_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-13T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250813_chc_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-13T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250813_bos_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-13T23:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250813_atl_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-13T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250813_gsv_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-13T23:30:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250814_ny_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-14T01:30:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250814_lad_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-14T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250814_atl_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-14T02:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250814_tbr_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-14T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250814_sea_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-14T17:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250814_chc_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-14T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250814_mia_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-14T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250814_phi_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-14T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250814_atl_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-14T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250814_det_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-14T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250815_ari_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-15T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250815_pit_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-15T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250815_mil_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-15T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250815_phi_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-15T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250815_ten_atl", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-15T23:00:00Z", - "home_team_canonical_id": "team_nfl_atl", - "away_team_canonical_id": "team_nfl_ten", - "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250815_ten_atl", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-15T23:00:00Z", + "season": "2025", + "date": "2025-08-15", + "time": "7p", + "home_team": "Atlanta Falcons", + "away_team": "Tennessee Titans", + "home_team_abbrev": "ATL", + "away_team_abbrev": "TEN", "home_team_canonical_id": "team_nfl_atl", "away_team_canonical_id": "team_nfl_ten", + "venue": "Mercedes-Benz Stadium", "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250815_tex_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-15T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250815_sea_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-15T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250815_atl_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-15T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250815_mia_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-15T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250815_was_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-15T23:30:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250815_gsv_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-15T23:30:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250815_la_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-15T23:30:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250816_rgn_wsh", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-16T00:00:00Z", - "home_team_canonical_id": "team_nwsl_wsh", - "away_team_canonical_id": "team_nwsl_rgn", - "stadium_canonical_id": "stadium_nwsl_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250816_bal_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-16T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250816_det_min_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-16T00:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250816_chw_kc_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-16T00:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250816_nyy_stl_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-16T00:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250816_ari_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-16T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250816_kc_sea", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-16T02:00:00Z", - "home_team_canonical_id": "team_nfl_sea", - "away_team_canonical_id": "team_nfl_kc", - "stadium_canonical_id": "stadium_nfl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250816_sea_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-16T02:00:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250816_lv_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-16T02:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250816_ang_uta", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-16T02:00:00Z", - "home_team_canonical_id": "team_nwsl_uta", - "away_team_canonical_id": "team_nwsl_ang", - "stadium_canonical_id": "stadium_nwsl_america_first_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250816_kc_sea", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-16T02:00:00Z", + "season": "2025", + "date": "2025-08-15", + "time": "7p", + "home_team": "Seattle Seahawks", + "away_team": "Kansas City Chiefs", + "home_team_abbrev": "SEA", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_nfl_sea", "away_team_canonical_id": "team_nfl_kc", + "venue": "Lumen Field", "stadium_canonical_id": "stadium_nfl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250816_laa_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-16T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250816_sd_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-16T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250816_tbr_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-16T02:15:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250816_mia_det", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-16T17:00:00Z", - "home_team_canonical_id": "team_nfl_det", - "away_team_canonical_id": "team_nfl_mia", - "stadium_canonical_id": "stadium_nfl_ford_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250816_gb_ind", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-16T17:00:00Z", - "home_team_canonical_id": "team_nfl_ind", - "away_team_canonical_id": "team_nfl_gb", - "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250816_ne_min", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-16T17:00:00Z", - "home_team_canonical_id": "team_nfl_min", - "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_us_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250816_cle_phi", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-16T17:00:00Z", - "home_team_canonical_id": "team_nfl_phi", - "away_team_canonical_id": "team_nfl_cle", - "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250816_car_hou", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-16T17:00:00Z", - "home_team_canonical_id": "team_nfl_hou", - "away_team_canonical_id": "team_nfl_car", - "stadium_canonical_id": "stadium_nfl_nrg_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250816_ne_min", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-16T17:00:00Z", - "home_team_canonical_id": "team_nfl_min", - "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_us_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250816_mia_det", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-16T17:00:00Z", - "home_team_canonical_id": "team_nfl_det", - "away_team_canonical_id": "team_nfl_mia", - "stadium_canonical_id": "stadium_nfl_ford_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250816_gb_ind", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-16T17:00:00Z", + "season": "2025", + "date": "2025-08-16", + "time": "1p", + "home_team": "Indianapolis Colts", + "away_team": "Green Bay Packers", + "home_team_abbrev": "IND", + "away_team_abbrev": "GB", "home_team_canonical_id": "team_nfl_ind", "away_team_canonical_id": "team_nfl_gb", + "venue": "Lucas Oil Stadium", "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20250816_ne_min", + "sport": "NFL", + "season": "2025", + "date": "2025-08-16", + "time": "12p", + "home_team": "Minnesota Vikings", + "away_team": "New England Patriots", + "home_team_abbrev": "MIN", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_nfl_min", + "away_team_canonical_id": "team_nfl_ne", + "venue": "U.S. Bank Stadium", + "stadium_canonical_id": "stadium_nfl_us_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250816_cle_phi", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-16T17:00:00Z", + "season": "2025", + "date": "2025-08-16", + "time": "1p", + "home_team": "Philadelphia Eagles", + "away_team": "Cleveland Browns", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nfl_phi", "away_team_canonical_id": "team_nfl_cle", + "venue": "Lincoln Financial Field", "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20250816_mia_det", + "sport": "NFL", + "season": "2025", + "date": "2025-08-16", + "time": "1p", + "home_team": "Detroit Lions", + "away_team": "Miami Dolphins", + "home_team_abbrev": "DET", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nfl_det", + "away_team_canonical_id": "team_nfl_mia", + "venue": "Ford Field", + "stadium_canonical_id": "stadium_nfl_ford_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250816_car_hou", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-16T17:00:00Z", + "season": "2025", + "date": "2025-08-16", + "time": "12p", + "home_team": "Houston Texans", + "away_team": "Carolina Panthers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nfl_hou", "away_team_canonical_id": "team_nfl_car", + "venue": "NRG Stadium", "stadium_canonical_id": "stadium_nfl_nrg_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250816_ny_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-16T18:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250816_pit_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-16T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250816_tex_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-16T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250816_phi_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-16T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250816_sf_lv", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-16T20:05:00Z", - "home_team_canonical_id": "team_nfl_lv", - "away_team_canonical_id": "team_nfl_sf", - "stadium_canonical_id": "stadium_nfl_allegiant_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250816_sf_lv", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-16T20:05:00Z", + "season": "2025", + "date": "2025-08-16", + "time": "1:05p", + "home_team": "Las Vegas Raiders", + "away_team": "San Francisco 49ers", + "home_team_abbrev": "LV", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_nfl_lv", "away_team_canonical_id": "team_nfl_sf", + "venue": "Allegiant Stadium", "stadium_canonical_id": "stadium_nfl_allegiant_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250816_sea_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-16T20:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250816_mia_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-16T20:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250816_mil_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-16T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250816_bal_dal", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-16T23:00:00Z", - "home_team_canonical_id": "team_nfl_dal", - "away_team_canonical_id": "team_nfl_bal", - "stadium_canonical_id": "stadium_nfl_att_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250816_lac_lar", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-16T23:00:00Z", - "home_team_canonical_id": "team_nfl_lar", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250816_nyj_nyg", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-16T23:00:00Z", - "home_team_canonical_id": "team_nfl_nyg", - "away_team_canonical_id": "team_nfl_nyj", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250816_tb_pit", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-16T23:00:00Z", - "home_team_canonical_id": "team_nfl_pit", - "away_team_canonical_id": "team_nfl_tb", - "stadium_canonical_id": "stadium_nfl_acrisure_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250816_tb_pit", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-16T23:00:00Z", + "season": "2025", + "date": "2025-08-16", + "time": "7p", + "home_team": "Pittsburgh Steelers", + "away_team": "Tampa Bay Buccaneers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_nfl_pit", "away_team_canonical_id": "team_nfl_tb", + "venue": "Acrisure Stadium", "stadium_canonical_id": "stadium_nfl_acrisure_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250816_nyj_nyg", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-16T23:00:00Z", - "home_team_canonical_id": "team_nfl_nyg", - "away_team_canonical_id": "team_nfl_nyj", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250816_lac_lar", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-16T23:00:00Z", - "home_team_canonical_id": "team_nfl_lar", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250816_bal_dal", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-16T23:00:00Z", + "season": "2025", + "date": "2025-08-16", + "time": "6p", + "home_team": "Dallas Cowboys", + "away_team": "Baltimore Ravens", + "home_team_abbrev": "DAL", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_nfl_dal", "away_team_canonical_id": "team_nfl_bal", + "venue": "AT&T Stadium", "stadium_canonical_id": "stadium_nfl_att_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20250816_bal_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-16T23:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250816_chw_kc_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-16T23:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250816_atl_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-16T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250816_det_min_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-16T23:15:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250816_nyy_stl_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-16T23:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250816_orl_kcc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-16T23:28:00Z", - "home_team_canonical_id": "team_nwsl_kcc", - "away_team_canonical_id": "team_nwsl_orl", - "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250816_dc_mtl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-16T23:30:00Z", - "home_team_canonical_id": "team_mls_mtl", - "away_team_canonical_id": "team_mls_dc", - "stadium_canonical_id": "stadium_mls_stade_saputo", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250816_slc_clt", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-16T23:30:00Z", - "home_team_canonical_id": "team_mls_clt", - "away_team_canonical_id": "team_mls_slc", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250816_lag_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-16T23:30:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_lag", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250816_lafc_ne", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-16T23:30:00Z", - "home_team_canonical_id": "team_mls_ne", - "away_team_canonical_id": "team_mls_lafc", - "stadium_canonical_id": "stadium_mls_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250816_phi_ny", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-16T23:30:00Z", - "home_team_canonical_id": "team_mls_ny", - "away_team_canonical_id": "team_mls_phi", - "stadium_canonical_id": "stadium_mls_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250816_clb_tor", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-16T23:30:00Z", - "home_team_canonical_id": "team_mls_tor", - "away_team_canonical_id": "team_mls_clb", - "stadium_canonical_id": "stadium_mls_bmo_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250816_por_ncc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-16T23:30:00Z", - "home_team_canonical_id": "team_nwsl_ncc", - "away_team_canonical_id": "team_nwsl_por", - "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250817_ari_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-17T00:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250817_dal_aus", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-17T00:30:00Z", - "home_team_canonical_id": "team_mls_aus", - "away_team_canonical_id": "team_mls_dal", - "stadium_canonical_id": "stadium_mls_q2_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250817_sea_min", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-17T00:30:00Z", - "home_team_canonical_id": "team_mls_min", - "away_team_canonical_id": "team_mls_sea", - "stadium_canonical_id": "stadium_mls_allianz_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250817_tbr_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-17T01:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250817_sd_lad_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-17T01:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250817_ari_den", + "canonical_id": "game_nfl_2026_20250816_lac_lar", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-08-17T01:30:00Z", - "home_team_canonical_id": "team_nfl_den", - "away_team_canonical_id": "team_nfl_ari", - "stadium_canonical_id": "stadium_nfl_empower_field", + "date": "2025-08-16", + "time": "4p", + "home_team": "Los Angeles Rams", + "away_team": "Los Angeles Chargers", + "home_team_abbrev": "LAR", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nfl_lar", + "away_team_canonical_id": "team_nfl_lac", + "venue": "SoFi Stadium", + "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mls_2025_20250817_atl_col", - "sport": "MLS", + "canonical_id": "game_nfl_2026_20250816_nyj_nyg", + "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-08-17T01:30:00Z", - "home_team_canonical_id": "team_mls_col", - "away_team_canonical_id": "team_mls_atl", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "date": "2025-08-16", + "time": "7p", + "home_team": "New York Giants", + "away_team": "New York Jets", + "home_team_abbrev": "NYG", + "away_team_abbrev": "NYJ", + "home_team_canonical_id": "team_nfl_nyg", + "away_team_canonical_id": "team_nfl_nyj", + "venue": "MetLife Stadium", + "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250817_ari_den", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-17T01:30:00Z", + "season": "2025", + "date": "2025-08-16", + "time": "7:30p", + "home_team": "Denver Broncos", + "away_team": "Arizona Cardinals", + "home_team_abbrev": "DEN", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_nfl_den", "away_team_canonical_id": "team_nfl_ari", - "stadium_canonical_id": "stadium_nfl_empower_field_at_mile_high", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250817_sdw_bay", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-17T02:00:00Z", - "home_team_canonical_id": "team_nwsl_bay", - "away_team_canonical_id": "team_nwsl_sdw", - "stadium_canonical_id": "stadium_nwsl_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250817_stl_chi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-17T02:02:00Z", - "home_team_canonical_id": "team_mls_chi", - "away_team_canonical_id": "team_mls_stl", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250817_laa_oak_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-17T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250817_cin_por", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-17T02:30:00Z", - "home_team_canonical_id": "team_mls_por", - "away_team_canonical_id": "team_mls_cin", - "stadium_canonical_id": "stadium_mls_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250817_skc_orl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-17T02:43:00Z", - "home_team_canonical_id": "team_mls_orl", - "away_team_canonical_id": "team_mls_skc", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250817_phi_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-17T15:35:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250817_jax_no", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-17T17:00:00Z", - "home_team_canonical_id": "team_nfl_no", - "away_team_canonical_id": "team_nfl_jax", - "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250817_ind_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-17T17:00:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "venue": "Empower Field at Mile High", + "stadium_canonical_id": "stadium_nfl_empower_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250817_jax_no", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-17T17:00:00Z", + "season": "2025", + "date": "2025-08-17", + "time": "12p", + "home_team": "New Orleans Saints", + "away_team": "Jacksonville Jaguars", + "home_team_abbrev": "NO", + "away_team_abbrev": "JAX", "home_team_canonical_id": "team_nfl_no", "away_team_canonical_id": "team_nfl_jax", + "venue": "Caesars Superdome", "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250817_mia_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-17T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250817_tex_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-17T17:37:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250817_atl_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-17T17:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250817_mil_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-17T17:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250817_bal_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-17T18:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250817_det_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-17T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250817_chw_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-17T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250817_nyy_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-17T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250817_pit_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-17T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250817_la_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-17T19:00:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250817_ari_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-17T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250817_dal_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-17T19:30:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250817_hou_njy", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-17T20:00:00Z", - "home_team_canonical_id": "team_nwsl_njy", - "away_team_canonical_id": "team_nwsl_hou", - "stadium_canonical_id": "stadium_nwsl_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250817_tbr_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-17T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250817_laa_oak_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-17T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250817_sd_lad_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-17T20:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250817_nsh_nyc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-17T21:00:00Z", - "home_team_canonical_id": "team_mls_nyc", - "away_team_canonical_id": "team_mls_nsh", - "stadium_canonical_id": "stadium_mls_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250817_phx_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-17T22:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250817_sd_sj", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-17T23:00:00Z", - "home_team_canonical_id": "team_mls_sj", - "away_team_canonical_id": "team_mls_sd", - "stadium_canonical_id": "stadium_mls_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250817_sea_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-17T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_journey_bank_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250818_buf_chi", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-18T00:00:00Z", - "home_team_canonical_id": "team_nfl_chi", - "away_team_canonical_id": "team_nfl_buf", - "stadium_canonical_id": "stadium_nfl_soldier_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250818_buf_chi", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-18T00:00:00Z", + "season": "2025", + "date": "2025-08-17", + "time": "7p", + "home_team": "Chicago Bears", + "away_team": "Buffalo Bills", + "home_team_abbrev": "CHI", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nfl_chi", "away_team_canonical_id": "team_nfl_buf", + "venue": "Soldier Field", "stadium_canonical_id": "stadium_nfl_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250818_atl_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-18T00:30:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250818_hou_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-18T01:00:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_hou", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250818_mil_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-18T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250818_hou_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-18T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250818_tor_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-18T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250818_stl_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-18T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250818_sea_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-18T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250818_bal_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-18T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250818_chw_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-18T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250818_tex_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-18T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250819_cin_was", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-19T00:00:00Z", - "home_team_canonical_id": "team_nfl_was", - "away_team_canonical_id": "team_nfl_cin", - "stadium_canonical_id": "stadium_nfl_northwest_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250819_cin_was", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-19T00:00:00Z", + "season": "2025", + "date": "2025-08-18", + "time": "8p", + "home_team": "Washington Commanders", + "away_team": "Cincinnati Bengals", + "home_team_abbrev": "WAS", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_nfl_was", "away_team_canonical_id": "team_nfl_cin", + "venue": "Northwest Stadium", "stadium_canonical_id": "stadium_nfl_northwest_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250819_mil_chc_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-19T00:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250819_lad_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-19T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250819_cin_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-19T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250819_cle_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-19T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250819_sf_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-19T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250819_chi_sea", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-19T02:00:00Z", - "home_team_canonical_id": "team_nwsl_sea", - "away_team_canonical_id": "team_nwsl_chi", - "stadium_canonical_id": "stadium_nwsl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250819_mil_chc_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-19T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250819_hou_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-19T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250819_tor_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-19T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250819_stl_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-19T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250819_nym_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-19T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250819_sea_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-19T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250819_min_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-19T23:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250819_bal_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-19T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250819_chw_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-19T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250819_con_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-19T23:30:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250819_nyy_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-19T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250819_tex_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-19T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250819_oak_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-19T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250820_sea_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-20T00:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250820_mil_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-20T00:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250820_lad_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-20T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250820_cin_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-20T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250820_cle_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-20T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250820_sf_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-20T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250820_atl_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-20T02:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250820_phx_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-20T02:00:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250820_tor_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-20T16:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250820_sea_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-20T17:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250820_hou_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-20T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250820_cle_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-20T19:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250820_stl_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-20T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250820_nym_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-20T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250820_chw_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-20T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250820_nyy_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-20T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250820_tex_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-20T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250820_oak_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-20T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250821_mil_chc_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-21T00:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250821_lad_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-21T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250821_cin_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-21T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250821_sf_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-21T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250821_dal_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-21T02:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250821_oak_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-21T17:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250821_tex_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-21T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250821_mil_chc_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-21T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250821_lad_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-21T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250821_nym_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-21T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250821_sf_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-21T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250821_pit_car", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-21T23:00:00Z", - "home_team_canonical_id": "team_nfl_car", - "away_team_canonical_id": "team_nfl_pit", - "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250821_was_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-21T23:00:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250821_chi_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-21T23:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250821_pit_car", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-21T23:00:00Z", + "season": "2025", + "date": "2025-08-21", + "time": "7p", + "home_team": "Carolina Panthers", + "away_team": "Pittsburgh Steelers", + "home_team_abbrev": "CAR", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_nfl_car", "away_team_canonical_id": "team_nfl_pit", + "venue": "Bank of America Stadium", "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250821_hou_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-21T23:15:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250821_bos_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-21T23:15:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250821_min_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-21T23:30:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250821_stl_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-21T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250822_ne_nyg", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-22T00:00:00Z", - "home_team_canonical_id": "team_nfl_nyg", - "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250822_ne_nyg", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-22T00:00:00Z", + "season": "2025", + "date": "2025-08-21", + "time": "8p", + "home_team": "New York Giants", + "away_team": "New England Patriots", + "home_team_abbrev": "NYG", + "away_team_abbrev": "NE", "home_team_canonical_id": "team_nfl_nyg", "away_team_canonical_id": "team_nfl_ne", + "venue": "MetLife Stadium", "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250822_phx_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-22T02:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250822_orl_ang", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-22T02:30:00Z", - "home_team_canonical_id": "team_nwsl_ang", - "away_team_canonical_id": "team_nwsl_orl", - "stadium_canonical_id": "stadium_nwsl_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250822_col_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-22T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250822_wsn_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-22T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250822_hou_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-22T23:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250822_bos_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-22T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250822_kc_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-22T23:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250822_tor_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-22T23:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250822_nym_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-22T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250822_phi_nyj", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-22T23:30:00Z", - "home_team_canonical_id": "team_nfl_nyj", - "away_team_canonical_id": "team_nfl_phi", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250822_min_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-22T23:30:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250822_sea_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-22T23:30:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250822_phi_nyj", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-22T23:30:00Z", + "season": "2025", + "date": "2025-08-22", + "time": "7:30p", + "home_team": "New York Jets", + "away_team": "Philadelphia Eagles", + "home_team_abbrev": "NYJ", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nfl_nyj", "away_team_canonical_id": "team_nfl_phi", + "venue": "MetLife Stadium", "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250822_stl_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-22T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250822_min_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-22T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250823_atl_dal", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-23T00:00:00Z", - "home_team_canonical_id": "team_nfl_dal", - "away_team_canonical_id": "team_nfl_atl", - "stadium_canonical_id": "stadium_nfl_att_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250823_min_ten", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-23T00:00:00Z", - "home_team_canonical_id": "team_nfl_ten", - "away_team_canonical_id": "team_nfl_min", - "stadium_canonical_id": "stadium_nfl_nissan_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250823_ncc_chi", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-23T00:00:00Z", - "home_team_canonical_id": "team_nwsl_chi", - "away_team_canonical_id": "team_nwsl_ncc", - "stadium_canonical_id": "stadium_nwsl_seatgeek_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250823_min_ten", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-23T00:00:00Z", + "season": "2025", + "date": "2025-08-22", + "time": "7p", + "home_team": "Tennessee Titans", + "away_team": "Minnesota Vikings", + "home_team_abbrev": "TEN", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nfl_ten", "away_team_canonical_id": "team_nfl_min", + "venue": "Nissan Stadium", "stadium_canonical_id": "stadium_nfl_nissan_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250823_atl_dal", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-23T00:00:00Z", + "season": "2025", + "date": "2025-08-22", + "time": "7p", + "home_team": "Dallas Cowboys", + "away_team": "Atlanta Falcons", + "home_team_abbrev": "DAL", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nfl_dal", "away_team_canonical_id": "team_nfl_atl", + "venue": "AT&T Stadium", "stadium_canonical_id": "stadium_nfl_att_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250823_cle_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-23T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250823_sf_mil_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-23T00:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250823_chi_kc", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-23T00:20:00Z", - "home_team_canonical_id": "team_nfl_kc", - "away_team_canonical_id": "team_nfl_chi", - "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250823_chi_kc", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-23T00:20:00Z", + "season": "2025", + "date": "2025-08-22", + "time": "7:20p", + "home_team": "Kansas City Chiefs", + "away_team": "Chicago Bears", + "home_team_abbrev": "KC", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nfl_kc", "away_team_canonical_id": "team_nfl_chi", + "venue": "Arrowhead Stadium", "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250823_chc_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-23T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250823_cin_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-23T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250823_lad_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-23T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250823_gsv_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-23T02:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250823_oak_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-23T02:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250823_bal_was", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-23T16:00:00Z", - "home_team_canonical_id": "team_nfl_was", - "away_team_canonical_id": "team_nfl_bal", - "stadium_canonical_id": "stadium_nfl_northwest_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250823_bal_was", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-23T16:00:00Z", + "season": "2025", + "date": "2025-08-23", + "time": "12p", + "home_team": "Washington Commanders", + "away_team": "Baltimore Ravens", + "home_team_abbrev": "WAS", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_nfl_was", "away_team_canonical_id": "team_nfl_bal", + "venue": "Northwest Stadium", "stadium_canonical_id": "stadium_nfl_northwest_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250823_ind_cin", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-23T17:00:00Z", - "home_team_canonical_id": "team_nfl_cin", - "away_team_canonical_id": "team_nfl_ind", - "stadium_canonical_id": "stadium_nfl_paycor_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250823_lar_cle", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-23T17:00:00Z", - "home_team_canonical_id": "team_nfl_cle", - "away_team_canonical_id": "team_nfl_lar", - "stadium_canonical_id": "stadium_nfl_huntington_bank_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250823_hou_det", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-23T17:00:00Z", - "home_team_canonical_id": "team_nfl_det", - "away_team_canonical_id": "team_nfl_hou", - "stadium_canonical_id": "stadium_nfl_ford_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250823_den_no", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-23T17:00:00Z", - "home_team_canonical_id": "team_nfl_no", - "away_team_canonical_id": "team_nfl_den", - "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250823_lar_cle", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-23T17:00:00Z", - "home_team_canonical_id": "team_nfl_cle", - "away_team_canonical_id": "team_nfl_lar", - "stadium_canonical_id": "stadium_nfl_huntington_bank_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250823_ind_cin", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-23T17:00:00Z", - "home_team_canonical_id": "team_nfl_cin", - "away_team_canonical_id": "team_nfl_ind", - "stadium_canonical_id": "stadium_nfl_paycor_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250823_hou_det", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-23T17:00:00Z", + "season": "2025", + "date": "2025-08-23", + "time": "1p", + "home_team": "Detroit Lions", + "away_team": "Houston Texans", + "home_team_abbrev": "DET", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nfl_det", "away_team_canonical_id": "team_nfl_hou", + "venue": "Ford Field", "stadium_canonical_id": "stadium_nfl_ford_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20250823_ind_cin", + "sport": "NFL", + "season": "2025", + "date": "2025-08-23", + "time": "1p", + "home_team": "Cincinnati Bengals", + "away_team": "Indianapolis Colts", + "home_team_abbrev": "CIN", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nfl_cin", + "away_team_canonical_id": "team_nfl_ind", + "venue": "Paycor Stadium", + "stadium_canonical_id": "stadium_nfl_paycor_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20250823_lar_cle", + "sport": "NFL", + "season": "2025", + "date": "2025-08-23", + "time": "1p", + "home_team": "Cleveland Browns", + "away_team": "Los Angeles Rams", + "home_team_abbrev": "CLE", + "away_team_abbrev": "LAR", + "home_team_canonical_id": "team_nfl_cle", + "away_team_canonical_id": "team_nfl_lar", + "venue": "Huntington Bank Field", + "stadium_canonical_id": "stadium_nfl_huntington_bank_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250823_den_no", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-23T17:00:00Z", + "season": "2025", + "date": "2025-08-23", + "time": "12p", + "home_team": "New Orleans Saints", + "away_team": "Denver Broncos", + "home_team_abbrev": "NO", + "away_team_abbrev": "DEN", "home_team_canonical_id": "team_nfl_no", "away_team_canonical_id": "team_nfl_den", + "venue": "Caesars Superdome", "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250823_bos_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-23T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250823_ny_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-23T18:00:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250823_lv_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-23T19:00:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250823_sea_gb", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-23T20:00:00Z", - "home_team_canonical_id": "team_nfl_gb", - "away_team_canonical_id": "team_nfl_sea", - "stadium_canonical_id": "stadium_nfl_lambeau_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250823_con_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-23T20:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250823_wsh_bay", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-23T20:00:00Z", - "home_team_canonical_id": "team_nwsl_bay", - "away_team_canonical_id": "team_nwsl_wsh", - "stadium_canonical_id": "stadium_nwsl_oracle_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250823_sea_gb", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-23T20:00:00Z", + "season": "2025", + "date": "2025-08-23", + "time": "3p", + "home_team": "Green Bay Packers", + "away_team": "Seattle Seahawks", + "home_team_abbrev": "GB", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_nfl_gb", "away_team_canonical_id": "team_nfl_sea", + "venue": "Lambeau Field", "stadium_canonical_id": "stadium_nfl_lambeau_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250823_tor_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-23T20:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250823_wsn_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-23T22:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250823_kc_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-23T22:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250823_col_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-23T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250823_jax_mia", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-23T23:00:00Z", - "home_team_canonical_id": "team_nfl_mia", - "away_team_canonical_id": "team_nfl_jax", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250823_jax_mia", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-23T23:00:00Z", + "season": "2025", + "date": "2025-08-23", + "time": "7p", + "home_team": "Miami Dolphins", + "away_team": "Jacksonville Jaguars", + "home_team_abbrev": "MIA", + "away_team_abbrev": "JAX", "home_team_canonical_id": "team_nfl_mia", "away_team_canonical_id": "team_nfl_jax", + "venue": "Hard Rock Stadium", "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250823_cle_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-23T23:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250823_hou_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-23T23:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250823_sf_mil_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-23T23:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250823_min_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-23T23:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250823_nym_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-23T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250823_buf_tb", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-23T23:30:00Z", - "home_team_canonical_id": "team_nfl_tb", - "away_team_canonical_id": "team_nfl_buf", - "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250823_aus_mtl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-23T23:30:00Z", - "home_team_canonical_id": "team_mls_mtl", - "away_team_canonical_id": "team_mls_aus", - "stadium_canonical_id": "stadium_mls_stade_saputo", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250823_ne_clb", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-23T23:30:00Z", - "home_team_canonical_id": "team_mls_clb", - "away_team_canonical_id": "team_mls_ne", - "stadium_canonical_id": "stadium_mls_lowercom_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250823_mia_dc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-23T23:30:00Z", - "home_team_canonical_id": "team_mls_dc", - "away_team_canonical_id": "team_mls_mia", - "stadium_canonical_id": "stadium_mls_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250823_nyc_cin", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-23T23:30:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250823_chi_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-23T23:30:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_chi", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250823_uta_njy", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-23T23:30:00Z", - "home_team_canonical_id": "team_nwsl_njy", - "away_team_canonical_id": "team_nwsl_uta", - "stadium_canonical_id": "stadium_nwsl_red_bull_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250823_buf_tb", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-23T23:30:00Z", + "season": "2025", + "date": "2025-08-23", + "time": "7:30p", + "home_team": "Tampa Bay Buccaneers", + "away_team": "Buffalo Bills", + "home_team_abbrev": "TB", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nfl_tb", "away_team_canonical_id": "team_nfl_buf", + "venue": "Raymond James Stadium", "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250824_cin_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-24T00:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250824_lac_sf", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-24T00:30:00Z", - "home_team_canonical_id": "team_nfl_sf", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "stadium_nfl_levis_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250824_lafc_dal", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-24T00:30:00Z", - "home_team_canonical_id": "team_mls_dal", - "away_team_canonical_id": "team_mls_lafc", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250824_sj_hou", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-24T00:30:00Z", - "home_team_canonical_id": "team_mls_hou", - "away_team_canonical_id": "team_mls_sj", - "stadium_canonical_id": "stadium_mls_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250824_orl_nsh", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-24T00:30:00Z", - "home_team_canonical_id": "team_mls_nsh", - "away_team_canonical_id": "team_mls_orl", - "stadium_canonical_id": "stadium_mls_geodis_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250824_lac_sf", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-24T00:30:00Z", + "season": "2025", + "date": "2025-08-23", + "time": "5:30p", + "home_team": "San Francisco 49ers", + "away_team": "Los Angeles Chargers", + "home_team_abbrev": "SF", + "away_team_abbrev": "LAC", "home_team_canonical_id": "team_nfl_sf", "away_team_canonical_id": "team_nfl_lac", + "venue": "Levi's Stadium", "stadium_canonical_id": "stadium_nfl_levis_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250824_lad_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-24T00:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250824_min_slc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-24T01:30:00Z", - "home_team_canonical_id": "team_mls_slc", - "away_team_canonical_id": "team_mls_min", - "stadium_canonical_id": "stadium_mls_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250824_stl_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-24T01:30:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_stl", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250824_chc_laa_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-24T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250824_oak_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-24T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250824_lv_ari", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-08-24T02:00:00Z", - "home_team_canonical_id": "team_nfl_ari", - "away_team_canonical_id": "team_nfl_lv", - "stadium_canonical_id": "stadium_nfl_state_farm_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250824_kcc_por", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-24T02:00:00Z", - "home_team_canonical_id": "team_nwsl_por", - "away_team_canonical_id": "team_nwsl_kcc", - "stadium_canonical_id": "stadium_nwsl_providence_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250824_lv_ari", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-08-24T02:00:00Z", + "season": "2025", + "date": "2025-08-23", + "time": "7p", + "home_team": "Arizona Cardinals", + "away_team": "Las Vegas Raiders", + "home_team_abbrev": "ARI", + "away_team_abbrev": "LV", "home_team_canonical_id": "team_nfl_ari", "away_team_canonical_id": "team_nfl_lv", + "venue": "State Farm Stadium", "stadium_canonical_id": "stadium_nfl_state_farm_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250824_col_lag", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-24T02:30:00Z", - "home_team_canonical_id": "team_mls_lag", - "away_team_canonical_id": "team_mls_col", - "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250824_por_sd", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-24T02:30:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_por", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250824_col_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-24T16:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250824_stl_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-24T16:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250824_hou_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-24T17:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250824_wsn_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-24T17:35:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250824_nym_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-24T17:35:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250824_kc_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-24T17:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250824_tor_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-24T17:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250824_min_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-24T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250824_sf_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-24T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250824_cle_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-24T18:35:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250824_sea_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-24T19:00:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250824_tor_atl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-24T20:00:00Z", - "home_team_canonical_id": "team_mls_atl", - "away_team_canonical_id": "team_mls_tor", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250824_gsv_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-24T20:00:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250824_chc_laa_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-24T20:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250824_cin_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-24T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250824_lad_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-24T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250824_oak_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-24T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250824_ny_clt", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-24T23:00:00Z", - "home_team_canonical_id": "team_mls_clt", - "away_team_canonical_id": "team_mls_ny", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250824_ind_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-24T23:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250824_bos_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-24T23:10:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250824_sea_hou", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-24T23:20:00Z", - "home_team_canonical_id": "team_nwsl_hou", - "away_team_canonical_id": "team_nwsl_sea", - "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250825_rgn_sdw", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-25T00:00:00Z", - "home_team_canonical_id": "team_nwsl_sdw", - "away_team_canonical_id": "team_nwsl_rgn", - "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250825_skc_sea", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-25T01:15:00Z", - "home_team_canonical_id": "team_mls_sea", - "away_team_canonical_id": "team_mls_skc", - "stadium_canonical_id": "stadium_mls_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250825_bos_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-25T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250825_tbr_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-25T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250825_atl_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-25T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250825_con_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-25T23:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250825_wsn_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-25T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250825_min_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-25T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250825_phi_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-25T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250825_kc_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-25T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250825_ari_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-25T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250825_pit_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-25T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250826_lv_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-26T00:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250826_laa_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-26T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250826_sd_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-26T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250826_det_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-26T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250826_cin_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-26T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250826_bos_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-26T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250826_tbr_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-26T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250826_atl_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-26T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250826_sea_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-26T23:00:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250826_wsn_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-26T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250826_min_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-26T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250826_phi_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-26T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250826_kc_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-26T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250826_ari_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-26T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250826_pit_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-26T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250827_laa_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-27T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250827_col_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-27T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250827_sd_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-27T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250827_chc_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-27T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250827_phx_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-27T02:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250827_det_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-27T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250827_cin_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-27T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250827_wsn_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-27T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250827_tbr_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-27T17:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250827_atl_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-27T17:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250827_sd_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-27T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250827_bos_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-27T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250827_min_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-27T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250827_phi_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-27T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250827_lv_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-27T23:30:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250827_kc_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-27T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250827_ari_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-27T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250827_pit_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-27T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250828_con_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-28T00:00:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250828_laa_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-28T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250828_col_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-28T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250828_cin_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-28T00:40:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250828_chc_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-28T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250828_det_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-28T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250828_bos_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-28T17:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250828_col_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-28T18:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250828_ari_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-28T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250828_pit_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-28T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250828_chc_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-28T19:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250828_atl_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-28T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250828_was_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-28T23:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250828_mia_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-28T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250828_nyy_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-28T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250829_sea_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-29T00:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250829_chi_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-29T02:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250829_stl_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-29T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250829_tbr_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-29T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250829_atl_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-29T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250829_mil_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-29T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250829_pit_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-29T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250829_sea_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-29T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250829_mia_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-29T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250829_dal_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-29T23:30:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250829_hou_rgn", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-29T23:30:00Z", - "home_team_canonical_id": "team_nwsl_rgn", - "away_team_canonical_id": "team_nwsl_hou", - "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250829_nyy_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-29T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250830_njy_orl", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-30T00:00:00Z", - "home_team_canonical_id": "team_nwsl_orl", - "away_team_canonical_id": "team_nwsl_njy", - "stadium_canonical_id": "stadium_nwsl_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250830_laa_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-30T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250830_det_kc_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-30T00:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250830_sd_min_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-30T00:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250830_chc_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-30T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250830_ind_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-30T02:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250830_tex_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-30T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250830_ari_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-30T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250830_bal_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-30T02:15:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250830_uta_por", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-30T02:30:00Z", - "home_team_canonical_id": "team_nwsl_por", - "away_team_canonical_id": "team_nwsl_uta", - "stadium_canonical_id": "stadium_nwsl_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250830_sdw_sea", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-30T02:30:00Z", - "home_team_canonical_id": "team_nwsl_sea", - "away_team_canonical_id": "team_nwsl_sdw", - "stadium_canonical_id": "stadium_nwsl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250830_mil_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-30T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250830_tbr_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-30T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250830_pit_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-30T20:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250830_mia_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-30T20:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250830_atl_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-30T22:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250830_stl_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-30T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250830_min_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-30T23:00:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250830_laa_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-30T23:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250830_sd_min_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-30T23:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250830_nyy_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-30T23:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250830_det_kc_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-30T23:15:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250830_bal_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-30T23:15:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250830_sea_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-30T23:15:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250830_phi_cin", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-30T23:30:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_phi", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250830_clt_ne", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-30T23:30:00Z", - "home_team_canonical_id": "team_mls_ne", - "away_team_canonical_id": "team_mls_clt", - "stadium_canonical_id": "stadium_mls_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250830_dc_nyc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-30T23:30:00Z", - "home_team_canonical_id": "team_mls_nyc", - "away_team_canonical_id": "team_mls_dc", - "stadium_canonical_id": "stadium_mls_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250830_clb_ny", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-30T23:30:00Z", - "home_team_canonical_id": "team_mls_ny", - "away_team_canonical_id": "team_mls_clb", - "stadium_canonical_id": "stadium_mls_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250830_mtl_tor", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-30T23:30:00Z", - "home_team_canonical_id": "team_mls_tor", - "away_team_canonical_id": "team_mls_mtl", - "stadium_canonical_id": "stadium_mls_bmo_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250830_ncc_kcc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-30T23:30:00Z", - "home_team_canonical_id": "team_nwsl_kcc", - "away_team_canonical_id": "team_nwsl_ncc", - "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250831_chc_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-31T00:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250831_sj_aus", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-31T00:30:00Z", - "home_team_canonical_id": "team_mls_aus", - "away_team_canonical_id": "team_mls_sj", - "stadium_canonical_id": "stadium_mls_q2_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250831_por_min", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-31T00:30:00Z", - "home_team_canonical_id": "team_mls_min", - "away_team_canonical_id": "team_mls_por", - "stadium_canonical_id": "stadium_mls_allianz_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250831_atl_nsh", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-31T00:30:00Z", - "home_team_canonical_id": "team_mls_nsh", - "away_team_canonical_id": "team_mls_atl", - "stadium_canonical_id": "stadium_mls_geodis_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250831_col_skc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-31T00:30:00Z", - "home_team_canonical_id": "team_mls_skc", - "away_team_canonical_id": "team_mls_col", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250831_hou_stl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-08-31T00:30:00Z", - "home_team_canonical_id": "team_mls_stl", - "away_team_canonical_id": "team_mls_hou", - "stadium_canonical_id": "stadium_mls_citypark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250831_was_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-31T00:30:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250831_chi_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-31T01:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250831_ari_lad_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-31T01:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250831_ny_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-08-31T02:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250831_tex_oak_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-31T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250831_stl_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-31T16:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250831_sd_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-31T17:05:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250831_pit_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-31T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250831_tbr_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-31T17:35:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250831_mil_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-31T17:37:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250831_sea_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-31T17:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250831_mia_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-31T17:40:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250831_laa_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-31T18:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250831_det_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-31T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250831_nyy_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-31T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250831_chc_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-31T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250831_chi_wsh", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-08-31T20:00:00Z", - "home_team_canonical_id": "team_nwsl_wsh", - "away_team_canonical_id": "team_nwsl_chi", - "stadium_canonical_id": "stadium_nwsl_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250831_tex_oak_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-31T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250831_bal_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-31T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250831_ari_lad_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-31T20:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250831_atl_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-08-31T23:10:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250901_was_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-01T00:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250901_ind_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-01T00:30:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250901_sd_lafc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-01T02:45:00Z", - "home_team_canonical_id": "team_mls_lafc", - "away_team_canonical_id": "team_mls_sd", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250901_atl_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-01T17:00:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250901_mia_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-01T17:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250901_nym_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-01T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250901_tor_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-01T17:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250901_cle_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-01T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250901_laa_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-01T18:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250901_chw_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-01T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250901_oak_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-01T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250901_atl_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-01T20:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250901_sf_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-01T20:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250901_phi_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-01T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250901_bal_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-01T22:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250901_sea_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-01T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250902_dal_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-02T00:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250902_tex_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-02T00:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250902_bay_ang", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-02T01:00:00Z", - "home_team_canonical_id": "team_nwsl_ang", - "away_team_canonical_id": "team_nwsl_bay", - "stadium_canonical_id": "stadium_nwsl_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250902_la_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-02T02:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250902_nym_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-02T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250902_lad_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-02T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250902_tor_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-02T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250902_cle_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-02T22:45:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250902_mia_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-02T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250902_sea_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-02T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250902_laa_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-02T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250902_atl_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-02T23:40:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250902_chw_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-02T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250902_oak_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-02T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250903_nyy_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-03T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250903_sf_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-03T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250903_bal_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-03T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250903_tex_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-03T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250903_ny_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-03T02:00:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250903_ind_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-03T02:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250903_mia_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-03T17:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250903_nym_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-03T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250903_tex_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-03T19:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250903_bal_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-03T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250903_lad_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-03T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250903_tor_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-03T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250903_cle_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-03T22:45:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250903_la_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-03T23:30:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250903_sea_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-03T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250903_laa_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-03T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250903_atl_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-03T23:40:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250903_chw_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-03T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250903_phi_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-03T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250903_oak_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-03T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250904_con_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-04T00:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250904_nyy_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-04T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250904_sf_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-04T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250904_phi_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-04T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250904_lad_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-04T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250904_phx_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-04T23:30:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250904_cle_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-04T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250904_nyy_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-04T23:40:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250904_laa_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-04T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250904_chw_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-04T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250905_dal_phi", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-05T00:20:00Z", - "home_team_canonical_id": "team_nfl_phi", - "away_team_canonical_id": "team_nfl_dal", - "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250905_dal_phi", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-05T00:20:00Z", + "season": "2025", + "date": "2025-09-04", + "time": "8:20p", + "home_team": "Philadelphia Eagles", + "away_team": "Dallas Cowboys", + "home_team_abbrev": "PHI", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nfl_phi", "away_team_canonical_id": "team_nfl_dal", + "venue": "Lincoln Financial Field", "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250905_dal_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-05T02:00:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250905_min_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-05T02:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250905_wsn_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-05T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250905_nym_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-05T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250905_chw_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-05T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250905_mil_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-05T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250905_lad_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-05T23:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250905_tor_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-05T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250905_phi_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-05T23:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250905_sea_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-05T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250905_la_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-05T23:30:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250905_chi_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-05T23:30:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250905_cle_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-05T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250905_min_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-05T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250906_kc_lac", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-06T00:00:00Z", - "home_team_canonical_id": "team_nfl_lac", - "away_team_canonical_id": "team_nfl_kc", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250906_por_rgn", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-06T00:00:00Z", - "home_team_canonical_id": "team_nwsl_rgn", - "away_team_canonical_id": "team_nwsl_por", - "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250906_kc_lac", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-06T00:00:00Z", + "season": "2025", + "date": "2025-09-05", + "time": "9p", + "home_team": "Los Angeles Chargers", + "away_team": "Kansas City Chiefs", + "home_team_abbrev": "LAC", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_nfl_lac", "away_team_canonical_id": "team_nfl_kc", + "venue": "Corinthians Arena", "stadium_canonical_id": "stadium_nfl_corinthians_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250906_hou_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-06T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250906_sf_stl_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-06T00:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250906_sd_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-06T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250906_oak_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-06T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250906_bos_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-06T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250906_ny_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-06T02:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250906_phx_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-06T17:00:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250906_tor_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-06T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250906_wsn_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-06T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250906_phi_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-06T20:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250906_chw_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-06T22:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250906_nym_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-06T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250906_mil_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-06T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250906_lad_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-06T23:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250906_cle_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-06T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250906_hou_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-06T23:15:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250906_sf_stl_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-06T23:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250906_min_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-06T23:15:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250906_sea_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-06T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250906_uta_ncc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-06T23:30:00Z", - "home_team_canonical_id": "team_nwsl_ncc", - "away_team_canonical_id": "team_nwsl_uta", - "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250907_bos_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-07T00:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250907_sd_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-07T00:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250907_ne_chi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-07T00:30:00Z", - "home_team_canonical_id": "team_mls_chi", - "away_team_canonical_id": "team_mls_ne", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250907_lag_hou", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-07T00:30:00Z", - "home_team_canonical_id": "team_mls_hou", - "away_team_canonical_id": "team_mls_lag", - "stadium_canonical_id": "stadium_mls_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250907_dal_stl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-07T00:30:00Z", - "home_team_canonical_id": "team_mls_stl", - "away_team_canonical_id": "team_mls_dal", - "stadium_canonical_id": "stadium_mls_citypark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250907_min_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-07T00:30:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250907_oak_laa_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-07T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250907_kcc_bay", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-07T02:00:00Z", - "home_team_canonical_id": "team_nwsl_bay", - "away_team_canonical_id": "team_nwsl_kcc", - "stadium_canonical_id": "stadium_nwsl_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250907_sea_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-07T16:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250907_cle_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-07T16:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250907_tb_atl", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-07T17:00:00Z", - "home_team_canonical_id": "team_nfl_atl", - "away_team_canonical_id": "team_nfl_tb", - "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250907_cin_cle", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-07T17:00:00Z", - "home_team_canonical_id": "team_nfl_cle", - "away_team_canonical_id": "team_nfl_cin", - "stadium_canonical_id": "stadium_nfl_huntington_bank_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250907_mia_ind", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-07T17:00:00Z", - "home_team_canonical_id": "team_nfl_ind", - "away_team_canonical_id": "team_nfl_mia", - "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250907_lv_ne", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-07T17:00:00Z", - "home_team_canonical_id": "team_nfl_ne", - "away_team_canonical_id": "team_nfl_lv", - "stadium_canonical_id": "stadium_nfl_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250907_ari_no", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-07T17:00:00Z", - "home_team_canonical_id": "team_nfl_no", - "away_team_canonical_id": "team_nfl_ari", - "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250907_pit_nyj", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-07T17:00:00Z", - "home_team_canonical_id": "team_nfl_nyj", - "away_team_canonical_id": "team_nfl_pit", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250907_nyg_was", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-07T17:00:00Z", - "home_team_canonical_id": "team_nfl_was", - "away_team_canonical_id": "team_nfl_nyg", - "stadium_canonical_id": "stadium_nfl_northwest_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250907_car_jax", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-07T17:00:00Z", - "home_team_canonical_id": "team_nfl_jax", - "away_team_canonical_id": "team_nfl_car", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250907_tb_atl", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-07T17:00:00Z", - "home_team_canonical_id": "team_nfl_atl", - "away_team_canonical_id": "team_nfl_tb", - "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250907_pit_nyj", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-07T17:00:00Z", - "home_team_canonical_id": "team_nfl_nyj", - "away_team_canonical_id": "team_nfl_pit", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250907_nyg_was", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-07T17:00:00Z", + "season": "2025", + "date": "2025-09-07", + "time": "1p", + "home_team": "Washington Commanders", + "away_team": "New York Giants", + "home_team_abbrev": "WAS", + "away_team_abbrev": "NYG", "home_team_canonical_id": "team_nfl_was", "away_team_canonical_id": "team_nfl_nyg", + "venue": "Northwest Stadium", "stadium_canonical_id": "stadium_nfl_northwest_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250907_mia_ind", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-07T17:00:00Z", - "home_team_canonical_id": "team_nfl_ind", - "away_team_canonical_id": "team_nfl_mia", - "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250907_lv_ne", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-07T17:00:00Z", - "home_team_canonical_id": "team_nfl_ne", - "away_team_canonical_id": "team_nfl_lv", - "stadium_canonical_id": "stadium_nfl_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250907_cin_cle", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-07T17:00:00Z", - "home_team_canonical_id": "team_nfl_cle", - "away_team_canonical_id": "team_nfl_cin", - "stadium_canonical_id": "stadium_nfl_huntington_bank_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250907_car_jax", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-07T17:00:00Z", + "season": "2025", + "date": "2025-09-07", + "time": "1p", + "home_team": "Jacksonville Jaguars", + "away_team": "Carolina Panthers", + "home_team_abbrev": "JAX", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nfl_jax", "away_team_canonical_id": "team_nfl_car", + "venue": "EverBank Stadium", "stadium_canonical_id": "stadium_nfl_everbank_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20250907_tb_atl", + "sport": "NFL", + "season": "2025", + "date": "2025-09-07", + "time": "1p", + "home_team": "Atlanta Falcons", + "away_team": "Tampa Bay Buccaneers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nfl_atl", + "away_team_canonical_id": "team_nfl_tb", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20250907_cin_cle", + "sport": "NFL", + "season": "2025", + "date": "2025-09-07", + "time": "1p", + "home_team": "Cleveland Browns", + "away_team": "Cincinnati Bengals", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_nfl_cle", + "away_team_canonical_id": "team_nfl_cin", + "venue": "Huntington Bank Field", + "stadium_canonical_id": "stadium_nfl_huntington_bank_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20250907_mia_ind", + "sport": "NFL", + "season": "2025", + "date": "2025-09-07", + "time": "1p", + "home_team": "Indianapolis Colts", + "away_team": "Miami Dolphins", + "home_team_abbrev": "IND", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nfl_ind", + "away_team_canonical_id": "team_nfl_mia", + "venue": "Lucas Oil Stadium", + "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20250907_lv_ne", + "sport": "NFL", + "season": "2025", + "date": "2025-09-07", + "time": "1p", + "home_team": "New England Patriots", + "away_team": "Las Vegas Raiders", + "home_team_abbrev": "NE", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_nfl_ne", + "away_team_canonical_id": "team_nfl_lv", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_nfl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250907_ari_no", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-07T17:00:00Z", + "season": "2025", + "date": "2025-09-07", + "time": "12p", + "home_team": "New Orleans Saints", + "away_team": "Arizona Cardinals", + "home_team_abbrev": "NO", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_nfl_no", "away_team_canonical_id": "team_nfl_ari", + "venue": "Caesars Superdome", "stadium_canonical_id": "stadium_nfl_caesars_superdome", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20250907_lad_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-07T17:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250907_tor_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-07T17:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250907_mil_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-07T17:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250907_nym_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-07T17:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250907_chw_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-07T17:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250907_phi_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-07T17:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250907_min_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-07T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250907_sf_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-07T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250907_wsn_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-07T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250907_hou_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-07T18:35:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250907_ind_was", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-07T19:00:00Z", - "home_team_canonical_id": "team_wnba_was", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_cfg_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250907_orl_chi", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-07T19:00:00Z", - "home_team_canonical_id": "team_nwsl_chi", - "away_team_canonical_id": "team_nwsl_orl", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250907_sd_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-07T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250907_sea_wsh", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-07T20:00:00Z", - "home_team_canonical_id": "team_nwsl_wsh", - "away_team_canonical_id": "team_nwsl_sea", - "stadium_canonical_id": "stadium_nwsl_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250907_ten_den", + "canonical_id": "game_nfl_2026_20250907_pit_nyj", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-09-07T20:05:00Z", - "home_team_canonical_id": "team_nfl_den", - "away_team_canonical_id": "team_nfl_ten", - "stadium_canonical_id": "stadium_nfl_empower_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250907_sf_sea", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-07T20:05:00Z", - "home_team_canonical_id": "team_nfl_sea", - "away_team_canonical_id": "team_nfl_sf", - "stadium_canonical_id": "stadium_nfl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250907_ten_den", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-07T20:05:00Z", - "home_team_canonical_id": "team_nfl_den", - "away_team_canonical_id": "team_nfl_ten", - "stadium_canonical_id": "stadium_nfl_empower_field_at_mile_high", + "date": "2025-09-07", + "time": "1p", + "home_team": "New York Jets", + "away_team": "Pittsburgh Steelers", + "home_team_abbrev": "NYJ", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nfl_nyj", + "away_team_canonical_id": "team_nfl_pit", + "venue": "MetLife Stadium", + "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250907_sf_sea", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-07T20:05:00Z", + "season": "2025", + "date": "2025-09-07", + "time": "1:05p", + "home_team": "Seattle Seahawks", + "away_team": "San Francisco 49ers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_nfl_sea", "away_team_canonical_id": "team_nfl_sf", + "venue": "Lumen Field", "stadium_canonical_id": "stadium_nfl_lumen_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20250907_oak_laa_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-07T20:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250907_bos_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-07T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250907_det_gb", + "canonical_id": "game_nfl_2026_20250907_ten_den", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-09-07T20:25:00Z", - "home_team_canonical_id": "team_nfl_gb", - "away_team_canonical_id": "team_nfl_det", - "stadium_canonical_id": "stadium_nfl_lambeau_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250907_hou_lar", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-07T20:25:00Z", - "home_team_canonical_id": "team_nfl_lar", - "away_team_canonical_id": "team_nfl_hou", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250907_hou_lar", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-07T20:25:00Z", - "home_team_canonical_id": "team_nfl_lar", - "away_team_canonical_id": "team_nfl_hou", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "date": "2025-09-07", + "time": "2:05p", + "home_team": "Denver Broncos", + "away_team": "Tennessee Titans", + "home_team_abbrev": "DEN", + "away_team_abbrev": "TEN", + "home_team_canonical_id": "team_nfl_den", + "away_team_canonical_id": "team_nfl_ten", + "venue": "Empower Field at Mile High", + "stadium_canonical_id": "stadium_nfl_empower_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250907_det_gb", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-07T20:25:00Z", + "season": "2025", + "date": "2025-09-07", + "time": "3:25p", + "home_team": "Green Bay Packers", + "away_team": "Detroit Lions", + "home_team_abbrev": "GB", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nfl_gb", "away_team_canonical_id": "team_nfl_det", + "venue": "Lambeau Field", "stadium_canonical_id": "stadium_nfl_lambeau_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nwsl_2025_20250907_ang_njy", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-07T21:00:00Z", - "home_team_canonical_id": "team_nwsl_njy", - "away_team_canonical_id": "team_nwsl_ang", - "stadium_canonical_id": "stadium_nwsl_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250907_dal_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-07T22:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_dal", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250907_aus_skc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-07T23:00:00Z", - "home_team_canonical_id": "team_mls_skc", - "away_team_canonical_id": "team_mls_aus", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250908_bal_buf", + "canonical_id": "game_nfl_2026_20250907_hou_lar", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-09-08T00:20:00Z", - "home_team_canonical_id": "team_nfl_buf", - "away_team_canonical_id": "team_nfl_bal", - "stadium_canonical_id": "stadium_nfl_highmark_stadium", + "date": "2025-09-07", + "time": "1:25p", + "home_team": "Los Angeles Rams", + "away_team": "Houston Texans", + "home_team_abbrev": "LAR", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nfl_lar", + "away_team_canonical_id": "team_nfl_hou", + "venue": "SoFi Stadium", + "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250908_bal_buf", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-08T00:20:00Z", + "season": "2025", + "date": "2025-09-07", + "time": "8:20p", + "home_team": "Buffalo Bills", + "away_team": "Baltimore Ravens", + "home_team_abbrev": "BUF", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_nfl_buf", "away_team_canonical_id": "team_nfl_bal", + "venue": "Highmark Stadium", "stadium_canonical_id": "stadium_nfl_highmark_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250908_hou_sdw", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-08T00:30:00Z", - "home_team_canonical_id": "team_nwsl_sdw", - "away_team_canonical_id": "team_nwsl_hou", - "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250908_chi_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-08T01:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250908_kc_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-08T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250908_wsn_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-08T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250908_nym_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-08T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250908_chc_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-08T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250908_con_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-08T23:30:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_con", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250909_mil_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-09T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250909_min_chi", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-09T00:15:00Z", - "home_team_canonical_id": "team_nfl_chi", - "away_team_canonical_id": "team_nfl_min", - "stadium_canonical_id": "stadium_nfl_soldier_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250909_min_chi", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-09T00:15:00Z", + "season": "2025", + "date": "2025-09-08", + "time": "7:15p", + "home_team": "Chicago Bears", + "away_team": "Minnesota Vikings", + "home_team_abbrev": "CHI", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nfl_chi", "away_team_canonical_id": "team_nfl_min", + "venue": "Soldier Field", "stadium_canonical_id": "stadium_nfl_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250909_min_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-09T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250909_cin_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-09T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250909_stl_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-09T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250909_ari_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-09T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250909_bos_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-09T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250909_col_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-09T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250909_pit_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-09T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250909_kc_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-09T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250909_wsn_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-09T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250909_nym_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-09T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250909_was_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-09T23:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_was", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250909_det_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-09T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250909_hou_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-09T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250909_chc_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-09T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250909_min_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-09T23:30:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250909_tbr_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-09T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250910_mil_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-10T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250910_min_laa_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-10T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250910_cin_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-10T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250910_stl_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-10T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250910_ari_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-10T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250910_chi_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-10T02:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_chi", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250910_la_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-10T02:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_la", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250910_gsv_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-10T02:00:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250910_bos_oak_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-10T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250910_col_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-10T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250910_mil_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-10T18:35:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250910_bos_oak_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-10T19:35:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250910_ari_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-10T19:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250910_min_laa_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-10T20:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250910_pit_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-10T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250910_kc_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-10T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250910_wsn_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-10T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250910_nym_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-10T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250910_atl_con", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-10T23:00:00Z", - "home_team_canonical_id": "team_wnba_con", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250910_det_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-10T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250910_hou_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-10T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250910_chc_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-10T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250910_tbr_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-10T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250911_cin_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-11T00:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250911_stl_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-11T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250911_col_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-11T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250911_pit_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-11T17:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250911_tbr_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-11T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250911_hou_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-11T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250911_wsn_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-11T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250911_det_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-11T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250911_kc_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-11T23:15:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250911_nym_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-11T23:15:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250912_ny_chi", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-12T00:00:00Z", - "home_team_canonical_id": "team_wnba_chi", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250912_phx_dal", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-12T00:00:00Z", - "home_team_canonical_id": "team_wnba_dal", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250912_gsv_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-12T00:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250912_was_gb", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-12T00:15:00Z", - "home_team_canonical_id": "team_nfl_gb", - "away_team_canonical_id": "team_nfl_was", - "stadium_canonical_id": "stadium_nfl_lambeau_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250912_was_gb", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-12T00:15:00Z", + "season": "2025", + "date": "2025-09-11", + "time": "7:15p", + "home_team": "Green Bay Packers", + "away_team": "Washington Commanders", + "home_team_abbrev": "GB", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nfl_gb", "away_team_canonical_id": "team_nfl_was", + "venue": "Lambeau Field", "stadium_canonical_id": "stadium_nfl_lambeau_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250912_col_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-12T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250912_laa_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-12T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250912_lv_la", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-12T02:00:00Z", - "home_team_canonical_id": "team_wnba_la", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250912_tbr_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-12T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250912_pit_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-12T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250912_kc_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-12T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250912_bal_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-12T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250912_tex_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-12T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250912_chw_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-12T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250912_det_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-12T23:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250912_nyy_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-12T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250912_hou_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-12T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250913_ari_min_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-13T00:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250913_stl_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-13T00:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250913_col_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-13T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250913_njy_sdw", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-13T02:00:00Z", - "home_team_canonical_id": "team_nwsl_sdw", - "away_team_canonical_id": "team_nwsl_njy", - "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250913_cin_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-13T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250913_laa_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-13T02:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250913_lad_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-13T02:15:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250913_ang_ncc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-13T16:30:00Z", - "home_team_canonical_id": "team_nwsl_ncc", - "away_team_canonical_id": "team_nwsl_ang", - "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250913_tbr_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-13T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250913_bal_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-13T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250913_pit_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-13T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250913_tex_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-13T20:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250913_det_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-13T20:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250913_nyy_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-13T20:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250913_bay_orl", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-13T21:03:00Z", - "home_team_canonical_id": "team_nwsl_orl", - "away_team_canonical_id": "team_nwsl_bay", - "stadium_canonical_id": "stadium_nwsl_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250913_kc_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-13T22:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250913_chw_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-13T22:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250913_ari_min_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-13T23:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250913_hou_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-13T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250913_clb_atl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-13T23:30:00Z", - "home_team_canonical_id": "team_mls_atl", - "away_team_canonical_id": "team_mls_clb", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250913_stl_mtl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-13T23:30:00Z", - "home_team_canonical_id": "team_mls_mtl", - "away_team_canonical_id": "team_mls_stl", - "stadium_canonical_id": "stadium_mls_stade_saputo", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250913_mia_clt", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-13T23:30:00Z", - "home_team_canonical_id": "team_mls_clt", - "away_team_canonical_id": "team_mls_mia", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250913_orl_dc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-13T23:30:00Z", - "home_team_canonical_id": "team_mls_dc", - "away_team_canonical_id": "team_mls_orl", - "stadium_canonical_id": "stadium_mls_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250913_nsh_cin", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-13T23:30:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_nsh", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250913_tor_ne", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-13T23:30:00Z", - "home_team_canonical_id": "team_mls_ne", - "away_team_canonical_id": "team_mls_tor", - "stadium_canonical_id": "stadium_mls_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250913_wsh_kcc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-13T23:30:00Z", - "home_team_canonical_id": "team_nwsl_kcc", - "away_team_canonical_id": "team_nwsl_wsh", - "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250914_stl_mil_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T00:15:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250914_nyc_chi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-14T00:30:00Z", - "home_team_canonical_id": "team_mls_chi", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250914_aus_dal", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-14T00:30:00Z", - "home_team_canonical_id": "team_mls_dal", - "away_team_canonical_id": "team_mls_aus", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250914_lafc_sj", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-14T00:30:00Z", - "home_team_canonical_id": "team_mls_sj", - "away_team_canonical_id": "team_mls_lafc", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250914_lag_sea", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-14T00:30:00Z", - "home_team_canonical_id": "team_mls_sea", - "away_team_canonical_id": "team_mls_lag", - "stadium_canonical_id": "stadium_mls_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250914_col_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T00:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250914_lad_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T01:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250914_hou_col", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-14T01:30:00Z", - "home_team_canonical_id": "team_mls_col", - "away_team_canonical_id": "team_mls_hou", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250914_skc_slc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-14T01:30:00Z", - "home_team_canonical_id": "team_mls_slc", - "away_team_canonical_id": "team_mls_skc", - "stadium_canonical_id": "stadium_mls_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250914_phi_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-14T01:35:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_phi", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250914_laa_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250914_cin_oak_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250914_ny_por", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-14T02:30:00Z", - "home_team_canonical_id": "team_mls_por", - "away_team_canonical_id": "team_mls_ny", - "stadium_canonical_id": "stadium_mls_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250914_min_sd", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-14T02:30:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_min", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250914_pit_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T15:35:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250914_jax_cin", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-14T17:00:00Z", - "home_team_canonical_id": "team_nfl_cin", - "away_team_canonical_id": "team_nfl_jax", - "stadium_canonical_id": "stadium_nfl_paycor_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250914_nyg_dal", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-14T17:00:00Z", - "home_team_canonical_id": "team_nfl_dal", - "away_team_canonical_id": "team_nfl_nyg", - "stadium_canonical_id": "stadium_nfl_att_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250914_chi_det", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-14T17:00:00Z", - "home_team_canonical_id": "team_nfl_det", - "away_team_canonical_id": "team_nfl_chi", - "stadium_canonical_id": "stadium_nfl_ford_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250914_lar_ten", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-14T17:00:00Z", - "home_team_canonical_id": "team_nfl_ten", - "away_team_canonical_id": "team_nfl_lar", - "stadium_canonical_id": "stadium_nfl_nissan_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250914_ne_mia", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-14T17:00:00Z", - "home_team_canonical_id": "team_nfl_mia", - "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250914_sf_no", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-14T17:00:00Z", - "home_team_canonical_id": "team_nfl_no", - "away_team_canonical_id": "team_nfl_sf", - "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250914_buf_nyj", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-14T17:00:00Z", - "home_team_canonical_id": "team_nfl_nyj", - "away_team_canonical_id": "team_nfl_buf", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250914_sea_pit", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-14T17:00:00Z", - "home_team_canonical_id": "team_nfl_pit", - "away_team_canonical_id": "team_nfl_sea", - "stadium_canonical_id": "stadium_nfl_acrisure_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250914_cle_bal", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-14T17:00:00Z", - "home_team_canonical_id": "team_nfl_bal", - "away_team_canonical_id": "team_nfl_cle", - "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250914_gsv_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-14T17:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_gsv", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250914_sf_no", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-14T17:00:00Z", - "home_team_canonical_id": "team_nfl_no", - "away_team_canonical_id": "team_nfl_sf", - "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250914_sea_pit", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-14T17:00:00Z", - "home_team_canonical_id": "team_nfl_pit", - "away_team_canonical_id": "team_nfl_sea", - "stadium_canonical_id": "stadium_nfl_acrisure_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250914_nyg_dal", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-14T17:00:00Z", + "season": "2025", + "date": "2025-09-14", + "time": "12p", + "home_team": "Dallas Cowboys", + "away_team": "New York Giants", + "home_team_abbrev": "DAL", + "away_team_abbrev": "NYG", "home_team_canonical_id": "team_nfl_dal", "away_team_canonical_id": "team_nfl_nyg", + "venue": "AT&T Stadium", "stadium_canonical_id": "stadium_nfl_att_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250914_ne_mia", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-14T17:00:00Z", - "home_team_canonical_id": "team_nfl_mia", - "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250914_lar_ten", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-14T17:00:00Z", - "home_team_canonical_id": "team_nfl_ten", - "away_team_canonical_id": "team_nfl_lar", - "stadium_canonical_id": "stadium_nfl_nissan_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250914_jax_cin", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-14T17:00:00Z", + "season": "2025", + "date": "2025-09-14", + "time": "1p", + "home_team": "Cincinnati Bengals", + "away_team": "Jacksonville Jaguars", + "home_team_abbrev": "CIN", + "away_team_abbrev": "JAX", "home_team_canonical_id": "team_nfl_cin", "away_team_canonical_id": "team_nfl_jax", + "venue": "Paycor Stadium", "stadium_canonical_id": "stadium_nfl_paycor_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250914_cle_bal", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-14T17:00:00Z", - "home_team_canonical_id": "team_nfl_bal", - "away_team_canonical_id": "team_nfl_cle", - "stadium_canonical_id": "stadium_nfl_mt_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250914_chi_det", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-14T17:00:00Z", + "season": "2025", + "date": "2025-09-14", + "time": "1p", + "home_team": "Detroit Lions", + "away_team": "Chicago Bears", + "home_team_abbrev": "DET", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nfl_det", "away_team_canonical_id": "team_nfl_chi", + "venue": "Ford Field", "stadium_canonical_id": "stadium_nfl_ford_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20250914_lar_ten", + "sport": "NFL", + "season": "2025", + "date": "2025-09-14", + "time": "12p", + "home_team": "Tennessee Titans", + "away_team": "Los Angeles Rams", + "home_team_abbrev": "TEN", + "away_team_abbrev": "LAR", + "home_team_canonical_id": "team_nfl_ten", + "away_team_canonical_id": "team_nfl_lar", + "venue": "Nissan Stadium", + "stadium_canonical_id": "stadium_nfl_nissan_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20250914_ne_mia", + "sport": "NFL", + "season": "2025", + "date": "2025-09-14", + "time": "1p", + "home_team": "Miami Dolphins", + "away_team": "New England Patriots", + "home_team_abbrev": "MIA", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_nfl_mia", + "away_team_canonical_id": "team_nfl_ne", + "venue": "Hard Rock Stadium", + "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20250914_sf_no", + "sport": "NFL", + "season": "2025", + "date": "2025-09-14", + "time": "12p", + "home_team": "New Orleans Saints", + "away_team": "San Francisco 49ers", + "home_team_abbrev": "NO", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_nfl_no", + "away_team_canonical_id": "team_nfl_sf", + "venue": "Caesars Superdome", + "stadium_canonical_id": "stadium_nfl_caesars_superdome", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250914_buf_nyj", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-14T17:00:00Z", + "season": "2025", + "date": "2025-09-14", + "time": "1p", + "home_team": "New York Jets", + "away_team": "Buffalo Bills", + "home_team_abbrev": "NYJ", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nfl_nyj", "away_team_canonical_id": "team_nfl_buf", + "venue": "MetLife Stadium", "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20250914_kc_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T17:35:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250914_hou_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T17:35:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250914_bal_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T17:37:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250914_tex_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T17:40:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250914_chw_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T17:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250914_det_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T17:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250914_stl_mil_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250914_ari_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250914_tbr_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250914_ind_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-14T19:00:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250914_por_chi", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-14T19:00:00Z", - "home_team_canonical_id": "team_nwsl_chi", - "away_team_canonical_id": "team_nwsl_por", - "stadium_canonical_id": "stadium_nwsl_seatgeek_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250914_lad_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250914_cin_oak_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250914_den_ind", + "canonical_id": "game_nfl_2026_20250914_sea_pit", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-09-14T20:05:00Z", - "home_team_canonical_id": "team_nfl_ind", - "away_team_canonical_id": "team_nfl_den", - "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", + "date": "2025-09-14", + "time": "1p", + "home_team": "Pittsburgh Steelers", + "away_team": "Seattle Seahawks", + "home_team_abbrev": "PIT", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nfl_pit", + "away_team_canonical_id": "team_nfl_sea", + "venue": "Acrisure Stadium", + "stadium_canonical_id": "stadium_nfl_acrisure_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20250914_car_ari", + "canonical_id": "game_nfl_2026_20250914_cle_bal", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-09-14T20:05:00Z", - "home_team_canonical_id": "team_nfl_ari", - "away_team_canonical_id": "team_nfl_car", - "stadium_canonical_id": "stadium_nfl_state_farm_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250914_den_ind", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-14T20:05:00Z", - "home_team_canonical_id": "team_nfl_ind", - "away_team_canonical_id": "team_nfl_den", - "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", + "date": "2025-09-14", + "time": "1p", + "home_team": "Baltimore Ravens", + "away_team": "Cleveland Browns", + "home_team_abbrev": "BAL", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nfl_bal", + "away_team_canonical_id": "team_nfl_cle", + "venue": "M&T Bank Stadium", + "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250914_car_ari", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-14T20:05:00Z", + "season": "2025", + "date": "2025-09-14", + "time": "1:05p", + "home_team": "Arizona Cardinals", + "away_team": "Carolina Panthers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nfl_ari", "away_team_canonical_id": "team_nfl_car", + "venue": "State Farm Stadium", "stadium_canonical_id": "stadium_nfl_state_farm_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20250914_col_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250914_laa_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250914_phi_kc", + "canonical_id": "game_nfl_2026_20250914_den_ind", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-09-14T20:25:00Z", - "home_team_canonical_id": "team_nfl_kc", - "away_team_canonical_id": "team_nfl_phi", - "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", + "date": "2025-09-14", + "time": "4:05p", + "home_team": "Indianapolis Colts", + "away_team": "Denver Broncos", + "home_team_abbrev": "IND", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nfl_ind", + "away_team_canonical_id": "team_nfl_den", + "venue": "Lucas Oil Stadium", + "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250914_phi_kc", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-14T20:25:00Z", + "season": "2025", + "date": "2025-09-14", + "time": "3:25p", + "home_team": "Kansas City Chiefs", + "away_team": "Philadelphia Eagles", + "home_team_abbrev": "KC", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nfl_kc", "away_team_canonical_id": "team_nfl_phi", + "venue": "Arrowhead Stadium", "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250914_ny_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-14T21:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250914_hou_uta", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-14T22:00:00Z", - "home_team_canonical_id": "team_nwsl_uta", - "away_team_canonical_id": "team_nwsl_hou", - "stadium_canonical_id": "stadium_nwsl_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250914_nyy_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-14T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250915_atl_min", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-15T00:20:00Z", - "home_team_canonical_id": "team_nfl_min", - "away_team_canonical_id": "team_nfl_atl", - "stadium_canonical_id": "stadium_nfl_us_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250915_atl_min", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-15T00:20:00Z", + "season": "2025", + "date": "2025-09-14", + "time": "7:20p", + "home_team": "Minnesota Vikings", + "away_team": "Atlanta Falcons", + "home_team_abbrev": "MIN", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nfl_min", "away_team_canonical_id": "team_nfl_atl", + "venue": "U.S. Bank Stadium", "stadium_canonical_id": "stadium_nfl_us_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250915_sea_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-15T02:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250915_chc_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-15T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250915_atl_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-15T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250915_tb_hou", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-15T23:00:00Z", - "home_team_canonical_id": "team_nfl_hou", - "away_team_canonical_id": "team_nfl_tb", - "stadium_canonical_id": "stadium_nfl_nrg_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250915_tb_hou", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-15T23:00:00Z", + "season": "2025", + "date": "2025-09-15", + "time": "6p", + "home_team": "Houston Texans", + "away_team": "Tampa Bay Buccaneers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_nfl_hou", "away_team_canonical_id": "team_nfl_tb", + "venue": "NRG Stadium", "stadium_canonical_id": "stadium_nfl_nrg_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250915_tor_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-15T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250915_bal_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-15T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250915_nyy_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-15T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250915_cin_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-15T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250916_tex_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-16T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250916_sf_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-16T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250916_lac_lv", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-16T02:00:00Z", - "home_team_canonical_id": "team_nfl_lv", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "stadium_nfl_allegiant_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250916_lac_lv", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-16T02:00:00Z", + "season": "2025", + "date": "2025-09-15", + "time": "7p", + "home_team": "Las Vegas Raiders", + "away_team": "Los Angeles Chargers", + "home_team_abbrev": "LV", + "away_team_abbrev": "LAC", "home_team_canonical_id": "team_nfl_lv", "away_team_canonical_id": "team_nfl_lac", + "venue": "Allegiant Stadium", "stadium_canonical_id": "stadium_nfl_allegiant_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250916_phi_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-16T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250916_atl_wsn_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-16T17:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250916_cle_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-16T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250916_chc_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-16T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250916_atl_wsn_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-16T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250916_oak_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-16T22:45:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250916_sd_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-16T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250916_sea_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-16T23:30:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_sea", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250916_atl_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-16T23:30:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_atl", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250916_tor_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-16T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250916_sea_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-16T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250916_bal_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-16T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250916_nyy_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-16T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250916_laa_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-16T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250916_cin_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-16T23:45:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250917_rgn_sea", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-17T00:00:00Z", - "home_team_canonical_id": "team_nwsl_sea", - "away_team_canonical_id": "team_nwsl_rgn", - "stadium_canonical_id": "stadium_nwsl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250917_tex_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-17T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250917_mia_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-17T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250917_lv_sea", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-17T01:30:00Z", - "home_team_canonical_id": "team_wnba_sea", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250917_sf_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-17T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250917_phi_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-17T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250917_chc_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-17T16:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250917_cin_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-17T17:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250917_bal_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-17T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250917_sf_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-17T19:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250917_atl_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-17T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250917_cle_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-17T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250917_oak_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-17T22:45:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250917_tor_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-17T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250917_sd_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-17T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250917_clb_nyc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-17T23:30:00Z", - "home_team_canonical_id": "team_mls_nyc", - "away_team_canonical_id": "team_mls_clb", - "stadium_canonical_id": "stadium_mls_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250917_sea_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-17T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250917_nyy_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-17T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250917_laa_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-17T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250918_phx_ny", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-18T00:00:00Z", - "home_team_canonical_id": "team_wnba_ny", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250918_tex_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-18T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250918_mia_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-18T00:40:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250918_lafc_slc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-18T01:30:00Z", - "home_team_canonical_id": "team_mls_slc", - "away_team_canonical_id": "team_mls_lafc", - "stadium_canonical_id": "stadium_mls_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250918_min_gsv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-18T02:00:00Z", - "home_team_canonical_id": "team_wnba_gsv", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250918_phi_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-18T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250918_cle_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-18T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250918_sd_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-18T17:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250918_tor_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-18T17:10:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250918_oak_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-18T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250918_sea_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-18T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250918_mia_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-18T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250918_chc_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-18T23:15:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250918_nyy_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-18T23:15:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250918_ind_atl", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-18T23:30:00Z", - "home_team_canonical_id": "team_wnba_atl", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250918_laa_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-18T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250919_mia_buf", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-19T00:15:00Z", - "home_team_canonical_id": "team_nfl_buf", - "away_team_canonical_id": "team_nfl_mia", - "stadium_canonical_id": "stadium_nfl_highmark_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250919_mia_buf", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-19T00:15:00Z", + "season": "2025", + "date": "2025-09-18", + "time": "8:15p", + "home_team": "Buffalo Bills", + "away_team": "Miami Dolphins", + "home_team_abbrev": "BUF", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_nfl_buf", "away_team_canonical_id": "team_nfl_mia", + "venue": "Highmark Stadium", "stadium_canonical_id": "stadium_nfl_highmark_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250919_sea_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-19T01:30:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_sea", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250919_sf_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-19T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250919_wsh_ang", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-19T02:30:00Z", - "home_team_canonical_id": "team_nwsl_ang", - "away_team_canonical_id": "team_nwsl_wsh", - "stadium_canonical_id": "stadium_nwsl_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250919_chc_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-19T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250919_oak_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-19T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250919_atl_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-19T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250919_nyy_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-19T23:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250919_wsn_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-19T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250919_bos_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-19T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250919_tor_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-19T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250919_sd_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-19T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250920_chi_hou", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-20T00:00:00Z", - "home_team_canonical_id": "team_nwsl_hou", - "away_team_canonical_id": "team_nwsl_chi", - "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250920_ncc_orl", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-20T00:00:00Z", - "home_team_canonical_id": "team_nwsl_orl", - "away_team_canonical_id": "team_nwsl_ncc", - "stadium_canonical_id": "stadium_nwsl_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_mia_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_laa_col", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T00:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_sea_hou_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_cle_min_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T00:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_mil_stl_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T00:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250920_ny_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-20T01:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_ny", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_phi_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250920_rgn_uta", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-20T02:00:00Z", - "home_team_canonical_id": "team_nwsl_uta", - "away_team_canonical_id": "team_nwsl_rgn", - "stadium_canonical_id": "stadium_nwsl_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_sf_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250920_clt_nyc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-20T16:00:00Z", - "home_team_canonical_id": "team_mls_nyc", - "away_team_canonical_id": "team_mls_clt", - "stadium_canonical_id": "stadium_mls_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_atl_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_cle_min_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250920_ne_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-20T18:30:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_ne", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_wsn_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T20:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250920_sd_atl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-20T20:30:00Z", - "home_team_canonical_id": "team_mls_atl", - "away_team_canonical_id": "team_mls_sd", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_chc_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_oak_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_mia_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T23:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_bos_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T23:05:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_nyy_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T23:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_sea_hou_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T23:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_cle_min_3", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T23:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_tor_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T23:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_sd_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T23:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250920_mil_stl_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-20T23:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250920_ny_mtl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-20T23:30:00Z", - "home_team_canonical_id": "team_mls_mtl", - "away_team_canonical_id": "team_mls_ny", - "stadium_canonical_id": "stadium_mls_stade_saputo", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250920_tor_clb", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-20T23:30:00Z", - "home_team_canonical_id": "team_mls_clb", - "away_team_canonical_id": "team_mls_tor", - "stadium_canonical_id": "stadium_mls_lowercom_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250920_dc_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-20T23:30:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_dc", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250920_nsh_orl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-20T23:30:00Z", - "home_team_canonical_id": "team_mls_orl", - "away_team_canonical_id": "team_mls_nsh", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250920_sea_kcc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-20T23:30:00Z", - "home_team_canonical_id": "team_nwsl_kcc", - "away_team_canonical_id": "team_nwsl_sea", - "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250921_laa_col_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-21T00:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250921_phi_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-21T00:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250921_col_dal", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-21T00:30:00Z", - "home_team_canonical_id": "team_mls_dal", - "away_team_canonical_id": "team_mls_col", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250921_por_hou", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-21T00:30:00Z", - "home_team_canonical_id": "team_mls_hou", - "away_team_canonical_id": "team_mls_por", - "stadium_canonical_id": "stadium_mls_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250921_chi_min", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-21T00:30:00Z", - "home_team_canonical_id": "team_mls_min", - "away_team_canonical_id": "team_mls_chi", - "stadium_canonical_id": "stadium_mls_allianz_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250921_van_skc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-21T00:30:00Z", - "home_team_canonical_id": "team_mls_skc", - "away_team_canonical_id": "team_mls_van", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250921_sf_lad_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-21T01:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250921_sdw_por", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-21T02:00:00Z", - "home_team_canonical_id": "team_nwsl_por", - "away_team_canonical_id": "team_nwsl_sdw", - "stadium_canonical_id": "stadium_nwsl_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250921_cin_lag", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-21T02:30:00Z", - "home_team_canonical_id": "team_mls_lag", - "away_team_canonical_id": "team_mls_cin", - "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250921_stl_sj", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-21T02:30:00Z", - "home_team_canonical_id": "team_mls_sj", - "away_team_canonical_id": "team_mls_stl", - "stadium_canonical_id": "stadium_mls_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250921_gb_cle", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-21T17:00:00Z", - "home_team_canonical_id": "team_nfl_cle", - "away_team_canonical_id": "team_nfl_gb", - "stadium_canonical_id": "stadium_nfl_huntington_bank_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250921_ind_ten", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-21T17:00:00Z", - "home_team_canonical_id": "team_nfl_ten", - "away_team_canonical_id": "team_nfl_ind", - "stadium_canonical_id": "stadium_nfl_nissan_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250921_cin_min", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-21T17:00:00Z", - "home_team_canonical_id": "team_nfl_min", - "away_team_canonical_id": "team_nfl_cin", - "stadium_canonical_id": "stadium_nfl_us_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250921_pit_ne", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-21T17:00:00Z", - "home_team_canonical_id": "team_nfl_ne", - "away_team_canonical_id": "team_nfl_pit", - "stadium_canonical_id": "stadium_nfl_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250921_lar_phi", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-21T17:00:00Z", - "home_team_canonical_id": "team_nfl_phi", - "away_team_canonical_id": "team_nfl_lar", - "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250921_nyj_tb", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-21T17:00:00Z", - "home_team_canonical_id": "team_nfl_tb", - "away_team_canonical_id": "team_nfl_nyj", - "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250921_lv_was", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-21T17:00:00Z", - "home_team_canonical_id": "team_nfl_was", - "away_team_canonical_id": "team_nfl_lv", - "stadium_canonical_id": "stadium_nfl_northwest_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250921_atl_car", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-21T17:00:00Z", - "home_team_canonical_id": "team_nfl_car", - "away_team_canonical_id": "team_nfl_atl", - "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250921_hou_jax", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-21T17:00:00Z", - "home_team_canonical_id": "team_nfl_jax", - "away_team_canonical_id": "team_nfl_hou", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250921_pit_ne", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-21T17:00:00Z", - "home_team_canonical_id": "team_nfl_ne", - "away_team_canonical_id": "team_nfl_pit", - "stadium_canonical_id": "stadium_nfl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250921_nyj_tb", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-21T17:00:00Z", + "season": "2025", + "date": "2025-09-21", + "time": "1p", + "home_team": "Tampa Bay Buccaneers", + "away_team": "New York Jets", + "home_team_abbrev": "TB", + "away_team_abbrev": "NYJ", "home_team_canonical_id": "team_nfl_tb", "away_team_canonical_id": "team_nfl_nyj", + "venue": "Raymond James Stadium", "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250921_lv_was", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-21T17:00:00Z", - "home_team_canonical_id": "team_nfl_was", - "away_team_canonical_id": "team_nfl_lv", - "stadium_canonical_id": "stadium_nfl_northwest_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250921_lar_phi", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-21T17:00:00Z", - "home_team_canonical_id": "team_nfl_phi", - "away_team_canonical_id": "team_nfl_lar", - "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250921_ind_ten", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-21T17:00:00Z", - "home_team_canonical_id": "team_nfl_ten", - "away_team_canonical_id": "team_nfl_ind", - "stadium_canonical_id": "stadium_nfl_nissan_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250921_hou_jax", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-21T17:00:00Z", - "home_team_canonical_id": "team_nfl_jax", - "away_team_canonical_id": "team_nfl_hou", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250921_gb_cle", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-21T17:00:00Z", - "home_team_canonical_id": "team_nfl_cle", - "away_team_canonical_id": "team_nfl_gb", - "stadium_canonical_id": "stadium_nfl_huntington_bank_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250921_cin_min", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-21T17:00:00Z", + "season": "2025", + "date": "2025-09-21", + "time": "12p", + "home_team": "Minnesota Vikings", + "away_team": "Cincinnati Bengals", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_nfl_min", "away_team_canonical_id": "team_nfl_cin", + "venue": "U.S. Bank Stadium", "stadium_canonical_id": "stadium_nfl_us_bank_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20250921_ind_ten", + "sport": "NFL", + "season": "2025", + "date": "2025-09-21", + "time": "12p", + "home_team": "Tennessee Titans", + "away_team": "Indianapolis Colts", + "home_team_abbrev": "TEN", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nfl_ten", + "away_team_canonical_id": "team_nfl_ind", + "venue": "Nissan Stadium", + "stadium_canonical_id": "stadium_nfl_nissan_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20250921_lv_was", + "sport": "NFL", + "season": "2025", + "date": "2025-09-21", + "time": "1p", + "home_team": "Washington Commanders", + "away_team": "Las Vegas Raiders", + "home_team_abbrev": "WAS", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_nfl_was", + "away_team_canonical_id": "team_nfl_lv", + "venue": "Northwest Stadium", + "stadium_canonical_id": "stadium_nfl_northwest_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20250921_hou_jax", + "sport": "NFL", + "season": "2025", + "date": "2025-09-21", + "time": "1p", + "home_team": "Jacksonville Jaguars", + "away_team": "Houston Texans", + "home_team_abbrev": "JAX", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nfl_jax", + "away_team_canonical_id": "team_nfl_hou", + "venue": "EverBank Stadium", + "stadium_canonical_id": "stadium_nfl_everbank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250921_atl_car", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-21T17:00:00Z", + "season": "2025", + "date": "2025-09-21", + "time": "1p", + "home_team": "Carolina Panthers", + "away_team": "Atlanta Falcons", + "home_team_abbrev": "CAR", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nfl_car", "away_team_canonical_id": "team_nfl_atl", + "venue": "Bank of America Stadium", "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20250921_atl_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-21T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250921_oak_pit", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-21T17:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250921_nyy_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-21T17:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250921_chc_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-21T17:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250921_wsn_nym", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-21T17:40:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250921_tor_kc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-21T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250921_cle_min", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-21T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250921_sd_chw", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-21T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250921_mil_stl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-21T18:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250921_mia_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-21T18:35:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250921_ind_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-21T19:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250921_laa_col_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-21T19:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250921_den_lac", + "canonical_id": "game_nfl_2026_20250921_lar_phi", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-09-21T20:05:00Z", - "home_team_canonical_id": "team_nfl_lac", - "away_team_canonical_id": "team_nfl_den", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "date": "2025-09-21", + "time": "1p", + "home_team": "Philadelphia Eagles", + "away_team": "Los Angeles Rams", + "home_team_abbrev": "PHI", + "away_team_abbrev": "LAR", + "home_team_canonical_id": "team_nfl_phi", + "away_team_canonical_id": "team_nfl_lar", + "venue": "Lincoln Financial Field", + "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20250921_no_sea", + "canonical_id": "game_nfl_2026_20250921_pit_ne", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-09-21T20:05:00Z", - "home_team_canonical_id": "team_nfl_sea", - "away_team_canonical_id": "team_nfl_no", - "stadium_canonical_id": "stadium_nfl_lumen_field", + "date": "2025-09-21", + "time": "1p", + "home_team": "New England Patriots", + "away_team": "Pittsburgh Steelers", + "home_team_abbrev": "NE", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nfl_ne", + "away_team_canonical_id": "team_nfl_pit", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_nfl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2026_20250921_no_sea", + "canonical_id": "game_nfl_2026_20250921_gb_cle", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-21T20:05:00Z", - "home_team_canonical_id": "team_nfl_sea", - "away_team_canonical_id": "team_nfl_no", - "stadium_canonical_id": "stadium_nfl_lumen_field", + "season": "2025", + "date": "2025-09-21", + "time": "1p", + "home_team": "Cleveland Browns", + "away_team": "Green Bay Packers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "GB", + "home_team_canonical_id": "team_nfl_cle", + "away_team_canonical_id": "team_nfl_gb", + "venue": "Huntington Bank Field", + "stadium_canonical_id": "stadium_nfl_huntington_bank_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250921_den_lac", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-21T20:05:00Z", + "season": "2025", + "date": "2025-09-21", + "time": "1:05p", + "home_team": "Los Angeles Chargers", + "away_team": "Denver Broncos", + "home_team_abbrev": "LAC", + "away_team_abbrev": "DEN", "home_team_canonical_id": "team_nfl_lac", "away_team_canonical_id": "team_nfl_den", + "venue": "SoFi Stadium", "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20250921_phi_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-21T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250921_sf_lad_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-21T20:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250921_dal_chi", + "canonical_id": "game_nfl_2026_20250921_no_sea", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-09-21T20:25:00Z", - "home_team_canonical_id": "team_nfl_chi", - "away_team_canonical_id": "team_nfl_dal", - "stadium_canonical_id": "stadium_nfl_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250921_ari_sf", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-21T20:25:00Z", - "home_team_canonical_id": "team_nfl_sf", - "away_team_canonical_id": "team_nfl_ari", - "stadium_canonical_id": "stadium_nfl_levis_stadium", + "date": "2025-09-21", + "time": "1:05p", + "home_team": "Seattle Seahawks", + "away_team": "New Orleans Saints", + "home_team_abbrev": "SEA", + "away_team_abbrev": "NO", + "home_team_canonical_id": "team_nfl_sea", + "away_team_canonical_id": "team_nfl_no", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_nfl_lumen_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250921_dal_chi", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-21T20:25:00Z", + "season": "2025", + "date": "2025-09-21", + "time": "3:25p", + "home_team": "Chicago Bears", + "away_team": "Dallas Cowboys", + "home_team_abbrev": "CHI", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nfl_chi", "away_team_canonical_id": "team_nfl_dal", + "venue": "Soldier Field", "stadium_canonical_id": "stadium_nfl_soldier_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250921_ari_sf", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-21T20:25:00Z", + "season": "2025", + "date": "2025-09-21", + "time": "1:25p", + "home_team": "San Francisco 49ers", + "away_team": "Arizona Cardinals", + "home_team_abbrev": "SF", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_nfl_sf", "away_team_canonical_id": "team_nfl_ari", + "venue": "Levi's Stadium", "stadium_canonical_id": "stadium_nfl_levis_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250921_phx_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-21T21:00:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250921_sea_aus", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-21T23:00:00Z", - "home_team_canonical_id": "team_mls_aus", - "away_team_canonical_id": "team_mls_sea", - "stadium_canonical_id": "stadium_mls_q2_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250921_sea_hou", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-21T23:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250921_bos_tbr", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-21T23:35:00Z", - "home_team_canonical_id": "team_mlb_tbr", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250922_kc_nyg", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-22T00:20:00Z", - "home_team_canonical_id": "team_nfl_nyg", - "away_team_canonical_id": "team_nfl_kc", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250922_kc_nyg", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-22T00:20:00Z", + "season": "2025", + "date": "2025-09-21", + "time": "8:20p", + "home_team": "New York Giants", + "away_team": "Kansas City Chiefs", + "home_team_abbrev": "NYG", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_nfl_nyg", "away_team_canonical_id": "team_nfl_kc", + "venue": "MetLife Stadium", "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250922_njy_bay", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-22T00:30:00Z", - "home_team_canonical_id": "team_nwsl_bay", - "away_team_canonical_id": "team_nwsl_njy", - "stadium_canonical_id": "stadium_nwsl_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250922_slc_lafc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-22T01:00:00Z", - "home_team_canonical_id": "team_mls_lafc", - "away_team_canonical_id": "team_mls_slc", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250922_wsn_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-22T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250923_det_bal", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-23T00:15:00Z", - "home_team_canonical_id": "team_nfl_bal", - "away_team_canonical_id": "team_nfl_det", - "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250923_det_bal", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-23T00:15:00Z", + "season": "2025", + "date": "2025-09-22", + "time": "8:15p", + "home_team": "Baltimore Ravens", + "away_team": "Detroit Lions", + "home_team_abbrev": "BAL", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nfl_bal", "away_team_canonical_id": "team_nfl_det", - "stadium_canonical_id": "stadium_nfl_mt_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250923_mil_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-23T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250923_stl_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-23T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250923_tbr_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-23T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250923_det_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-23T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250923_pit_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-23T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250923_mia_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-23T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250923_chw_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-23T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250923_bos_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-23T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250923_wsn_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-23T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250923_phx_min", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-23T23:30:00Z", - "home_team_canonical_id": "team_wnba_min", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250923_nym_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-23T23:40:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250924_min_tex", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-24T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250924_ind_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-24T01:30:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250924_kc_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-24T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250924_lad_ari", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-24T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250924_col_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-24T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250924_mil_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-24T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250924_stl_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-24T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250924_hou_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-24T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250924_wsn_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-24T16:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250924_mil_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-24T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250924_tbr_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-24T22:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250924_det_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-24T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250924_pit_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-24T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250924_mia_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-24T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250924_chw_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-24T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250924_bos_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-24T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250924_mia_nyc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-24T23:30:00Z", - "home_team_canonical_id": "team_mls_nyc", - "away_team_canonical_id": "team_mls_mia", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250925_nym_chc_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-25T00:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250925_min_tex_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-25T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250925_kc_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-25T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250925_lad_ari_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-25T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250925_col_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-25T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250925_stl_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-25T01:45:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250925_hou_oak_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-25T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250925_por_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-25T02:30:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_por", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250925_pit_cin", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-25T16:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250925_tbr_bal", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-25T17:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250925_min_tex_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-25T18:35:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250925_hou_oak_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-25T19:35:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250925_lad_ari_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-25T19:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250925_mia_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-25T22:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250925_det_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-25T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250925_chw_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-25T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250925_bos_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-25T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250925_nym_chc_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-25T23:40:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250926_sea_ari", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-26T00:15:00Z", - "home_team_canonical_id": "team_nfl_ari", - "away_team_canonical_id": "team_nfl_sea", - "stadium_canonical_id": "stadium_nfl_state_farm_stadium", + "venue": "M&T Bank Stadium", + "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250926_sea_ari", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-26T00:15:00Z", + "season": "2025", + "date": "2025-09-25", + "time": "5:15p", + "home_team": "Arizona Cardinals", + "away_team": "Seattle Seahawks", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_nfl_ari", "away_team_canonical_id": "team_nfl_sea", + "venue": "State Farm Stadium", "stadium_canonical_id": "stadium_nfl_state_farm_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250926_kc_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-26T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250926_col_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-26T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250926_stl_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-26T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250926_min_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-26T22:45:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250926_chw_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-26T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250926_bal_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-26T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250926_tbr_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-26T23:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250926_det_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-26T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250926_tex_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-26T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250926_nym_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-26T23:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250926_pit_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-26T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250926_lv_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-26T23:30:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250927_por_njy", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-27T00:00:00Z", - "home_team_canonical_id": "team_nwsl_njy", - "away_team_canonical_id": "team_nwsl_por", - "stadium_canonical_id": "stadium_nwsl_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250927_chi_kcc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-27T00:00:00Z", - "home_team_canonical_id": "team_nwsl_kcc", - "away_team_canonical_id": "team_nwsl_chi", - "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250927_cin_mil_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-27T00:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250927_hou_laa", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-27T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250927_ari_sd", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-27T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250927_lad_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-27T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250927_min_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-27T01:40:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250927_kc_oak", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-27T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250927_col_sf_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-27T02:15:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250927_orl_sdw", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-27T02:30:00Z", - "home_team_canonical_id": "team_nwsl_sdw", - "away_team_canonical_id": "team_nwsl_orl", - "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250927_bal_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-27T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250927_stl_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-27T18:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250927_tbr_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-27T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250927_col_sf_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-27T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250927_chw_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-27T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250927_det_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-27T20:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250927_nym_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-27T20:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250927_mia_tor", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-27T20:30:00Z", - "home_team_canonical_id": "team_mls_tor", - "away_team_canonical_id": "team_mls_mia", - "stadium_canonical_id": "stadium_mls_bmo_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250927_min_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-27T22:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250927_cin_mil_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-27T23:15:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250927_tex_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-27T23:15:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250927_pit_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-27T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250927_mtl_clt", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-27T23:30:00Z", - "home_team_canonical_id": "team_mls_clt", - "away_team_canonical_id": "team_mls_mtl", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250927_phi_dc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-27T23:30:00Z", - "home_team_canonical_id": "team_mls_dc", - "away_team_canonical_id": "team_mls_phi", - "stadium_canonical_id": "stadium_mls_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250927_atl_ne", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-27T23:30:00Z", - "home_team_canonical_id": "team_mls_ne", - "away_team_canonical_id": "team_mls_atl", - "stadium_canonical_id": "stadium_mls_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250927_nyc_ny", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-27T23:30:00Z", - "home_team_canonical_id": "team_mls_ny", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250927_ang_rgn", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-27T23:30:00Z", - "home_team_canonical_id": "team_nwsl_rgn", - "away_team_canonical_id": "team_nwsl_ang", - "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250928_clb_chi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-28T00:30:00Z", - "home_team_canonical_id": "team_mls_chi", - "away_team_canonical_id": "team_mls_clb", - "stadium_canonical_id": "stadium_mls_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250928_hou_nsh", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-28T00:30:00Z", - "home_team_canonical_id": "team_mls_nsh", - "away_team_canonical_id": "team_mls_hou", - "stadium_canonical_id": "stadium_mls_geodis_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250928_lafc_stl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-28T00:30:00Z", - "home_team_canonical_id": "team_mls_stl", - "away_team_canonical_id": "team_mls_lafc", - "stadium_canonical_id": "stadium_mls_citypark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250928_ari_sd_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-28T00:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250928_min_col", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-28T01:30:00Z", - "home_team_canonical_id": "team_mls_col", - "away_team_canonical_id": "team_mls_min", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250928_aus_slc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-28T01:30:00Z", - "home_team_canonical_id": "team_mls_slc", - "away_team_canonical_id": "team_mls_aus", - "stadium_canonical_id": "stadium_mls_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250928_hou_laa_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-28T01:38:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250928_lad_sea_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-28T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250928_uta_bay", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-28T02:00:00Z", - "home_team_canonical_id": "team_nwsl_bay", - "away_team_canonical_id": "team_nwsl_uta", - "stadium_canonical_id": "stadium_nwsl_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250928_kc_oak_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-28T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250928_skc_lag", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-28T02:30:00Z", - "home_team_canonical_id": "team_mls_lag", - "away_team_canonical_id": "team_mls_skc", - "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250928_dal_por", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-28T02:30:00Z", - "home_team_canonical_id": "team_mls_por", - "away_team_canonical_id": "team_mls_dal", - "stadium_canonical_id": "stadium_mls_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250928_sj_sd", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-28T02:30:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_sj", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250928_van_sea", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-28T02:30:00Z", - "home_team_canonical_id": "team_mls_sea", - "away_team_canonical_id": "team_mls_van", - "stadium_canonical_id": "stadium_mls_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250928_min_pit", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-28T13:30:00Z", - "home_team_canonical_id": "team_nfl_pit", - "away_team_canonical_id": "team_nfl_min", - "stadium_canonical_id": "", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250928_min_pit", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-28T13:30:00Z", + "season": "2025", + "date": "2025-09-28", + "time": "2:30p", + "home_team": "Pittsburgh Steelers", + "away_team": "Minnesota Vikings", + "home_team_abbrev": "PIT", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nfl_pit", "away_team_canonical_id": "team_nfl_min", + "venue": "Croke Park", "stadium_canonical_id": "stadium_nfl_croke_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250928_was_atl", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-28T17:00:00Z", - "home_team_canonical_id": "team_nfl_atl", - "away_team_canonical_id": "team_nfl_was", - "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250928_no_buf", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-28T17:00:00Z", - "home_team_canonical_id": "team_nfl_buf", - "away_team_canonical_id": "team_nfl_no", - "stadium_canonical_id": "stadium_nfl_highmark_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250928_cle_det", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-28T17:00:00Z", - "home_team_canonical_id": "team_nfl_det", - "away_team_canonical_id": "team_nfl_cle", - "stadium_canonical_id": "stadium_nfl_ford_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250928_car_ne", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-28T17:00:00Z", - "home_team_canonical_id": "team_nfl_ne", - "away_team_canonical_id": "team_nfl_car", - "stadium_canonical_id": "stadium_nfl_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250928_lac_nyg", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-28T17:00:00Z", - "home_team_canonical_id": "team_nfl_nyg", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250928_phi_tb", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-28T17:00:00Z", - "home_team_canonical_id": "team_nfl_tb", - "away_team_canonical_id": "team_nfl_phi", - "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250928_ten_hou", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-28T17:00:00Z", - "home_team_canonical_id": "team_nfl_hou", - "away_team_canonical_id": "team_nfl_ten", - "stadium_canonical_id": "stadium_nfl_nrg_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250928_hou_wsh", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-28T17:00:00Z", - "home_team_canonical_id": "team_nwsl_wsh", - "away_team_canonical_id": "team_nwsl_hou", - "stadium_canonical_id": "stadium_nwsl_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250928_was_atl", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-28T17:00:00Z", - "home_team_canonical_id": "team_nfl_atl", - "away_team_canonical_id": "team_nfl_was", - "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250928_ten_hou", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-28T17:00:00Z", - "home_team_canonical_id": "team_nfl_hou", - "away_team_canonical_id": "team_nfl_ten", - "stadium_canonical_id": "stadium_nfl_nrg_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250928_phi_tb", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-28T17:00:00Z", - "home_team_canonical_id": "team_nfl_tb", - "away_team_canonical_id": "team_nfl_phi", - "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250928_no_buf", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-28T17:00:00Z", - "home_team_canonical_id": "team_nfl_buf", - "away_team_canonical_id": "team_nfl_no", - "stadium_canonical_id": "stadium_nfl_highmark_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250928_lac_nyg", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-28T17:00:00Z", - "home_team_canonical_id": "team_nfl_nyg", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250928_cle_det", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-28T17:00:00Z", - "home_team_canonical_id": "team_nfl_det", - "away_team_canonical_id": "team_nfl_cle", - "stadium_canonical_id": "stadium_nfl_ford_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250928_car_ne", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-28T17:00:00Z", + "season": "2025", + "date": "2025-09-28", + "time": "1p", + "home_team": "New England Patriots", + "away_team": "Carolina Panthers", + "home_team_abbrev": "NE", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nfl_ne", "away_team_canonical_id": "team_nfl_car", + "venue": "Gillette Stadium", "stadium_canonical_id": "stadium_nfl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_wnba_2025_20250928_lv_ind", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-28T19:00:00Z", - "home_team_canonical_id": "team_wnba_ind", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250928_kc_oak_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-28T19:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250928_det_bos", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-28T19:05:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250928_col_sf", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-28T19:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250928_min_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-28T19:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250928_chw_wsn", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-28T19:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250928_bal_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-28T19:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250928_hou_laa_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-28T19:07:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250928_tbr_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-28T19:07:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_tbr", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250928_ari_sd_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-28T19:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250928_lad_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-28T19:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250928_tex_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-28T19:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250928_nym_mia", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-28T19:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250928_cin_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-28T19:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250928_pit_atl", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-28T19:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250928_stl_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-28T19:20:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250928_ind_lar", + "canonical_id": "game_nfl_2026_20250928_was_atl", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-09-28T20:05:00Z", - "home_team_canonical_id": "team_nfl_lar", - "away_team_canonical_id": "team_nfl_ind", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "date": "2025-09-28", + "time": "1p", + "home_team": "Atlanta Falcons", + "away_team": "Washington Commanders", + "home_team_abbrev": "ATL", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nfl_atl", + "away_team_canonical_id": "team_nfl_was", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20250928_jax_sf", + "canonical_id": "game_nfl_2026_20250928_ten_hou", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-09-28T20:05:00Z", - "home_team_canonical_id": "team_nfl_sf", - "away_team_canonical_id": "team_nfl_jax", - "stadium_canonical_id": "stadium_nfl_levis_stadium", + "date": "2025-09-28", + "time": "12p", + "home_team": "Houston Texans", + "away_team": "Tennessee Titans", + "home_team_abbrev": "HOU", + "away_team_abbrev": "TEN", + "home_team_canonical_id": "team_nfl_hou", + "away_team_canonical_id": "team_nfl_ten", + "venue": "NRG Stadium", + "stadium_canonical_id": "stadium_nfl_nrg_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20250928_no_buf", + "sport": "NFL", + "season": "2025", + "date": "2025-09-28", + "time": "1p", + "home_team": "Buffalo Bills", + "away_team": "New Orleans Saints", + "home_team_abbrev": "BUF", + "away_team_abbrev": "NO", + "home_team_canonical_id": "team_nfl_buf", + "away_team_canonical_id": "team_nfl_no", + "venue": "Highmark Stadium", + "stadium_canonical_id": "stadium_nfl_highmark_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20250928_phi_tb", + "sport": "NFL", + "season": "2025", + "date": "2025-09-28", + "time": "1p", + "home_team": "Tampa Bay Buccaneers", + "away_team": "Philadelphia Eagles", + "home_team_abbrev": "TB", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nfl_tb", + "away_team_canonical_id": "team_nfl_phi", + "venue": "Raymond James Stadium", + "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20250928_lac_nyg", + "sport": "NFL", + "season": "2025", + "date": "2025-09-28", + "time": "1p", + "home_team": "New York Giants", + "away_team": "Los Angeles Chargers", + "home_team_abbrev": "NYG", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nfl_nyg", + "away_team_canonical_id": "team_nfl_lac", + "venue": "MetLife Stadium", + "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20250928_cle_det", + "sport": "NFL", + "season": "2025", + "date": "2025-09-28", + "time": "1p", + "home_team": "Detroit Lions", + "away_team": "Cleveland Browns", + "home_team_abbrev": "DET", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nfl_det", + "away_team_canonical_id": "team_nfl_cle", + "venue": "Ford Field", + "stadium_canonical_id": "stadium_nfl_ford_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250928_jax_sf", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-28T20:05:00Z", + "season": "2025", + "date": "2025-09-28", + "time": "1:05p", + "home_team": "San Francisco 49ers", + "away_team": "Jacksonville Jaguars", + "home_team_abbrev": "SF", + "away_team_abbrev": "JAX", "home_team_canonical_id": "team_nfl_sf", "away_team_canonical_id": "team_nfl_jax", + "venue": "Levi's Stadium", "stadium_canonical_id": "stadium_nfl_levis_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250928_ind_lar", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-28T20:05:00Z", + "season": "2025", + "date": "2025-09-28", + "time": "1:05p", + "home_team": "Los Angeles Rams", + "away_team": "Indianapolis Colts", + "home_team_abbrev": "LAR", + "away_team_abbrev": "IND", "home_team_canonical_id": "team_nfl_lar", "away_team_canonical_id": "team_nfl_ind", + "venue": "SoFi Stadium", "stadium_canonical_id": "stadium_nfl_sofi_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250928_bal_kc", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-28T20:25:00Z", - "home_team_canonical_id": "team_nfl_kc", - "away_team_canonical_id": "team_nfl_bal", - "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250928_chi_lv", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-28T20:25:00Z", - "home_team_canonical_id": "team_nfl_lv", - "away_team_canonical_id": "team_nfl_chi", - "stadium_canonical_id": "stadium_nfl_allegiant_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20250928_chi_lv", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-28T20:25:00Z", - "home_team_canonical_id": "team_nfl_lv", - "away_team_canonical_id": "team_nfl_chi", - "stadium_canonical_id": "stadium_nfl_allegiant_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250928_bal_kc", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-28T20:25:00Z", + "season": "2025", + "date": "2025-09-28", + "time": "3:25p", + "home_team": "Kansas City Chiefs", + "away_team": "Baltimore Ravens", + "home_team_abbrev": "KC", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_nfl_kc", "away_team_canonical_id": "team_nfl_bal", + "venue": "Arrowhead Stadium", "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mls_2025_20250928_orl_cin", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-28T23:00:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_orl", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20250929_min_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-09-29T00:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_min", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20250929_ncc_sea", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-09-29T00:00:00Z", - "home_team_canonical_id": "team_nwsl_sea", - "away_team_canonical_id": "team_nwsl_ncc", - "stadium_canonical_id": "stadium_nwsl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250929_gb_dal", + "canonical_id": "game_nfl_2026_20250928_chi_lv", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-09-29T00:20:00Z", - "home_team_canonical_id": "team_nfl_dal", - "away_team_canonical_id": "team_nfl_gb", - "stadium_canonical_id": "stadium_nfl_att_stadium", + "date": "2025-09-28", + "time": "1:25p", + "home_team": "Las Vegas Raiders", + "away_team": "Chicago Bears", + "home_team_abbrev": "LV", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nfl_lv", + "away_team_canonical_id": "team_nfl_chi", + "venue": "Allegiant Stadium", + "stadium_canonical_id": "stadium_nfl_allegiant_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250929_gb_dal", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-29T00:20:00Z", + "season": "2025", + "date": "2025-09-28", + "time": "7:20p", + "home_team": "Dallas Cowboys", + "away_team": "Green Bay Packers", + "home_team_abbrev": "DAL", + "away_team_abbrev": "GB", "home_team_canonical_id": "team_nfl_dal", "away_team_canonical_id": "team_nfl_gb", + "venue": "AT&T Stadium", "stadium_canonical_id": "stadium_nfl_att_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250929_nyj_mia", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-29T23:15:00Z", - "home_team_canonical_id": "team_nfl_mia", - "away_team_canonical_id": "team_nfl_nyj", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250929_nyj_mia", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-29T23:15:00Z", + "season": "2025", + "date": "2025-09-29", + "time": "7:15p", + "home_team": "Miami Dolphins", + "away_team": "New York Jets", + "home_team_abbrev": "MIA", + "away_team_abbrev": "NYJ", "home_team_canonical_id": "team_nfl_mia", "away_team_canonical_id": "team_nfl_nyj", + "venue": "Hard Rock Stadium", "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20250930_cin_den", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-09-30T00:15:00Z", - "home_team_canonical_id": "team_nfl_den", - "away_team_canonical_id": "team_nfl_cin", - "stadium_canonical_id": "stadium_nfl_empower_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20250930_cin_den", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-09-30T00:15:00Z", + "season": "2025", + "date": "2025-09-29", + "time": "6:15p", + "home_team": "Denver Broncos", + "away_team": "Cincinnati Bengals", + "home_team_abbrev": "DEN", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_nfl_den", "away_team_canonical_id": "team_nfl_cin", - "stadium_canonical_id": "stadium_nfl_empower_field_at_mile_high", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250930_det_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-30T17:08:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250930_sd_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-30T19:08:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20250930_bos_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-09-30T22:08:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20250930_chi_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-09-30T23:30:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_chi", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251001_cin_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-01T01:08:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20251001_ind_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-10-01T01:30:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_ind", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251001_det_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-01T17:08:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251001_sd_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-01T19:08:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251001_bos_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-01T22:08:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251002_cin_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-02T01:08:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251002_det_cle", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-02T19:08:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251002_sd_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-02T21:08:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251003_bos_nyy", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-03T00:08:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251003_sf_lar", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-03T00:15:00Z", - "home_team_canonical_id": "team_nfl_lar", - "away_team_canonical_id": "team_nfl_sf", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "venue": "Empower Field at Mile High", + "stadium_canonical_id": "stadium_nfl_empower_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251003_sf_lar", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-03T00:15:00Z", + "season": "2025", + "date": "2025-10-02", + "time": "5:15p", + "home_team": "Los Angeles Rams", + "away_team": "San Francisco 49ers", + "home_team_abbrev": "LAR", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_nfl_lar", "away_team_canonical_id": "team_nfl_sf", + "venue": "SoFi Stadium", "stadium_canonical_id": "stadium_nfl_sofi_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20251004_phx_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-10-04T00:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20251004_orl_hou", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-10-04T00:00:00Z", - "home_team_canonical_id": "team_nwsl_hou", - "away_team_canonical_id": "team_nwsl_orl", - "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251004_chc_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-04T18:08:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251004_nsh_mtl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-04T18:30:00Z", - "home_team_canonical_id": "team_mls_mtl", - "away_team_canonical_id": "team_mls_nsh", - "stadium_canonical_id": "stadium_mls_stade_saputo", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251004_clt_dc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-04T18:30:00Z", - "home_team_canonical_id": "team_mls_dc", - "away_team_canonical_id": "team_mls_clt", - "stadium_canonical_id": "stadium_mls_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251004_nyy_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-04T20:08:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251004_lag_dal", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-04T20:30:00Z", - "home_team_canonical_id": "team_mls_dal", - "away_team_canonical_id": "team_mls_lag", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251004_lad_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-04T22:38:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251004_ne_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-04T23:30:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_ne", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251004_cin_ny", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-04T23:30:00Z", - "home_team_canonical_id": "team_mls_ny", - "away_team_canonical_id": "team_mls_cin", - "stadium_canonical_id": "stadium_mls_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251004_clb_orl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-04T23:30:00Z", - "home_team_canonical_id": "team_mls_orl", - "away_team_canonical_id": "team_mls_clb", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251004_nyc_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-04T23:30:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20251004_rgn_ncc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-10-04T23:30:00Z", - "home_team_canonical_id": "team_nwsl_ncc", - "away_team_canonical_id": "team_nwsl_rgn", - "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251005_stl_aus", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-05T00:30:00Z", - "home_team_canonical_id": "team_mls_aus", - "away_team_canonical_id": "team_mls_stl", - "stadium_canonical_id": "stadium_mls_q2_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251005_tor_chi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-05T00:30:00Z", - "home_team_canonical_id": "team_mls_chi", - "away_team_canonical_id": "team_mls_tor", - "stadium_canonical_id": "stadium_mls_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251005_sd_hou", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-05T00:30:00Z", - "home_team_canonical_id": "team_mls_hou", - "away_team_canonical_id": "team_mls_sd", - "stadium_canonical_id": "stadium_mls_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251005_skc_min", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-05T00:30:00Z", - "home_team_canonical_id": "team_mls_min", - "away_team_canonical_id": "team_mls_skc", - "stadium_canonical_id": "stadium_mls_allianz_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251005_det_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-05T00:38:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251005_col_slc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-05T01:30:00Z", - "home_team_canonical_id": "team_mls_slc", - "away_team_canonical_id": "team_mls_col", - "stadium_canonical_id": "stadium_mls_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20251005_bay_por", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-10-05T02:00:00Z", - "home_team_canonical_id": "team_nwsl_por", - "away_team_canonical_id": "team_nwsl_bay", - "stadium_canonical_id": "stadium_nwsl_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251005_por_sea", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-05T02:30:00Z", - "home_team_canonical_id": "team_mls_sea", - "away_team_canonical_id": "team_mls_por", - "stadium_canonical_id": "stadium_mls_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251005_lv_ind", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-05T17:00:00Z", - "home_team_canonical_id": "team_nfl_ind", - "away_team_canonical_id": "team_nfl_lv", - "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251005_nyg_no", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-05T17:00:00Z", - "home_team_canonical_id": "team_nfl_no", - "away_team_canonical_id": "team_nfl_nyg", - "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251005_dal_nyj", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-05T17:00:00Z", - "home_team_canonical_id": "team_nfl_nyj", - "away_team_canonical_id": "team_nfl_dal", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251005_den_phi", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-05T17:00:00Z", - "home_team_canonical_id": "team_nfl_phi", - "away_team_canonical_id": "team_nfl_den", - "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251005_mia_car", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-05T17:00:00Z", - "home_team_canonical_id": "team_nfl_car", - "away_team_canonical_id": "team_nfl_mia", - "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251005_hou_bal", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-05T17:00:00Z", - "home_team_canonical_id": "team_nfl_bal", - "away_team_canonical_id": "team_nfl_hou", - "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20251005_sdw_wsh", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-10-05T17:00:00Z", - "home_team_canonical_id": "team_nwsl_wsh", - "away_team_canonical_id": "team_nwsl_sdw", - "stadium_canonical_id": "stadium_nwsl_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251005_nyg_no", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-05T17:00:00Z", - "home_team_canonical_id": "team_nfl_no", - "away_team_canonical_id": "team_nfl_nyg", - "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251005_mia_car", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-05T17:00:00Z", - "home_team_canonical_id": "team_nfl_car", - "away_team_canonical_id": "team_nfl_mia", - "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251005_lv_ind", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-05T17:00:00Z", + "season": "2025", + "date": "2025-10-05", + "time": "1p", + "home_team": "Indianapolis Colts", + "away_team": "Las Vegas Raiders", + "home_team_abbrev": "IND", + "away_team_abbrev": "LV", "home_team_canonical_id": "team_nfl_ind", "away_team_canonical_id": "team_nfl_lv", + "venue": "Lucas Oil Stadium", "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251005_hou_bal", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-05T17:00:00Z", - "home_team_canonical_id": "team_nfl_bal", - "away_team_canonical_id": "team_nfl_hou", - "stadium_canonical_id": "stadium_nfl_mt_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251005_den_phi", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-05T17:00:00Z", - "home_team_canonical_id": "team_nfl_phi", - "away_team_canonical_id": "team_nfl_den", - "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251005_dal_nyj", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-05T17:00:00Z", + "season": "2025", + "date": "2025-10-05", + "time": "1p", + "home_team": "New York Jets", + "away_team": "Dallas Cowboys", + "home_team_abbrev": "NYJ", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nfl_nyj", "away_team_canonical_id": "team_nfl_dal", + "venue": "MetLife Stadium", "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_wnba_2025_20251005_phx_lv", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-10-05T19:00:00Z", - "home_team_canonical_id": "team_wnba_lv", - "away_team_canonical_id": "team_wnba_phx", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20251005_uta_chi", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-10-05T20:00:00Z", - "home_team_canonical_id": "team_nwsl_chi", - "away_team_canonical_id": "team_nwsl_uta", - "stadium_canonical_id": "stadium_nwsl_seatgeek_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20251005_sea_njy", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-10-05T20:00:00Z", - "home_team_canonical_id": "team_nwsl_njy", - "away_team_canonical_id": "team_nwsl_sea", - "stadium_canonical_id": "stadium_nwsl_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251005_ten_ari", + "canonical_id": "game_nfl_2026_20251005_nyg_no", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-10-05T20:05:00Z", - "home_team_canonical_id": "team_nfl_ari", - "away_team_canonical_id": "team_nfl_ten", - "stadium_canonical_id": "stadium_nfl_state_farm_stadium", + "date": "2025-10-05", + "time": "12p", + "home_team": "New Orleans Saints", + "away_team": "New York Giants", + "home_team_abbrev": "NO", + "away_team_abbrev": "NYG", + "home_team_canonical_id": "team_nfl_no", + "away_team_canonical_id": "team_nfl_nyg", + "venue": "Caesars Superdome", + "stadium_canonical_id": "stadium_nfl_caesars_superdome", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251005_tb_sea", + "canonical_id": "game_nfl_2026_20251005_hou_bal", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-10-05T20:05:00Z", - "home_team_canonical_id": "team_nfl_sea", - "away_team_canonical_id": "team_nfl_tb", - "stadium_canonical_id": "stadium_nfl_lumen_field", + "date": "2025-10-05", + "time": "1p", + "home_team": "Baltimore Ravens", + "away_team": "Houston Texans", + "home_team_abbrev": "BAL", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nfl_bal", + "away_team_canonical_id": "team_nfl_hou", + "venue": "M&T Bank Stadium", + "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2026_20251005_ten_ari", + "canonical_id": "game_nfl_2026_20251005_mia_car", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-05T20:05:00Z", - "home_team_canonical_id": "team_nfl_ari", - "away_team_canonical_id": "team_nfl_ten", - "stadium_canonical_id": "stadium_nfl_state_farm_stadium", + "season": "2025", + "date": "2025-10-05", + "time": "1p", + "home_team": "Carolina Panthers", + "away_team": "Miami Dolphins", + "home_team_abbrev": "CAR", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nfl_car", + "away_team_canonical_id": "team_nfl_mia", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251005_den_phi", + "sport": "NFL", + "season": "2025", + "date": "2025-10-05", + "time": "1p", + "home_team": "Philadelphia Eagles", + "away_team": "Denver Broncos", + "home_team_abbrev": "PHI", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nfl_phi", + "away_team_canonical_id": "team_nfl_den", + "venue": "Lincoln Financial Field", + "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251005_tb_sea", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-05T20:05:00Z", + "season": "2025", + "date": "2025-10-05", + "time": "1:05p", + "home_team": "Seattle Seahawks", + "away_team": "Tampa Bay Buccaneers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_nfl_sea", "away_team_canonical_id": "team_nfl_tb", + "venue": "Lumen Field", "stadium_canonical_id": "stadium_nfl_lumen_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20251005_nyy_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-05T20:08:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251005_det_cin", + "canonical_id": "game_nfl_2026_20251005_ten_ari", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-10-05T20:25:00Z", - "home_team_canonical_id": "team_nfl_cin", - "away_team_canonical_id": "team_nfl_det", - "stadium_canonical_id": "stadium_nfl_paycor_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251005_was_lac", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-05T20:25:00Z", - "home_team_canonical_id": "team_nfl_lac", - "away_team_canonical_id": "team_nfl_was", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "date": "2025-10-05", + "time": "1:05p", + "home_team": "Arizona Cardinals", + "away_team": "Tennessee Titans", + "home_team_abbrev": "ARI", + "away_team_abbrev": "TEN", + "home_team_canonical_id": "team_nfl_ari", + "away_team_canonical_id": "team_nfl_ten", + "venue": "State Farm Stadium", + "stadium_canonical_id": "stadium_nfl_state_farm_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251005_was_lac", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-05T20:25:00Z", + "season": "2025", + "date": "2025-10-05", + "time": "1:25p", + "home_team": "Los Angeles Chargers", + "away_team": "Washington Commanders", + "home_team_abbrev": "LAC", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nfl_lac", "away_team_canonical_id": "team_nfl_was", + "venue": "SoFi Stadium", "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251005_det_cin", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-05T20:25:00Z", + "season": "2025", + "date": "2025-10-05", + "time": "4:25p", + "home_team": "Cincinnati Bengals", + "away_team": "Detroit Lions", + "home_team_abbrev": "CIN", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nfl_cin", "away_team_canonical_id": "team_nfl_det", + "venue": "Paycor Stadium", "stadium_canonical_id": "stadium_nfl_paycor_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251005_sj_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-05T22:00:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_sj", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251006_det_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-06T00:03:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251006_ne_buf", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-06T00:20:00Z", - "home_team_canonical_id": "team_nfl_buf", - "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_highmark_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251006_ne_buf", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-06T00:20:00Z", + "season": "2025", + "date": "2025-10-05", + "time": "8:20p", + "home_team": "Buffalo Bills", + "away_team": "New England Patriots", + "home_team_abbrev": "BUF", + "away_team_abbrev": "NE", "home_team_canonical_id": "team_nfl_buf", "away_team_canonical_id": "team_nfl_ne", + "venue": "Highmark Stadium", "stadium_canonical_id": "stadium_nfl_highmark_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251006_atl_lafc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-06T01:00:00Z", - "home_team_canonical_id": "team_mls_lafc", - "away_team_canonical_id": "team_mls_atl", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251006_lad_phi", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-06T22:08:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251007_kc_jax", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-07T00:15:00Z", - "home_team_canonical_id": "team_nfl_jax", - "away_team_canonical_id": "team_nfl_kc", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251007_kc_jax", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-07T00:15:00Z", + "season": "2025", + "date": "2025-10-06", + "time": "8:15p", + "home_team": "Jacksonville Jaguars", + "away_team": "Kansas City Chiefs", + "home_team_abbrev": "JAX", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_nfl_jax", "away_team_canonical_id": "team_nfl_kc", + "venue": "EverBank Stadium", "stadium_canonical_id": "stadium_nfl_everbank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251007_chc_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-07T01:08:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20251007_kcc_ang", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-10-07T02:30:00Z", - "home_team_canonical_id": "team_nwsl_ang", - "away_team_canonical_id": "team_nwsl_kcc", - "stadium_canonical_id": "stadium_nwsl_bmo_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251007_chi_fla", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-07T04:00:00Z", + "season": "2025", + "date": "2025-10-07", + "time": "5p", + "home_team": "Florida Panthers", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "FLA", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nhl_fla", "away_team_canonical_id": "team_nhl_chi", + "venue": "Amerant Bank Arena", "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251007_pit_nyr", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-07T04:00:00Z", + "season": "2025", + "date": "2025-10-07", + "time": "8p", + "home_team": "New York Rangers", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "NYR", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_nhl_nyr", "away_team_canonical_id": "team_nhl_pit", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251007_col_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-07T07:00:00Z", + "season": "2025", + "date": "2025-10-07", + "time": "7:30p", + "home_team": "Los Angeles Kings", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "LA", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_nhl_la", "away_team_canonical_id": "team_nhl_col", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251007_sea_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-07T20:08:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251008_tor_nyy_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-08T00:08:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251008_mtl_tor", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-08T04:00:00Z", + "season": "2025", + "date": "2025-10-08", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "TOR", + "away_team_abbrev": "MTL", "home_team_canonical_id": "team_nhl_tor", "away_team_canonical_id": "team_nhl_mtl", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251008_bos_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-08T04:00:00Z", + "season": "2025", + "date": "2025-10-08", + "time": "7:30p", + "home_team": "Washington Capitals", + "away_team": "Boston Bruins", + "home_team_abbrev": "WAS", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_nhl_was", "away_team_canonical_id": "team_nhl_bos", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251008_cgy_edm", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-08T06:00:00Z", + "season": "2025", + "date": "2025-10-08", + "time": "8p", + "home_team": "Edmonton Oilers", + "away_team": "Calgary Flames", + "home_team_abbrev": "EDM", + "away_team_abbrev": "CGY", "home_team_canonical_id": "team_nhl_edm", "away_team_canonical_id": "team_nhl_cgy", + "venue": "Rogers Place", "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251008_la_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-08T07:00:00Z", + "season": "2025", + "date": "2025-10-08", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "VGK", + "away_team_abbrev": "LA", "home_team_canonical_id": "team_nhl_vgk", "away_team_canonical_id": "team_nhl_la", + "venue": "T-Mobile Arena", "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251008_sea_det", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-08T19:08:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251008_mil_chc", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-08T21:08:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251008_tor_nyy_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-08T23:08:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20251009_lv_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-10-09T00:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251009_phi_lad_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-09T01:08:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251009_tor_lafc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-09T02:30:00Z", - "home_team_canonical_id": "team_mls_lafc", - "away_team_canonical_id": "team_mls_tor", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251009_chi_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-09T04:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251009_nyr_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-09T04:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251009_njd_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-09T04:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251009_mtl_det", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-09T04:00:00Z", + "season": "2025", + "date": "2025-10-09", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "DET", + "away_team_abbrev": "MTL", "home_team_canonical_id": "team_nhl_det", "away_team_canonical_id": "team_nhl_mtl", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251009_phi_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-09T04:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251009_nyi_pit", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-09T04:00:00Z", + "season": "2025", + "date": "2025-10-09", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "New York Islanders", + "home_team_abbrev": "PIT", + "away_team_abbrev": "NYI", "home_team_canonical_id": "team_nhl_pit", "away_team_canonical_id": "team_nhl_nyi", + "venue": "PPG Paints Arena", "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251009_phi_fla", + "sport": "NHL", + "season": "2025", + "date": "2025-10-09", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "FLA", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_phi", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251009_nyr_buf", + "sport": "NHL", + "season": "2025", + "date": "2025-10-09", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "New York Rangers", + "home_team_abbrev": "BUF", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251009_chi_bos", + "sport": "NHL", + "season": "2025", + "date": "2025-10-09", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_chi", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251009_ott_tb", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-09T04:00:00Z", + "season": "2025", + "date": "2025-10-09", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Ottawa Senators", + "home_team_abbrev": "TB", + "away_team_abbrev": "OTT", "home_team_canonical_id": "team_nhl_tb", "away_team_canonical_id": "team_nhl_ott", + "venue": "Amalie Arena", "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251009_njd_car", + "sport": "NHL", + "season": "2025", + "date": "2025-10-09", + "time": "7:30p", + "home_team": "Carolina Hurricanes", + "away_team": "New Jersey Devils", + "home_team_abbrev": "CAR", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_njd", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251009_cbj_nsh", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-09T05:00:00Z", + "season": "2025", + "date": "2025-10-09", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "NSH", + "away_team_abbrev": "CBJ", "home_team_canonical_id": "team_nhl_nsh", "away_team_canonical_id": "team_nhl_cbj", + "venue": "Bridgestone Arena", "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251009_min_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-09T05:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251009_dal_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-09T05:00:00Z", + "season": "2025", + "date": "2025-10-09", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "Dallas Stars", + "home_team_abbrev": "WPG", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_dal", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251009_ari_col", + "canonical_id": "game_nhl_2025_20251009_min_stl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-09T06:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251009_ana_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-09T07:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251009_vgk_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-09T07:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251009_cgy_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-09T07:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_rogers_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251009_phi_lad_2", - "sport": "MLB", "season": "2025", - "game_datetime_utc": "2025-10-09T22:08:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251010_phi_nyg", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-10T00:15:00Z", - "home_team_canonical_id": "team_nfl_nyg", - "away_team_canonical_id": "team_nfl_phi", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "date": "2025-10-09", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Minnesota Wild", + "home_team_abbrev": "STL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_min", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251010_phi_nyg", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-10T00:15:00Z", + "season": "2025", + "date": "2025-10-09", + "time": "8:15p", + "home_team": "New York Giants", + "away_team": "Philadelphia Eagles", + "home_team_abbrev": "NYG", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nfl_nyg", "away_team_canonical_id": "team_nfl_phi", + "venue": "MetLife Stadium", "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20251010_mil_chc", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20251009_ari_col", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-10-10T01:08:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20251010_chi_rgn", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-10-10T23:30:00Z", - "home_team_canonical_id": "team_nwsl_rgn", - "away_team_canonical_id": "team_nwsl_chi", - "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_wnba_2025_20251011_lv_phx", - "sport": "WNBA", - "season": "2025", - "game_datetime_utc": "2025-10-11T00:00:00Z", - "home_team_canonical_id": "team_wnba_phx", - "away_team_canonical_id": "team_wnba_lv", - "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20251011_por_orl", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-10-11T00:00:00Z", - "home_team_canonical_id": "team_nwsl_orl", - "away_team_canonical_id": "team_nwsl_por", - "stadium_canonical_id": "stadium_nwsl_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251011_det_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-11T00:08:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20251011_bay_sea", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-10-11T02:30:00Z", - "home_team_canonical_id": "team_nwsl_sea", - "away_team_canonical_id": "team_nwsl_bay", - "stadium_canonical_id": "stadium_nwsl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251011_buf_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-11T04:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251011_phi_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-11T04:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251011_tor_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-11T04:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251011_ott_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-11T04:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251011_was_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-11T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251011_nyr_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-11T04:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251011_njd_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-11T04:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_amalie_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251011_mtl_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-11T05:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251011_cbj_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-11T05:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251011_ari_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-11T05:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", + "date": "2025-10-09", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "Utah Club", + "home_team_abbrev": "COL", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_col", "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251009_vgk_sj", + "sport": "NHL", + "season": "2025", + "date": "2025-10-09", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "SJ", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251009_ana_sea", + "sport": "NHL", + "season": "2025", + "date": "2025-10-09", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "SEA", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251009_cgy_van", + "sport": "NHL", + "season": "2025", + "date": "2025-10-09", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Calgary Flames", + "home_team_abbrev": "VAN", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251011_la_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-11T05:00:00Z", + "season": "2025", + "date": "2025-10-11", + "time": "12:30p", + "home_team": "Winnipeg Jets", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "WPG", + "away_team_abbrev": "LA", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_la", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251011_stl_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-11T06:00:00Z", + "season": "2025", + "date": "2025-10-11", + "time": "2p", + "home_team": "Calgary Flames", + "away_team": "St. Louis Blues", + "home_team_abbrev": "CGY", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_nhl_cgy", "away_team_canonical_id": "team_nhl_stl", + "venue": "Scotiabank Saddledome", "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251011_tor_det", + "sport": "NHL", + "season": "2025", + "date": "2025-10-11", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "DET", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251011_mtl_chi", + "sport": "NHL", + "season": "2025", + "date": "2025-10-11", + "time": "6p", + "home_team": "Chicago Blackhawks", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "CHI", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251011_buf_bos", + "sport": "NHL", + "season": "2025", + "date": "2025-10-11", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "BOS", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_buf", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251011_phi_car", + "sport": "NHL", + "season": "2025", + "date": "2025-10-11", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "CAR", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_phi", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251011_ott_fla", + "sport": "NHL", + "season": "2025", + "date": "2025-10-11", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Ottawa Senators", + "home_team_abbrev": "FLA", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251011_nyr_pit", + "sport": "NHL", + "season": "2025", + "date": "2025-10-11", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "New York Rangers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251011_njd_tb", + "sport": "NHL", + "season": "2025", + "date": "2025-10-11", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "New Jersey Devils", + "home_team_abbrev": "TB", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_njd", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251011_was_nyi", + "sport": "NHL", + "season": "2025", + "date": "2025-10-11", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Washington Capitals", + "home_team_abbrev": "NYI", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_was", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251011_ari_nsh", + "sport": "NHL", + "season": "2025", + "date": "2025-10-11", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "Utah Club", + "home_team_abbrev": "NSH", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251011_cbj_min", + "sport": "NHL", + "season": "2025", + "date": "2025-10-11", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251011_dal_col", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-11T06:00:00Z", + "season": "2025", + "date": "2025-10-11", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "Dallas Stars", + "home_team_abbrev": "COL", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nhl_col", "away_team_canonical_id": "team_nhl_dal", + "venue": "Ball Arena", "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251011_van_edm", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-11T06:00:00Z", + "season": "2025", + "date": "2025-10-11", + "time": "8p", + "home_team": "Edmonton Oilers", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "EDM", + "away_team_abbrev": "VAN", "home_team_canonical_id": "team_nhl_edm", "away_team_canonical_id": "team_nhl_van", + "venue": "Rogers Place", "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251011_vgk_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-11T07:00:00Z", + "season": "2025", + "date": "2025-10-11", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "SEA", + "away_team_abbrev": "VGK", "home_team_canonical_id": "team_nhl_sea", "away_team_canonical_id": "team_nhl_vgk", + "venue": "Climate Pledge Arena", "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251011_ana_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-11T07:00:00Z", + "season": "2025", + "date": "2025-10-11", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "SJ", + "away_team_abbrev": "ANA", "home_team_canonical_id": "team_nhl_sj", "away_team_canonical_id": "team_nhl_ana", + "venue": "SAP Center", "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20251011_njy_kcc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-10-11T21:00:00Z", - "home_team_canonical_id": "team_nwsl_kcc", - "away_team_canonical_id": "team_nwsl_njy", - "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251011_atl_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-11T23:30:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_atl", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251011_van_orl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-11T23:30:00Z", - "home_team_canonical_id": "team_mls_orl", - "away_team_canonical_id": "team_mls_van", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20251011_wsh_ncc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-10-11T23:30:00Z", - "home_team_canonical_id": "team_nwsl_ncc", - "away_team_canonical_id": "team_nwsl_wsh", - "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251012_chc_mil", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-12T00:08:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251012_slc_sea", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-12T01:30:00Z", - "home_team_canonical_id": "team_mls_sea", - "away_team_canonical_id": "team_mls_slc", - "stadium_canonical_id": "stadium_mls_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20251012_sdw_uta", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-10-12T02:00:00Z", - "home_team_canonical_id": "team_nwsl_uta", - "away_team_canonical_id": "team_nwsl_sdw", - "stadium_canonical_id": "stadium_nwsl_america_first_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251012_dal_lag", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-12T02:30:00Z", - "home_team_canonical_id": "team_mls_lag", - "away_team_canonical_id": "team_mls_dal", - "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251012_was_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-12T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251012_ari_ind", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-12T17:00:00Z", - "home_team_canonical_id": "team_nfl_ind", - "away_team_canonical_id": "team_nfl_ari", - "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251012_lac_mia", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-12T17:00:00Z", - "home_team_canonical_id": "team_nfl_mia", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251012_ne_no", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-12T17:00:00Z", - "home_team_canonical_id": "team_nfl_no", - "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251012_cle_pit", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-12T17:00:00Z", - "home_team_canonical_id": "team_nfl_pit", - "away_team_canonical_id": "team_nfl_cle", - "stadium_canonical_id": "stadium_nfl_acrisure_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251012_dal_car", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-12T17:00:00Z", - "home_team_canonical_id": "team_nfl_car", - "away_team_canonical_id": "team_nfl_dal", - "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251012_sea_jax", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-12T17:00:00Z", - "home_team_canonical_id": "team_nfl_jax", - "away_team_canonical_id": "team_nfl_sea", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251012_lar_bal", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-12T17:00:00Z", - "home_team_canonical_id": "team_nfl_bal", - "away_team_canonical_id": "team_nfl_lar", - "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251012_sea_jax", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-12T17:00:00Z", - "home_team_canonical_id": "team_nfl_jax", - "away_team_canonical_id": "team_nfl_sea", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251012_ne_no", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-12T17:00:00Z", - "home_team_canonical_id": "team_nfl_no", - "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251012_lar_bal", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-12T17:00:00Z", - "home_team_canonical_id": "team_nfl_bal", - "away_team_canonical_id": "team_nfl_lar", - "stadium_canonical_id": "stadium_nfl_mt_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251012_lac_mia", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-12T17:00:00Z", - "home_team_canonical_id": "team_nfl_mia", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251012_dal_car", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-12T17:00:00Z", + "season": "2025", + "date": "2025-10-12", + "time": "1p", + "home_team": "Carolina Panthers", + "away_team": "Dallas Cowboys", + "home_team_abbrev": "CAR", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nfl_car", "away_team_canonical_id": "team_nfl_dal", + "venue": "Bank of America Stadium", "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2026_20251012_cle_pit", + "canonical_id": "game_nfl_2026_20251012_lac_mia", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-12T17:00:00Z", - "home_team_canonical_id": "team_nfl_pit", - "away_team_canonical_id": "team_nfl_cle", - "stadium_canonical_id": "stadium_nfl_acrisure_stadium", + "season": "2025", + "date": "2025-10-12", + "time": "1p", + "home_team": "Miami Dolphins", + "away_team": "Los Angeles Chargers", + "home_team_abbrev": "MIA", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nfl_mia", + "away_team_canonical_id": "team_nfl_lac", + "venue": "Hard Rock Stadium", + "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251012_ari_ind", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-12T17:00:00Z", + "season": "2025", + "date": "2025-10-12", + "time": "1p", + "home_team": "Indianapolis Colts", + "away_team": "Arizona Cardinals", + "home_team_abbrev": "IND", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_nfl_ind", "away_team_canonical_id": "team_nfl_ari", + "venue": "Lucas Oil Stadium", "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251012_ten_lv", + "canonical_id": "game_nfl_2026_20251012_lar_bal", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-10-12T20:05:00Z", - "home_team_canonical_id": "team_nfl_lv", - "away_team_canonical_id": "team_nfl_ten", - "stadium_canonical_id": "stadium_nfl_allegiant_stadium", + "date": "2025-10-12", + "time": "1p", + "home_team": "Baltimore Ravens", + "away_team": "Los Angeles Rams", + "home_team_abbrev": "BAL", + "away_team_abbrev": "LAR", + "home_team_canonical_id": "team_nfl_bal", + "away_team_canonical_id": "team_nfl_lar", + "venue": "M&T Bank Stadium", + "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251012_sea_jax", + "sport": "NFL", + "season": "2025", + "date": "2025-10-12", + "time": "1p", + "home_team": "Jacksonville Jaguars", + "away_team": "Seattle Seahawks", + "home_team_abbrev": "JAX", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nfl_jax", + "away_team_canonical_id": "team_nfl_sea", + "venue": "EverBank Stadium", + "stadium_canonical_id": "stadium_nfl_everbank_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251012_cle_pit", + "sport": "NFL", + "season": "2025", + "date": "2025-10-12", + "time": "1p", + "home_team": "Pittsburgh Steelers", + "away_team": "Cleveland Browns", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nfl_pit", + "away_team_canonical_id": "team_nfl_cle", + "venue": "Acrisure Stadium", + "stadium_canonical_id": "stadium_nfl_acrisure_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251012_ne_no", + "sport": "NFL", + "season": "2025", + "date": "2025-10-12", + "time": "12p", + "home_team": "New Orleans Saints", + "away_team": "New England Patriots", + "home_team_abbrev": "NO", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_nfl_no", + "away_team_canonical_id": "team_nfl_ne", + "venue": "Caesars Superdome", + "stadium_canonical_id": "stadium_nfl_caesars_superdome", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251012_ten_lv", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-12T20:05:00Z", + "season": "2025", + "date": "2025-10-12", + "time": "1:05p", + "home_team": "Las Vegas Raiders", + "away_team": "Tennessee Titans", + "home_team_abbrev": "LV", + "away_team_abbrev": "TEN", "home_team_canonical_id": "team_nfl_lv", "away_team_canonical_id": "team_nfl_ten", + "venue": "Allegiant Stadium", "stadium_canonical_id": "stadium_nfl_allegiant_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251012_cin_gb", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-12T20:25:00Z", - "home_team_canonical_id": "team_nfl_gb", - "away_team_canonical_id": "team_nfl_cin", - "stadium_canonical_id": "stadium_nfl_lambeau_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251012_sf_tb", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-12T20:25:00Z", - "home_team_canonical_id": "team_nfl_tb", - "away_team_canonical_id": "team_nfl_sf", - "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251012_sf_tb", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-12T20:25:00Z", + "season": "2025", + "date": "2025-10-12", + "time": "4:25p", + "home_team": "Tampa Bay Buccaneers", + "away_team": "San Francisco 49ers", + "home_team_abbrev": "TB", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_nfl_tb", "away_team_canonical_id": "team_nfl_sf", + "venue": "Raymond James Stadium", "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251012_cin_gb", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-12T20:25:00Z", + "season": "2025", + "date": "2025-10-12", + "time": "3:25p", + "home_team": "Green Bay Packers", + "away_team": "Cincinnati Bengals", + "home_team_abbrev": "GB", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_nfl_gb", "away_team_canonical_id": "team_nfl_cin", + "venue": "Lambeau Field", "stadium_canonical_id": "stadium_nfl_lambeau_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nwsl_2025_20251012_hou_ang", - "sport": "NWSL", + "canonical_id": "game_nhl_2025_20251012_was_nyr", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-10-12T21:00:00Z", - "home_team_canonical_id": "team_nwsl_ang", - "away_team_canonical_id": "team_nwsl_hou", - "stadium_canonical_id": "stadium_nwsl_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251012_lafc_aus", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-12T23:00:00Z", - "home_team_canonical_id": "team_mls_aus", - "away_team_canonical_id": "team_mls_lafc", - "stadium_canonical_id": "stadium_mls_q2_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251013_sea_tor_1", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-13T00:03:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251013_det_kc", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-13T00:20:00Z", - "home_team_canonical_id": "team_nfl_kc", - "away_team_canonical_id": "team_nfl_det", - "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", + "date": "2025-10-12", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Washington Capitals", + "home_team_abbrev": "NYR", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_was", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251013_det_kc", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-13T00:20:00Z", + "season": "2025", + "date": "2025-10-12", + "time": "7:20p", + "home_team": "Kansas City Chiefs", + "away_team": "Detroit Lions", + "home_team_abbrev": "KC", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nfl_kc", "away_team_canonical_id": "team_nfl_det", + "venue": "Arrowhead Stadium", "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251013_tb_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-13T04:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251013_col_buf", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-13T04:00:00Z", + "season": "2025", + "date": "2025-10-13", + "time": "12:30p", + "home_team": "Buffalo Sabres", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "BUF", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_nhl_buf", "away_team_canonical_id": "team_nhl_col", + "venue": "KeyBank Center", "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251013_njd_cbj", + "canonical_id": "game_nhl_2025_20251013_tb_bos", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-13T04:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251013_wpg_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-13T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_ubs_arena", + "season": "2025", + "date": "2025-10-13", + "time": "1p", + "home_team": "Boston Bruins", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_tb", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251013_nsh_ott", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-13T04:00:00Z", + "season": "2025", + "date": "2025-10-13", + "time": "1p", + "home_team": "Ottawa Senators", + "away_team": "Nashville Predators", + "home_team_abbrev": "OTT", + "away_team_abbrev": "NSH", "home_team_canonical_id": "team_nhl_ott", "away_team_canonical_id": "team_nhl_nsh", + "venue": "Canadian Tire Centre", "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251013_fla_phi", + "canonical_id": "game_nhl_2025_20251013_wpg_nyi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-13T04:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "season": "2025", + "date": "2025-10-13", + "time": "1p", + "home_team": "New York Islanders", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "NYI", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251013_det_tor", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-13T04:00:00Z", + "season": "2025", + "date": "2025-10-13", + "time": "2p", + "home_team": "Toronto Maple Leafs", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "TOR", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nhl_tor", "away_team_canonical_id": "team_nhl_det", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251013_ari_chi", + "canonical_id": "game_nhl_2025_20251013_njd_cbj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251013_la_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251013_stl_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-13T07:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_rogers_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251013_sea_tor_2", - "sport": "MLB", "season": "2025", - "game_datetime_utc": "2025-10-13T21:03:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_rogers_centre", + "date": "2025-10-13", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "New Jersey Devils", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_njd", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251013_buf_atl", - "sport": "NFL", + "canonical_id": "game_nhl_2025_20251013_fla_phi", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-10-13T23:15:00Z", - "home_team_canonical_id": "team_nfl_atl", - "away_team_canonical_id": "team_nfl_buf", - "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", + "date": "2025-10-13", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Florida Panthers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251013_buf_atl", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-13T23:15:00Z", + "season": "2025", + "date": "2025-10-13", + "time": "7:15p", + "home_team": "Atlanta Falcons", + "away_team": "Buffalo Bills", + "home_team_abbrev": "ATL", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nfl_atl", "away_team_canonical_id": "team_nfl_buf", + "venue": "Mercedes-Benz Stadium", "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20251014_lad_mil", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20251013_stl_van", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-10-14T00:08:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "date": "2025-10-13", + "time": "4:30p", + "home_team": "Vancouver Canucks", + "away_team": "St. Louis Blues", + "home_team_abbrev": "VAN", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251014_chi_was", - "sport": "NFL", + "canonical_id": "game_nhl_2025_20251013_la_min", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-10-14T00:15:00Z", - "home_team_canonical_id": "team_nfl_was", - "away_team_canonical_id": "team_nfl_chi", - "stadium_canonical_id": "stadium_nfl_northwest_stadium", + "date": "2025-10-13", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "MIN", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_la", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251014_chi_was", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-14T00:15:00Z", + "season": "2025", + "date": "2025-10-13", + "time": "8:15p", + "home_team": "Washington Commanders", + "away_team": "Chicago Bears", + "home_team_abbrev": "WAS", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nfl_was", "away_team_canonical_id": "team_nfl_chi", + "venue": "Northwest Stadium", "stadium_canonical_id": "stadium_nfl_northwest_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251014_sea_mtl", + "canonical_id": "game_nhl_2025_20251013_ari_chi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-14T04:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251014_edm_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-14T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251014_nsh_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-14T04:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "season": "2025", + "date": "2025-10-13", + "time": "7:30p", + "home_team": "Chicago Blackhawks", + "away_team": "Utah Club", + "home_team_abbrev": "CHI", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_ari", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251014_tb_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-14T04:00:00Z", + "season": "2025", + "date": "2025-10-14", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "WAS", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_nhl_was", "away_team_canonical_id": "team_nhl_tb", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251014_min_dal", + "canonical_id": "game_nhl_2025_20251014_sea_mtl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-14T05:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "season": "2025", + "date": "2025-10-14", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Seattle Kraken", + "home_team_abbrev": "MTL", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251014_edm_nyr", + "sport": "NHL", + "season": "2025", + "date": "2025-10-14", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "NYR", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251014_nsh_tor", + "sport": "NHL", + "season": "2025", + "date": "2025-10-14", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Nashville Predators", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251014_vgk_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-14T06:00:00Z", + "season": "2025", + "date": "2025-10-14", + "time": "7p", + "home_team": "Calgary Flames", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "CGY", + "away_team_abbrev": "VGK", "home_team_canonical_id": "team_nhl_cgy", "away_team_canonical_id": "team_nhl_vgk", + "venue": "Scotiabank Saddledome", "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251014_pit_ana", + "canonical_id": "game_nhl_2025_20251014_min_dal", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-14T07:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_honda_center", + "season": "2025", + "date": "2025-10-14", + "time": "8:30p", + "home_team": "Dallas Stars", + "away_team": "Minnesota Wild", + "home_team_abbrev": "DAL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_min", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251014_car_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-14T07:00:00Z", + "season": "2025", + "date": "2025-10-14", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "SJ", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nhl_sj", "away_team_canonical_id": "team_nhl_car", + "venue": "SAP Center", "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20251015_lad_mil", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20251014_pit_ana", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-10-15T00:08:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "date": "2025-10-14", + "time": "7:30p", + "home_team": "Anaheim Ducks", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "ANA", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_pit", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251015_ott_buf", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-15T04:00:00Z", + "season": "2025", + "date": "2025-10-15", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Ottawa Senators", + "home_team_abbrev": "BUF", + "away_team_abbrev": "OTT", "home_team_canonical_id": "team_nhl_buf", "away_team_canonical_id": "team_nhl_ott", + "venue": "KeyBank Center", "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251015_fla_det", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-15T04:00:00Z", + "season": "2025", + "date": "2025-10-15", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Florida Panthers", + "home_team_abbrev": "DET", + "away_team_abbrev": "FLA", "home_team_canonical_id": "team_nhl_det", "away_team_canonical_id": "team_nhl_fla", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251015_chi_stl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-15T05:00:00Z", + "season": "2025", + "date": "2025-10-15", + "time": "8:30p", + "home_team": "St. Louis Blues", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "STL", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nhl_stl", "away_team_canonical_id": "team_nhl_chi", + "venue": "Enterprise Center", "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251015_cgy_ari", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-15T06:00:00Z", + "season": "2025", + "date": "2025-10-15", + "time": "7:30p", + "home_team": "Utah Club", + "away_team": "Calgary Flames", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CGY", "home_team_canonical_id": "team_nhl_ari", "away_team_canonical_id": "team_nhl_cgy", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251016_tor_sea", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-16T00:08:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251016_col_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-16T04:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251016_nsh_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-16T04:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251016_fla_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-16T04:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251016_edm_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-16T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251016_sea_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-16T04:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251016_wpg_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-16T04:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251016_nyr_tor", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-16T04:00:00Z", + "season": "2025", + "date": "2025-10-16", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "New York Rangers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NYR", "home_team_canonical_id": "team_nhl_tor", "away_team_canonical_id": "team_nhl_nyr", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251016_col_cbj", + "sport": "NHL", + "season": "2025", + "date": "2025-10-16", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_col", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251016_nsh_mtl", + "sport": "NHL", + "season": "2025", + "date": "2025-10-16", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Nashville Predators", + "home_team_abbrev": "MTL", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251016_fla_njd", + "sport": "NHL", + "season": "2025", + "date": "2025-10-16", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Florida Panthers", + "home_team_abbrev": "NJ", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251016_sea_ott", + "sport": "NHL", + "season": "2025", + "date": "2025-10-16", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Seattle Kraken", + "home_team_abbrev": "OTT", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251016_wpg_phi", + "sport": "NHL", + "season": "2025", + "date": "2025-10-16", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "PHI", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251016_edm_nyi", + "sport": "NHL", + "season": "2025", + "date": "2025-10-16", + "time": "7:30p", + "home_team": "New York Islanders", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "NYI", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_edm", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251016_van_dal", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-16T05:00:00Z", + "season": "2025", + "date": "2025-10-16", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "DAL", + "away_team_abbrev": "VAN", "home_team_canonical_id": "team_nhl_dal", "away_team_canonical_id": "team_nhl_van", + "venue": "American Airlines Center", "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251016_car_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-16T07:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251016_pit_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-16T07:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251016_bos_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-16T07:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251016_mil_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-16T22:08:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251017_pit_cin", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-17T00:15:00Z", - "home_team_canonical_id": "team_nfl_cin", - "away_team_canonical_id": "team_nfl_pit", - "stadium_canonical_id": "stadium_nfl_paycor_stadium", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251017_pit_cin", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-17T00:15:00Z", + "season": "2025", + "date": "2025-10-16", + "time": "8:15p", + "home_team": "Cincinnati Bengals", + "away_team": "Pittsburgh Steelers", + "home_team_abbrev": "CIN", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_nfl_cin", "away_team_canonical_id": "team_nfl_pit", + "venue": "Paycor Stadium", "stadium_canonical_id": "stadium_nfl_paycor_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20251017_tor_sea_1", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20251016_pit_la", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-10-17T00:33:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_tmobile_park", + "date": "2025-10-16", + "time": "7p", + "home_team": "Los Angeles Kings", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "LA", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_pit", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251016_car_ana", + "sport": "NHL", + "season": "2025", + "date": "2025-10-16", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "ANA", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_car", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251016_bos_vgk", + "sport": "NHL", + "season": "2025", + "date": "2025-10-16", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Boston Bruins", + "home_team_abbrev": "VGK", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_bos", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251017_tb_det", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-17T04:00:00Z", + "season": "2025", + "date": "2025-10-17", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "DET", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_nhl_det", "away_team_canonical_id": "team_nhl_tb", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251017_min_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-17T04:00:00Z", + "season": "2025", + "date": "2025-10-17", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Minnesota Wild", + "home_team_abbrev": "WAS", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nhl_was", "away_team_canonical_id": "team_nhl_min", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251017_van_chi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-17T05:00:00Z", + "season": "2025", + "date": "2025-10-17", + "time": "7:30p", + "home_team": "Chicago Blackhawks", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "CHI", + "away_team_abbrev": "VAN", "home_team_canonical_id": "team_nhl_chi", "away_team_canonical_id": "team_nhl_van", + "venue": "United Center", "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251017_sj_ari", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-17T06:00:00Z", + "season": "2025", + "date": "2025-10-17", + "time": "7p", + "home_team": "Utah Club", + "away_team": "San Jose Sharks", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SJ", "home_team_canonical_id": "team_nhl_ari", "away_team_canonical_id": "team_nhl_sj", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251017_tor_sea_2", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-17T22:08:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251018_mil_lad", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-18T00:38:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20251018_ncc_bay", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-10-18T02:00:00Z", - "home_team_canonical_id": "team_nwsl_bay", - "away_team_canonical_id": "team_nwsl_ncc", - "stadium_canonical_id": "stadium_nwsl_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20251018_uta_sea", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-10-18T02:00:00Z", - "home_team_canonical_id": "team_nwsl_sea", - "away_team_canonical_id": "team_nwsl_uta", - "stadium_canonical_id": "stadium_nwsl_lumen_field", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251018_fla_buf", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-18T04:00:00Z", + "season": "2025", + "date": "2025-10-18", + "time": "1p", + "home_team": "Buffalo Sabres", + "away_team": "Florida Panthers", + "home_team_abbrev": "BUF", + "away_team_abbrev": "FLA", "home_team_canonical_id": "team_nhl_buf", "away_team_canonical_id": "team_nhl_fla", + "venue": "KeyBank Center", "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251018_tb_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-18T04:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251018_nyr_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-18T04:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251018_edm_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-18T04:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251018_nyi_ott", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-18T04:00:00Z", + "season": "2025", + "date": "2025-10-18", + "time": "3p", + "home_team": "Ottawa Senators", + "away_team": "New York Islanders", + "home_team_abbrev": "OTT", + "away_team_abbrev": "NYI", "home_team_canonical_id": "team_nhl_ott", "away_team_canonical_id": "team_nhl_nyi", + "venue": "Canadian Tire Centre", "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251018_min_phi", + "canonical_id": "game_nhl_2025_20251018_edm_njd", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-18T04:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "season": "2025", + "date": "2025-10-18", + "time": "3:30p", + "home_team": "New Jersey Devils", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "NJ", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251018_sea_tor", + "canonical_id": "game_nhl_2025_20251018_tb_cbj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-18T04:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "season": "2025", + "date": "2025-10-18", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251018_nyr_mtl", + "sport": "NHL", + "season": "2025", + "date": "2025-10-18", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "New York Rangers", + "home_team_abbrev": "MTL", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251018_dal_stl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-18T05:00:00Z", + "season": "2025", + "date": "2025-10-18", + "time": "6p", + "home_team": "St. Louis Blues", + "away_team": "Dallas Stars", + "home_team_abbrev": "STL", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nhl_stl", "away_team_canonical_id": "team_nhl_dal", + "venue": "Enterprise Center", "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251018_sea_tor", + "sport": "NHL", + "season": "2025", + "date": "2025-10-18", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Seattle Kraken", + "home_team_abbrev": "TOR", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251018_min_phi", + "sport": "NHL", + "season": "2025", + "date": "2025-10-18", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Minnesota Wild", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_min", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251018_nsh_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-18T05:00:00Z", + "season": "2025", + "date": "2025-10-18", + "time": "6p", + "home_team": "Winnipeg Jets", + "away_team": "Nashville Predators", + "home_team_abbrev": "WPG", + "away_team_abbrev": "NSH", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_nsh", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251018_bos_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-18T06:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251018_car_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-18T07:00:00Z", + "season": "2025", + "date": "2025-10-18", + "time": "6p", + "home_team": "Los Angeles Kings", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "LA", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nhl_la", "away_team_canonical_id": "team_nhl_car", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251018_pit_sj", + "canonical_id": "game_nhl_2025_20251018_bos_col", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-18T07:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_sap_center", + "season": "2025", + "date": "2025-10-18", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "Boston Bruins", + "home_team_abbrev": "COL", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251018_cgy_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-18T07:00:00Z", + "season": "2025", + "date": "2025-10-18", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Calgary Flames", + "home_team_abbrev": "VGK", + "away_team_abbrev": "CGY", "home_team_canonical_id": "team_nhl_vgk", "away_team_canonical_id": "team_nhl_cgy", + "venue": "T-Mobile Arena", "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nwsl_2025_20251018_orl_wsh", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-10-18T16:30:00Z", - "home_team_canonical_id": "team_nwsl_wsh", - "away_team_canonical_id": "team_nwsl_orl", - "stadium_canonical_id": "stadium_nwsl_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251018_dc_atl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-18T22:00:00Z", - "home_team_canonical_id": "team_mls_atl", - "away_team_canonical_id": "team_mls_dc", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251018_phi_clt", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-18T22:00:00Z", - "home_team_canonical_id": "team_mls_clt", - "away_team_canonical_id": "team_mls_phi", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251018_ny_clb", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-18T22:00:00Z", - "home_team_canonical_id": "team_mls_clb", - "away_team_canonical_id": "team_mls_ny", - "stadium_canonical_id": "stadium_mls_lowercom_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251018_mtl_cin", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-18T22:00:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_mtl", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251018_mia_nsh", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-18T22:00:00Z", - "home_team_canonical_id": "team_mls_nsh", - "away_team_canonical_id": "team_mls_mia", - "stadium_canonical_id": "stadium_mls_geodis_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251018_chi_ne", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-18T22:00:00Z", - "home_team_canonical_id": "team_mls_ne", - "away_team_canonical_id": "team_mls_chi", - "stadium_canonical_id": "stadium_mls_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251018_sea_nyc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-18T22:00:00Z", - "home_team_canonical_id": "team_mls_nyc", - "away_team_canonical_id": "team_mls_sea", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251018_orl_tor", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-18T22:00:00Z", - "home_team_canonical_id": "team_mls_tor", - "away_team_canonical_id": "team_mls_orl", - "stadium_canonical_id": "stadium_mls_bmo_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20251018_kcc_hou", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-10-18T23:30:00Z", - "home_team_canonical_id": "team_nwsl_hou", - "away_team_canonical_id": "team_nwsl_kcc", - "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251019_lafc_col", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-19T01:00:00Z", - "home_team_canonical_id": "team_mls_col", - "away_team_canonical_id": "team_mls_lafc", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251019_min_lag", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-19T01:00:00Z", - "home_team_canonical_id": "team_mls_lag", - "away_team_canonical_id": "team_mls_min", - "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251019_sd_por", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-19T01:00:00Z", - "home_team_canonical_id": "team_mls_por", - "away_team_canonical_id": "team_mls_sd", - "stadium_canonical_id": "stadium_mls_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251019_aus_sj", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-19T01:00:00Z", - "home_team_canonical_id": "team_mls_sj", - "away_team_canonical_id": "team_mls_aus", - "stadium_canonical_id": "stadium_mls_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251019_hou_skc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-19T01:00:00Z", - "home_team_canonical_id": "team_mls_skc", - "away_team_canonical_id": "team_mls_hou", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251019_slc_stl", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-19T01:00:00Z", - "home_team_canonical_id": "team_mls_stl", - "away_team_canonical_id": "team_mls_slc", - "stadium_canonical_id": "stadium_mls_citypark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251019_dal_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-19T01:00:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_dal", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20251019_chi_sdw", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-10-19T02:00:00Z", - "home_team_canonical_id": "team_nwsl_sdw", - "away_team_canonical_id": "team_nwsl_chi", - "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251019_edm_det", + "canonical_id": "game_nhl_2025_20251018_pit_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-19T04:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "season": "2025", + "date": "2025-10-18", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "SJ", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_pit", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251019_van_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-19T04:00:00Z", + "season": "2025", + "date": "2025-10-19", + "time": "12:30p", + "home_team": "Washington Capitals", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "WAS", + "away_team_abbrev": "VAN", "home_team_canonical_id": "team_nhl_was", "away_team_canonical_id": "team_nhl_van", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nhl_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251019_ana_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-19T05:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251019_bos_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-19T06:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251019_no_chi", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-19T17:00:00Z", - "home_team_canonical_id": "team_nfl_chi", - "away_team_canonical_id": "team_nfl_no", - "stadium_canonical_id": "stadium_nfl_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251019_mia_cle", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-19T17:00:00Z", - "home_team_canonical_id": "team_nfl_cle", - "away_team_canonical_id": "team_nfl_mia", - "stadium_canonical_id": "stadium_nfl_huntington_bank_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251019_ne_ten", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-19T17:00:00Z", - "home_team_canonical_id": "team_nfl_ten", - "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_nissan_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251019_lv_kc", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-19T17:00:00Z", - "home_team_canonical_id": "team_nfl_kc", - "away_team_canonical_id": "team_nfl_lv", - "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251019_phi_min", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-19T17:00:00Z", - "home_team_canonical_id": "team_nfl_min", - "away_team_canonical_id": "team_nfl_phi", - "stadium_canonical_id": "stadium_nfl_us_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251019_car_nyj", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-19T17:00:00Z", - "home_team_canonical_id": "team_nfl_nyj", - "away_team_canonical_id": "team_nfl_car", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251019_phi_min", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-19T17:00:00Z", - "home_team_canonical_id": "team_nfl_min", - "away_team_canonical_id": "team_nfl_phi", - "stadium_canonical_id": "stadium_nfl_us_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251019_no_chi", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-19T17:00:00Z", - "home_team_canonical_id": "team_nfl_chi", - "away_team_canonical_id": "team_nfl_no", - "stadium_canonical_id": "stadium_nfl_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251019_ne_ten", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-19T17:00:00Z", - "home_team_canonical_id": "team_nfl_ten", - "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_nissan_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251019_mia_cle", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-19T17:00:00Z", - "home_team_canonical_id": "team_nfl_cle", - "away_team_canonical_id": "team_nfl_mia", - "stadium_canonical_id": "stadium_nfl_huntington_bank_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251019_lv_kc", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-19T17:00:00Z", - "home_team_canonical_id": "team_nfl_kc", - "away_team_canonical_id": "team_nfl_lv", - "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251019_car_nyj", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-19T17:00:00Z", + "season": "2025", + "date": "2025-10-19", + "time": "1p", + "home_team": "New York Jets", + "away_team": "Carolina Panthers", + "home_team_abbrev": "NYJ", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nfl_nyj", "away_team_canonical_id": "team_nfl_car", + "venue": "MetLife Stadium", "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nwsl_2025_20251019_rgn_njy", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-10-19T19:00:00Z", - "home_team_canonical_id": "team_nwsl_njy", - "away_team_canonical_id": "team_nwsl_rgn", - "stadium_canonical_id": "stadium_nwsl_red_bull_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251019_nyg_den", + "canonical_id": "game_nfl_2026_20251019_lv_kc", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-10-19T20:05:00Z", - "home_team_canonical_id": "team_nfl_den", - "away_team_canonical_id": "team_nfl_nyg", - "stadium_canonical_id": "stadium_nfl_empower_field", + "date": "2025-10-19", + "time": "12p", + "home_team": "Kansas City Chiefs", + "away_team": "Las Vegas Raiders", + "home_team_abbrev": "KC", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_nfl_kc", + "away_team_canonical_id": "team_nfl_lv", + "venue": "Arrowhead Stadium", + "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251019_ind_lac", + "canonical_id": "game_nfl_2026_20251019_phi_min", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-10-19T20:05:00Z", - "home_team_canonical_id": "team_nfl_lac", - "away_team_canonical_id": "team_nfl_ind", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "date": "2025-10-19", + "time": "12p", + "home_team": "Minnesota Vikings", + "away_team": "Philadelphia Eagles", + "home_team_abbrev": "MIN", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nfl_min", + "away_team_canonical_id": "team_nfl_phi", + "venue": "U.S. Bank Stadium", + "stadium_canonical_id": "stadium_nfl_us_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2026_20251019_nyg_den", + "canonical_id": "game_nfl_2026_20251019_no_chi", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-19T20:05:00Z", - "home_team_canonical_id": "team_nfl_den", - "away_team_canonical_id": "team_nfl_nyg", - "stadium_canonical_id": "stadium_nfl_empower_field_at_mile_high", + "season": "2025", + "date": "2025-10-19", + "time": "12p", + "home_team": "Chicago Bears", + "away_team": "New Orleans Saints", + "home_team_abbrev": "CHI", + "away_team_abbrev": "NO", + "home_team_canonical_id": "team_nfl_chi", + "away_team_canonical_id": "team_nfl_no", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_nfl_soldier_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251019_mia_cle", + "sport": "NFL", + "season": "2025", + "date": "2025-10-19", + "time": "1p", + "home_team": "Cleveland Browns", + "away_team": "Miami Dolphins", + "home_team_abbrev": "CLE", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nfl_cle", + "away_team_canonical_id": "team_nfl_mia", + "venue": "Huntington Bank Field", + "stadium_canonical_id": "stadium_nfl_huntington_bank_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251019_ne_ten", + "sport": "NFL", + "season": "2025", + "date": "2025-10-19", + "time": "12p", + "home_team": "Tennessee Titans", + "away_team": "New England Patriots", + "home_team_abbrev": "TEN", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_nfl_ten", + "away_team_canonical_id": "team_nfl_ne", + "venue": "Nissan Stadium", + "stadium_canonical_id": "stadium_nfl_nissan_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251019_edm_det", + "sport": "NHL", + "season": "2025", + "date": "2025-10-19", + "time": "3p", + "home_team": "Detroit Red Wings", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "DET", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251019_ind_lac", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-19T20:05:00Z", + "season": "2025", + "date": "2025-10-19", + "time": "1:05p", + "home_team": "Los Angeles Chargers", + "away_team": "Indianapolis Colts", + "home_team_abbrev": "LAC", + "away_team_abbrev": "IND", "home_team_canonical_id": "team_nfl_lac", "away_team_canonical_id": "team_nfl_ind", + "venue": "SoFi Stadium", "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251019_was_dal", + "canonical_id": "game_nfl_2026_20251019_nyg_den", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-10-19T20:25:00Z", - "home_team_canonical_id": "team_nfl_dal", - "away_team_canonical_id": "team_nfl_was", - "stadium_canonical_id": "stadium_nfl_att_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251019_gb_ari", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-19T20:25:00Z", - "home_team_canonical_id": "team_nfl_ari", - "away_team_canonical_id": "team_nfl_gb", - "stadium_canonical_id": "stadium_nfl_state_farm_stadium", + "date": "2025-10-19", + "time": "2:05p", + "home_team": "Denver Broncos", + "away_team": "New York Giants", + "home_team_abbrev": "DEN", + "away_team_abbrev": "NYG", + "home_team_canonical_id": "team_nfl_den", + "away_team_canonical_id": "team_nfl_nyg", + "venue": "Empower Field at Mile High", + "stadium_canonical_id": "stadium_nfl_empower_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251019_was_dal", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-19T20:25:00Z", + "season": "2025", + "date": "2025-10-19", + "time": "3:25p", + "home_team": "Dallas Cowboys", + "away_team": "Washington Commanders", + "home_team_abbrev": "DAL", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nfl_dal", "away_team_canonical_id": "team_nfl_was", + "venue": "AT&T Stadium", "stadium_canonical_id": "stadium_nfl_att_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251019_gb_ari", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-19T20:25:00Z", + "season": "2025", + "date": "2025-10-19", + "time": "1:25p", + "home_team": "Arizona Cardinals", + "away_team": "Green Bay Packers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "GB", "home_team_canonical_id": "team_nfl_ari", "away_team_canonical_id": "team_nfl_gb", + "venue": "State Farm Stadium", "stadium_canonical_id": "stadium_nfl_state_farm_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nwsl_2025_20251019_por_ang", - "sport": "NWSL", + "canonical_id": "game_nhl_2025_20251019_ana_chi", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-10-19T21:00:00Z", - "home_team_canonical_id": "team_nwsl_ang", - "away_team_canonical_id": "team_nwsl_por", - "stadium_canonical_id": "stadium_nwsl_bmo_stadium", + "date": "2025-10-19", + "time": "6p", + "home_team": "Chicago Blackhawks", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "CHI", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_ana", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20251020_sea_tor", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20251019_bos_ari", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-10-20T00:03:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251020_atl_sf", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-20T00:20:00Z", - "home_team_canonical_id": "team_nfl_sf", - "away_team_canonical_id": "team_nfl_atl", - "stadium_canonical_id": "stadium_nfl_levis_stadium", + "date": "2025-10-19", + "time": "5p", + "home_team": "Utah Club", + "away_team": "Boston Bruins", + "home_team_abbrev": "ARI", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251020_atl_sf", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-20T00:20:00Z", + "season": "2025", + "date": "2025-10-19", + "time": "5:20p", + "home_team": "San Francisco 49ers", + "away_team": "Atlanta Falcons", + "home_team_abbrev": "SF", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nfl_sf", "away_team_canonical_id": "team_nfl_atl", + "venue": "Levi's Stadium", "stadium_canonical_id": "stadium_nfl_levis_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251020_buf_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-20T04:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251020_min_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-20T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251020_sea_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-20T04:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251020_wpg_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-20T06:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251020_car_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-20T07:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251020_tb_det", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-20T23:00:00Z", - "home_team_canonical_id": "team_nfl_det", - "away_team_canonical_id": "team_nfl_tb", - "stadium_canonical_id": "stadium_nfl_ford_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251020_tb_det", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-20T23:00:00Z", + "season": "2025", + "date": "2025-10-20", + "time": "7p", + "home_team": "Detroit Lions", + "away_team": "Tampa Bay Buccaneers", + "home_team_abbrev": "DET", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_nfl_det", "away_team_canonical_id": "team_nfl_tb", + "venue": "Ford Field", "stadium_canonical_id": "stadium_nfl_ford_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20251021_sea_tor", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20251020_sea_phi", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-10-21T00:10:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_rogers_centre", + "date": "2025-10-20", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Seattle Kraken", + "home_team_abbrev": "PHI", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251021_hou_sea", - "sport": "NFL", + "canonical_id": "game_nhl_2025_20251020_min_nyr", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-10-21T02:00:00Z", - "home_team_canonical_id": "team_nfl_sea", - "away_team_canonical_id": "team_nfl_hou", - "stadium_canonical_id": "stadium_nfl_lumen_field", + "date": "2025-10-20", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Minnesota Wild", + "home_team_abbrev": "NYR", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_min", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251020_buf_mtl", + "sport": "NHL", + "season": "2025", + "date": "2025-10-20", + "time": "7:30p", + "home_team": "Montreal Canadiens", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "MTL", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251020_wpg_cgy", + "sport": "NHL", + "season": "2025", + "date": "2025-10-20", + "time": "7:30p", + "home_team": "Calgary Flames", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "CGY", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251021_hou_sea", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-21T02:00:00Z", + "season": "2025", + "date": "2025-10-20", + "time": "7p", + "home_team": "Seattle Seahawks", + "away_team": "Houston Texans", + "home_team_abbrev": "SEA", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nfl_sea", "away_team_canonical_id": "team_nfl_hou", + "venue": "Lumen Field", "stadium_canonical_id": "stadium_nfl_lumen_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251021_fla_bos", + "canonical_id": "game_nhl_2025_20251020_car_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-21T04:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_td_garden", + "season": "2025", + "date": "2025-10-20", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "VGK", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_car", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251021_sj_nyi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-21T04:00:00Z", + "season": "2025", + "date": "2025-10-21", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "San Jose Sharks", + "home_team_abbrev": "NYI", + "away_team_abbrev": "SJ", "home_team_canonical_id": "team_nhl_nyi", "away_team_canonical_id": "team_nhl_sj", + "venue": "UBS Arena", "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251021_edm_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-21T04:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251021_van_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-21T04:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251021_njd_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-21T04:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251021_sea_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-21T04:00:00Z", + "season": "2025", + "date": "2025-10-21", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Seattle Kraken", + "home_team_abbrev": "WAS", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_nhl_was", "away_team_canonical_id": "team_nhl_sea", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251021_njd_tor", + "sport": "NHL", + "season": "2025", + "date": "2025-10-21", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "New Jersey Devils", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_njd", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251021_van_pit", + "sport": "NHL", + "season": "2025", + "date": "2025-10-21", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "PIT", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_van", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251021_edm_ott", + "sport": "NHL", + "season": "2025", + "date": "2025-10-21", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "OTT", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251021_hou_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-21T05:00:00Z", + "season": "2025", + "date": "2025-10-21", + "time": "6:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "Houston Rockets", + "home_team_abbrev": "OKC", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nba_okc", "away_team_canonical_id": "team_nba_hou", + "venue": "Paycom Center", "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251021_cbj_dal", + "canonical_id": "game_nhl_2025_20251021_fla_bos", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-21T05:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "season": "2025", + "date": "2025-10-21", + "time": "7:30p", + "home_team": "Boston Bruins", + "away_team": "Florida Panthers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_fla", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251021_ana_nsh", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-21T05:00:00Z", + "season": "2025", + "date": "2025-10-21", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "NSH", + "away_team_abbrev": "ANA", "home_team_canonical_id": "team_nhl_nsh", "away_team_canonical_id": "team_nhl_ana", + "venue": "Bridgestone Arena", "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251021_la_stl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-21T05:00:00Z", + "season": "2025", + "date": "2025-10-21", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "STL", + "away_team_abbrev": "LA", "home_team_canonical_id": "team_nhl_stl", "away_team_canonical_id": "team_nhl_la", + "venue": "Enterprise Center", "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251021_col_ari", + "canonical_id": "game_nhl_2025_20251021_cbj_dal", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-21T06:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_delta_center", + "season": "2025", + "date": "2025-10-21", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "DAL", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251021_gsw_lal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-21T07:00:00Z", + "season": "2025", + "date": "2025-10-21", + "time": "7p", + "home_team": "Los Angeles Lakers", + "away_team": "Golden State Warriors", + "home_team_abbrev": "LAL", + "away_team_abbrev": "GSW", "home_team_canonical_id": "team_nba_lal", "away_team_canonical_id": "team_nba_gsw", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251022_brk_cho", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-22T04:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_spectrum_center", + "canonical_id": "game_nhl_2025_20251021_col_ari", + "sport": "NHL", + "season": "2025", + "date": "2025-10-21", + "time": "8p", + "home_team": "Utah Club", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "ARI", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_col", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251022_cle_nyk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-22T04:00:00Z", + "season": "2025", + "date": "2025-10-22", + "time": "7p", + "home_team": "New York Knicks", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "NYK", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nba_nyk", "away_team_canonical_id": "team_nba_cle", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251022_brk_cho", + "sport": "NBA", + "season": "2025", + "date": "2025-10-22", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "CHA", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_brk", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251022_mia_orl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-22T04:00:00Z", + "season": "2025", + "date": "2025-10-22", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Miami Heat", + "home_team_abbrev": "ORL", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_nba_orl", "away_team_canonical_id": "team_nba_mia", + "venue": "Kia Center", "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251022_phi_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-22T04:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251022_tor_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-22T04:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251022_sac_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-22T04:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251022_det_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-22T04:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251022_min_njd", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-22T04:00:00Z", + "season": "2025", + "date": "2025-10-22", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Minnesota Wild", + "home_team_abbrev": "NJ", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nhl_njd", "away_team_canonical_id": "team_nhl_min", + "venue": "Prudential Center", "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251022_det_chi", + "canonical_id": "game_nba_2025_20251022_tor_atl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-22T05:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_united_center", + "season": "2025", + "date": "2025-10-22", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Toronto Raptors", + "home_team_abbrev": "ATL", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_tor", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251022_phi_bos", + "sport": "NBA", + "season": "2025", + "date": "2025-10-22", + "time": "7:30p", + "home_team": "Boston Celtics", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_phi", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251022_det_buf", + "sport": "NHL", + "season": "2025", + "date": "2025-10-22", + "time": "7:30p", + "home_team": "Buffalo Sabres", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "BUF", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_det", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251022_nop_mem", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-22T05:00:00Z", + "season": "2025", + "date": "2025-10-22", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "MEM", + "away_team_abbrev": "NOP", "home_team_canonical_id": "team_nba_mem", "away_team_canonical_id": "team_nba_nop", + "venue": "FedExForum", "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251022_det_chi", + "sport": "NBA", + "season": "2025", + "date": "2025-10-22", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Detroit Pistons", + "home_team_abbrev": "CHI", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_det", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251022_was_mil", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-22T05:00:00Z", + "season": "2025", + "date": "2025-10-22", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Washington Wizards", + "home_team_abbrev": "MIL", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nba_mil", "away_team_canonical_id": "team_nba_was", + "venue": "Fiserv Forum", "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251022_sas_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-22T05:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251022_lac_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-22T06:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251022_mtl_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-22T06:00:00Z", + "season": "2025", + "date": "2025-10-22", + "time": "6:30p", + "home_team": "Calgary Flames", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "CGY", + "away_team_abbrev": "MTL", "home_team_canonical_id": "team_nhl_cgy", "away_team_canonical_id": "team_nhl_mtl", + "venue": "Scotiabank Saddledome", "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251022_lac_uta", + "sport": "NBA", + "season": "2025", + "date": "2025-10-22", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "UTA", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_lac", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251022_sas_dal", + "sport": "NBA", + "season": "2025", + "date": "2025-10-22", + "time": "8:30p", + "home_team": "Dallas Mavericks", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "DAL", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_sas", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251022_min_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-22T07:00:00Z", + "season": "2025", + "date": "2025-10-22", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "POR", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nba_por", "away_team_canonical_id": "team_nba_min", + "venue": "Moda Center", "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mls_2025_20251023_orl_chi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-23T00:30:00Z", - "home_team_canonical_id": "team_mls_chi", - "away_team_canonical_id": "team_mls_orl", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251023_slc_por", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-23T02:30:00Z", - "home_team_canonical_id": "team_mls_por", - "away_team_canonical_id": "team_mls_slc", - "stadium_canonical_id": "stadium_mls_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251023_okc_ind", + "canonical_id": "game_nba_2025_20251022_sac_phx", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-23T04:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251023_ana_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-23T04:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251023_pit_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-23T04:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251023_det_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-23T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251023_sj_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-23T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251023_phi_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-23T04:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "season": "2025", + "date": "2025-10-22", + "time": "10p", + "home_team": "Phoenix Suns", + "away_team": "Sacramento Kings", + "home_team_abbrev": "PHX", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_sac", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251023_chi_tb", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-23T04:00:00Z", + "season": "2025", + "date": "2025-10-23", + "time": "6:45p", + "home_team": "Tampa Bay Lightning", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "TB", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nhl_tb", "away_team_canonical_id": "team_nhl_chi", + "venue": "Amalie Arena", "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251023_la_dal", + "canonical_id": "game_nhl_2025_20251023_sj_nyr", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-23T05:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "season": "2025", + "date": "2025-10-23", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "San Jose Sharks", + "home_team_abbrev": "NYR", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251023_pit_fla", + "sport": "NHL", + "season": "2025", + "date": "2025-10-23", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "FLA", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_pit", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251023_ana_bos", + "sport": "NHL", + "season": "2025", + "date": "2025-10-23", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "BOS", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_ana", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251023_det_nyi", + "sport": "NHL", + "season": "2025", + "date": "2025-10-23", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "NYI", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_det", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251023_phi_ott", + "sport": "NHL", + "season": "2025", + "date": "2025-10-23", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "OTT", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_phi", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251023_okc_ind", + "sport": "NBA", + "season": "2025", + "date": "2025-10-23", + "time": "7:30p", + "home_team": "Indiana Pacers", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "IND", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_okc", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251023_van_nsh", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-23T05:00:00Z", + "season": "2025", + "date": "2025-10-23", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "NSH", + "away_team_abbrev": "VAN", "home_team_canonical_id": "team_nhl_nsh", "away_team_canonical_id": "team_nhl_van", + "venue": "Bridgestone Arena", "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251023_ari_stl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-23T05:00:00Z", + "season": "2025", + "date": "2025-10-23", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Utah Club", + "home_team_abbrev": "STL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_nhl_stl", "away_team_canonical_id": "team_nhl_ari", + "venue": "Enterprise Center", "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251023_sea_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-23T05:00:00Z", + "season": "2025", + "date": "2025-10-23", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "Seattle Kraken", + "home_team_abbrev": "WPG", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_sea", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251023_car_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-23T06:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251023_mtl_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-23T06:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251023_den_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-23T07:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251024_min_lac", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-24T00:15:00Z", - "home_team_canonical_id": "team_nfl_lac", - "away_team_canonical_id": "team_nfl_min", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251024_min_lac", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-24T00:15:00Z", + "season": "2025", + "date": "2025-10-23", + "time": "5:15p", + "home_team": "Los Angeles Chargers", + "away_team": "Minnesota Vikings", + "home_team_abbrev": "LAC", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nfl_lac", "away_team_canonical_id": "team_nfl_min", + "venue": "SoFi Stadium", "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251023_mtl_edm", + "sport": "NHL", + "season": "2025", + "date": "2025-10-23", + "time": "7p", + "home_team": "Edmonton Oilers", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "EDM", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251023_car_col", + "sport": "NHL", + "season": "2025", + "date": "2025-10-23", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "COL", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_car", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251023_la_dal", + "sport": "NHL", + "season": "2025", + "date": "2025-10-23", + "time": "8p", + "home_team": "Dallas Stars", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "DAL", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_la", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251023_den_gsw", + "sport": "NBA", + "season": "2025", + "date": "2025-10-23", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Denver Nuggets", + "home_team_abbrev": "GSW", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_den", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251024_mil_tor", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-24T04:00:00Z", + "season": "2025", + "date": "2025-10-24", + "time": "6:30p", + "home_team": "Toronto Raptors", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "TOR", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_nba_tor", "away_team_canonical_id": "team_nba_mil", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251024_atl_orl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-24T04:00:00Z", + "season": "2025", + "date": "2025-10-24", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "ORL", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nba_orl", "away_team_canonical_id": "team_nba_atl", + "venue": "Kia Center", "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251024_cle_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-24T04:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251024_bos_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-24T04:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251024_tor_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-24T04:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251024_was_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-24T04:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251024_sj_njd", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-24T04:00:00Z", + "season": "2025", + "date": "2025-10-24", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "San Jose Sharks", + "home_team_abbrev": "NJ", + "away_team_abbrev": "SJ", "home_team_canonical_id": "team_nhl_njd", "away_team_canonical_id": "team_nhl_sj", + "venue": "Prudential Center", "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251024_was_cbj", + "sport": "NHL", + "season": "2025", + "date": "2025-10-24", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Washington Capitals", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_was", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251024_tor_buf", + "sport": "NHL", + "season": "2025", + "date": "2025-10-24", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "BUF", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_tor", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251024_cle_brk", + "sport": "NBA", + "season": "2025", + "date": "2025-10-24", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "BKN", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_cle", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251024_bos_nyk", + "sport": "NBA", + "season": "2025", + "date": "2025-10-24", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Boston Celtics", + "home_team_abbrev": "NYK", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_bos", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251024_det_hou", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-24T05:00:00Z", + "season": "2025", + "date": "2025-10-24", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Detroit Pistons", + "home_team_abbrev": "HOU", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nba_hou", "away_team_canonical_id": "team_nba_det", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251024_sas_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-24T05:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251024_mia_mem", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-24T05:00:00Z", + "season": "2025", + "date": "2025-10-24", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Miami Heat", + "home_team_abbrev": "MEM", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_nba_mem", "away_team_canonical_id": "team_nba_mia", + "venue": "FedExForum", "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251024_was_dal", + "canonical_id": "game_nba_2025_20251024_sas_nop", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-24T05:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_american_airlines_center", + "season": "2025", + "date": "2025-10-24", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "NOP", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_sas", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251024_cgy_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-24T05:00:00Z", + "season": "2025", + "date": "2025-10-24", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "Calgary Flames", + "home_team_abbrev": "WPG", + "away_team_abbrev": "CGY", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_cgy", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251024_min_lal", + "canonical_id": "game_nba_2025_20251024_was_dal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-24T07:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "season": "2025", + "date": "2025-10-24", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Washington Wizards", + "home_team_abbrev": "DAL", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_was", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251024_gsw_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-24T07:00:00Z", + "season": "2025", + "date": "2025-10-24", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Golden State Warriors", + "home_team_abbrev": "POR", + "away_team_abbrev": "GSW", "home_team_canonical_id": "team_nba_por", "away_team_canonical_id": "team_nba_gsw", + "venue": "Moda Center", "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251024_uta_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-24T07:00:00Z", + "season": "2025", + "date": "2025-10-24", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Utah Jazz", + "home_team_abbrev": "SAC", + "away_team_abbrev": "UTA", "home_team_canonical_id": "team_nba_sac", "away_team_canonical_id": "team_nba_uta", + "venue": "Golden 1 Center", "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251024_min_lal", + "sport": "NBA", + "season": "2025", + "date": "2025-10-24", + "time": "7p", + "home_team": "Los Angeles Lakers", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "LAL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_min", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251024_phx_lac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-24T07:00:00Z", + "season": "2025", + "date": "2025-10-24", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Phoenix Suns", + "home_team_abbrev": "LAC", + "away_team_abbrev": "PHX", "home_team_canonical_id": "team_nba_lac", "away_team_canonical_id": "team_nba_phx", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251025_lad_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-10-25T00:00:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251025_nsh_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-25T00:00:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_nsh", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251025_chi_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-25T04:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251025_okc_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-25T04:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251025_col_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-25T04:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251025_stl_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-25T04:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251025_vgk_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-25T04:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251025_nyi_phi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-25T04:00:00Z", + "season": "2025", + "date": "2025-10-25", + "time": "12:30p", + "home_team": "Philadelphia Flyers", + "away_team": "New York Islanders", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NYI", "home_team_canonical_id": "team_nhl_phi", "away_team_canonical_id": "team_nhl_nyi", + "venue": "Wells Fargo Center", "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251025_cbj_pit", + "canonical_id": "game_nhl_2025_20251025_col_bos", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-25T04:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "season": "2025", + "date": "2025-10-25", + "time": "3p", + "home_team": "Boston Bruins", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "BOS", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_col", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251025_ana_tb", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-25T04:00:00Z", + "season": "2025", + "date": "2025-10-25", + "time": "5p", + "home_team": "Tampa Bay Lightning", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "TB", + "away_team_abbrev": "ANA", "home_team_canonical_id": "team_nhl_tb", "away_team_canonical_id": "team_nhl_ana", + "venue": "Amalie Arena", "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251025_buf_tor", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-25T04:00:00Z", + "season": "2025", + "date": "2025-10-25", + "time": "5p", + "home_team": "Toronto Maple Leafs", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nhl_tor", "away_team_canonical_id": "team_nhl_buf", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nhl_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251025_ott_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-25T04:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251025_ind_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-25T05:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251025_car_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-25T05:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251025_ari_min", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-25T05:00:00Z", + "season": "2025", + "date": "2025-10-25", + "time": "5p", + "home_team": "Minnesota Wild", + "away_team": "Utah Club", + "home_team_abbrev": "MIN", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_nhl_min", "away_team_canonical_id": "team_nhl_ari", + "venue": "Xcel Energy Center", "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251025_la_nsh", + "canonical_id": "game_nhl_2025_20251025_vgk_fla", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-25T05:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "season": "2025", + "date": "2025-10-25", + "time": "6p", + "home_team": "Florida Panthers", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "FLA", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251025_phx_den", + "canonical_id": "game_nba_2025_20251025_chi_orl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-25T06:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_ball_arena", + "season": "2025", + "date": "2025-10-25", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Chicago Bulls", + "home_team_abbrev": "ORL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_chi", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251025_cho_phi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-25T07:00:00Z", - "home_team_canonical_id": "team_nba_phi", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251025_edm_sea", + "canonical_id": "game_nhl_2025_20251025_ott_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-25T07:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "season": "2025", + "date": "2025-10-25", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Ottawa Senators", + "home_team_abbrev": "WAS", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251025_stl_det", + "sport": "NHL", + "season": "2025", + "date": "2025-10-25", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "St. Louis Blues", + "home_team_abbrev": "DET", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251025_cbj_pit", + "sport": "NHL", + "season": "2025", + "date": "2025-10-25", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251025_mtl_van", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-25T07:00:00Z", + "season": "2025", + "date": "2025-10-25", + "time": "4p", + "home_team": "Vancouver Canucks", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "VAN", + "away_team_abbrev": "MTL", "home_team_canonical_id": "team_nhl_van", "away_team_canonical_id": "team_nhl_mtl", + "venue": "Rogers Arena", "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20251026_lad_tor", - "sport": "MLB", + "canonical_id": "game_nba_2025_20251025_cho_phi", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-10-26T00:00:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251026_bos_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-26T04:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251026_cho_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-26T04:00:00Z", - "home_team_canonical_id": "team_nba_was", + "date": "2025-10-25", + "time": "4:30p", + "home_team": "Philadelphia 76ers", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251026_nyk_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-26T04:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251026_col_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-26T04:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251026_vgk_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-26T04:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_amalie_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251026_brk_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-26T05:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251026_mil_cle", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-26T05:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251026_ind_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-26T05:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251026_tor_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-26T05:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251026_la_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251026_sj_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251026_dal_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251026_ari_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251026_nyr_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-26T06:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251026_lal_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-26T07:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251026_por_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-26T07:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_por", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251026_edm_van", + "canonical_id": "game_nba_2025_20251025_okc_atl", + "sport": "NBA", + "season": "2025", + "date": "2025-10-25", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "ATL", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_okc", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251025_ind_mem", + "sport": "NBA", + "season": "2025", + "date": "2025-10-25", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Indiana Pacers", + "home_team_abbrev": "MEM", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_ind", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251025_la_nsh", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-26T07:00:00Z", - "home_team_canonical_id": "team_nhl_van", + "season": "2025", + "date": "2025-10-25", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "NSH", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_la", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251025_car_dal", + "sport": "NHL", + "season": "2025", + "date": "2025-10-25", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "DAL", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_car", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251025_phx_den", + "sport": "NBA", + "season": "2025", + "date": "2025-10-25", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Phoenix Suns", + "home_team_abbrev": "DEN", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_phx", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251025_edm_sea", + "sport": "NHL", + "season": "2025", + "date": "2025-10-25", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_sea", "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_rogers_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251026_mia_atl", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-26T17:00:00Z", - "home_team_canonical_id": "team_nfl_atl", - "away_team_canonical_id": "team_nfl_mia", - "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251026_nyj_cin", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-26T17:00:00Z", - "home_team_canonical_id": "team_nfl_cin", - "away_team_canonical_id": "team_nfl_nyj", - "stadium_canonical_id": "stadium_nfl_paycor_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251026_cle_ne", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-26T17:00:00Z", - "home_team_canonical_id": "team_nfl_ne", - "away_team_canonical_id": "team_nfl_cle", - "stadium_canonical_id": "stadium_nfl_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251026_nyg_phi", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-26T17:00:00Z", - "home_team_canonical_id": "team_nfl_phi", - "away_team_canonical_id": "team_nfl_nyg", - "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251026_buf_car", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-26T17:00:00Z", - "home_team_canonical_id": "team_nfl_car", - "away_team_canonical_id": "team_nfl_buf", - "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251026_chi_bal", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-26T17:00:00Z", - "home_team_canonical_id": "team_nfl_bal", - "away_team_canonical_id": "team_nfl_chi", - "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251026_sf_hou", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-26T17:00:00Z", - "home_team_canonical_id": "team_nfl_hou", - "away_team_canonical_id": "team_nfl_sf", - "stadium_canonical_id": "stadium_nfl_nrg_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251026_sf_hou", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-26T17:00:00Z", - "home_team_canonical_id": "team_nfl_hou", - "away_team_canonical_id": "team_nfl_sf", - "stadium_canonical_id": "stadium_nfl_nrg_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251026_nyj_cin", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-26T17:00:00Z", - "home_team_canonical_id": "team_nfl_cin", - "away_team_canonical_id": "team_nfl_nyj", - "stadium_canonical_id": "stadium_nfl_paycor_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251026_nyg_phi", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-26T17:00:00Z", - "home_team_canonical_id": "team_nfl_phi", - "away_team_canonical_id": "team_nfl_nyg", - "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251026_mia_atl", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-26T17:00:00Z", - "home_team_canonical_id": "team_nfl_atl", - "away_team_canonical_id": "team_nfl_mia", - "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251026_cle_ne", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-26T17:00:00Z", + "season": "2025", + "date": "2025-10-26", + "time": "1p", + "home_team": "New England Patriots", + "away_team": "Cleveland Browns", + "home_team_abbrev": "NE", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nfl_ne", "away_team_canonical_id": "team_nfl_cle", + "venue": "Gillette Stadium", "stadium_canonical_id": "stadium_nfl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2026_20251026_chi_bal", + "canonical_id": "game_nfl_2026_20251026_sf_hou", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-26T17:00:00Z", - "home_team_canonical_id": "team_nfl_bal", - "away_team_canonical_id": "team_nfl_chi", - "stadium_canonical_id": "stadium_nfl_mt_bank_stadium", + "season": "2025", + "date": "2025-10-26", + "time": "12p", + "home_team": "Houston Texans", + "away_team": "San Francisco 49ers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_nfl_hou", + "away_team_canonical_id": "team_nfl_sf", + "venue": "NRG Stadium", + "stadium_canonical_id": "stadium_nfl_nrg_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251026_buf_car", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-26T17:00:00Z", + "season": "2025", + "date": "2025-10-26", + "time": "1p", + "home_team": "Carolina Panthers", + "away_team": "Buffalo Bills", + "home_team_abbrev": "CAR", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nfl_car", "away_team_canonical_id": "team_nfl_buf", + "venue": "Bank of America Stadium", "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251026_tb_no", + "canonical_id": "game_nfl_2026_20251026_nyg_phi", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-10-26T20:05:00Z", - "home_team_canonical_id": "team_nfl_no", - "away_team_canonical_id": "team_nfl_tb", - "stadium_canonical_id": "stadium_nfl_caesars_superdome", + "date": "2025-10-26", + "time": "1p", + "home_team": "Philadelphia Eagles", + "away_team": "New York Giants", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NYG", + "home_team_canonical_id": "team_nfl_phi", + "away_team_canonical_id": "team_nfl_nyg", + "venue": "Lincoln Financial Field", + "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251026_mia_atl", + "sport": "NFL", + "season": "2025", + "date": "2025-10-26", + "time": "1p", + "home_team": "Atlanta Falcons", + "away_team": "Miami Dolphins", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nfl_atl", + "away_team_canonical_id": "team_nfl_mia", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251026_nyj_cin", + "sport": "NFL", + "season": "2025", + "date": "2025-10-26", + "time": "1p", + "home_team": "Cincinnati Bengals", + "away_team": "New York Jets", + "home_team_abbrev": "CIN", + "away_team_abbrev": "NYJ", + "home_team_canonical_id": "team_nfl_cin", + "away_team_canonical_id": "team_nfl_nyj", + "venue": "Paycor Stadium", + "stadium_canonical_id": "stadium_nfl_paycor_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251026_chi_bal", + "sport": "NFL", + "season": "2025", + "date": "2025-10-26", + "time": "1p", + "home_team": "Baltimore Ravens", + "away_team": "Chicago Bears", + "home_team_abbrev": "BAL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nfl_bal", + "away_team_canonical_id": "team_nfl_chi", + "venue": "M&T Bank Stadium", + "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251026_col_njd", + "sport": "NHL", + "season": "2025", + "date": "2025-10-26", + "time": "1p", + "home_team": "New Jersey Devils", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "NJ", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_col", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251026_brk_sas", + "sport": "NBA", + "season": "2025", + "date": "2025-10-26", + "time": "1p", + "home_team": "San Antonio Spurs", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "SAS", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_brk", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251026_bos_det", + "sport": "NBA", + "season": "2025", + "date": "2025-10-26", + "time": "3:30p", + "home_team": "Detroit Pistons", + "away_team": "Boston Celtics", + "home_team_abbrev": "DET", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_bos", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251026_tb_no", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-26T20:05:00Z", + "season": "2025", + "date": "2025-10-26", + "time": "3:05p", + "home_team": "New Orleans Saints", + "away_team": "Tampa Bay Buccaneers", + "home_team_abbrev": "NO", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_nfl_no", "away_team_canonical_id": "team_nfl_tb", + "venue": "Caesars Superdome", "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251026_dal_den", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-26T20:25:00Z", - "home_team_canonical_id": "team_nfl_den", - "away_team_canonical_id": "team_nfl_dal", - "stadium_canonical_id": "stadium_nfl_empower_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251026_ten_ind", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-26T20:25:00Z", - "home_team_canonical_id": "team_nfl_ind", - "away_team_canonical_id": "team_nfl_ten", - "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251026_ten_ind", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-26T20:25:00Z", - "home_team_canonical_id": "team_nfl_ind", - "away_team_canonical_id": "team_nfl_ten", - "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251026_dal_den", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-26T20:25:00Z", + "season": "2025", + "date": "2025-10-26", + "time": "2:25p", + "home_team": "Denver Broncos", + "away_team": "Dallas Cowboys", + "home_team_abbrev": "DEN", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nfl_den", "away_team_canonical_id": "team_nfl_dal", - "stadium_canonical_id": "stadium_nfl_empower_field_at_mile_high", + "venue": "Empower Field at Mile High", + "stadium_canonical_id": "stadium_nfl_empower_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mls_2025_20251026_chi_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-26T21:30:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_chi", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251026_dal_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-10-26T23:30:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_dal", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251027_gb_pit", + "canonical_id": "game_nfl_2026_20251026_ten_ind", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-10-27T00:20:00Z", - "home_team_canonical_id": "team_nfl_pit", - "away_team_canonical_id": "team_nfl_gb", - "stadium_canonical_id": "stadium_nfl_acrisure_stadium", + "date": "2025-10-26", + "time": "4:25p", + "home_team": "Indianapolis Colts", + "away_team": "Tennessee Titans", + "home_team_abbrev": "IND", + "away_team_abbrev": "TEN", + "home_team_canonical_id": "team_nfl_ind", + "away_team_canonical_id": "team_nfl_ten", + "venue": "Lucas Oil Stadium", + "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251026_vgk_tb", + "sport": "NHL", + "season": "2025", + "date": "2025-10-26", + "time": "5p", + "home_team": "Tampa Bay Lightning", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "TB", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251026_cho_was", + "sport": "NBA", + "season": "2025", + "date": "2025-10-26", + "time": "6p", + "home_team": "Washington Wizards", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "WAS", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_cho", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251026_mil_cle", + "sport": "NBA", + "season": "2025", + "date": "2025-10-26", + "time": "5p", + "home_team": "Cleveland Cavaliers", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "CLE", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_mil", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251026_nyk_mia", + "sport": "NBA", + "season": "2025", + "date": "2025-10-26", + "time": "6p", + "home_team": "Miami Heat", + "away_team": "New York Knicks", + "home_team_abbrev": "MIA", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251026_ari_wpg", + "sport": "NHL", + "season": "2025", + "date": "2025-10-26", + "time": "5p", + "home_team": "Winnipeg Jets", + "away_team": "Utah Club", + "home_team_abbrev": "WPG", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251026_sj_min", + "sport": "NHL", + "season": "2025", + "date": "2025-10-26", + "time": "5p", + "home_team": "Minnesota Wild", + "away_team": "San Jose Sharks", + "home_team_abbrev": "MIN", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251026_ind_min", + "sport": "NBA", + "season": "2025", + "date": "2025-10-26", + "time": "6p", + "home_team": "Minnesota Timberwolves", + "away_team": "Indiana Pacers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_ind", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251026_dal_nsh", + "sport": "NHL", + "season": "2025", + "date": "2025-10-26", + "time": "6p", + "home_team": "Nashville Predators", + "away_team": "Dallas Stars", + "home_team_abbrev": "NSH", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251026_la_chi", + "sport": "NHL", + "season": "2025", + "date": "2025-10-26", + "time": "6p", + "home_team": "Chicago Blackhawks", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "CHI", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_la", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251026_tor_dal", + "sport": "NBA", + "season": "2025", + "date": "2025-10-26", + "time": "6:30p", + "home_team": "Dallas Mavericks", + "away_team": "Toronto Raptors", + "home_team_abbrev": "DAL", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_tor", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251026_nyr_cgy", + "sport": "NHL", + "season": "2025", + "date": "2025-10-26", + "time": "6p", + "home_team": "Calgary Flames", + "away_team": "New York Rangers", + "home_team_abbrev": "CGY", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251027_gb_pit", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-27T00:20:00Z", + "season": "2025", + "date": "2025-10-26", + "time": "8:20p", + "home_team": "Pittsburgh Steelers", + "away_team": "Green Bay Packers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "GB", "home_team_canonical_id": "team_nfl_pit", "away_team_canonical_id": "team_nfl_gb", + "venue": "Acrisure Stadium", "stadium_canonical_id": "stadium_nfl_acrisure_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mls_2025_20251027_por_sd", - "sport": "MLS", + "canonical_id": "game_nba_2025_20251026_por_lac", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-10-27T01:30:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_por", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "date": "2025-10-26", + "time": "6p", + "home_team": "Los Angeles Clippers", + "away_team": "Portland Blazers", + "home_team_abbrev": "LAC", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_por", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251026_lal_sac", + "sport": "NBA", + "season": "2025", + "date": "2025-10-26", + "time": "6p", + "home_team": "Sacramento Kings", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "SAC", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_lal", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251026_edm_van", + "sport": "NHL", + "season": "2025", + "date": "2025-10-26", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "VAN", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251027_cle_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-27T04:00:00Z", + "season": "2025", + "date": "2025-10-27", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "DET", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nba_det", "away_team_canonical_id": "team_nba_cle", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251027_bos_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-27T04:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251027_stl_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-27T04:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251027_atl_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-27T05:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251027_brk_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-27T05:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251027_bos_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-27T05:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251027_tor_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-27T05:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251027_okc_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-27T05:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251027_den_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-27T05:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251027_phx_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-27T06:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251027_orl_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-27T07:00:00Z", + "season": "2025", + "date": "2025-10-27", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Orlando Magic", + "home_team_abbrev": "PHI", + "away_team_abbrev": "ORL", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_orl", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251027_mem_gsw", + "canonical_id": "game_nhl_2025_20251027_stl_pit", + "sport": "NHL", + "season": "2025", + "date": "2025-10-27", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "St. Louis Blues", + "home_team_abbrev": "PIT", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_stl", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251027_bos_ott", + "sport": "NHL", + "season": "2025", + "date": "2025-10-27", + "time": "7:30p", + "home_team": "Ottawa Senators", + "away_team": "Boston Bruins", + "home_team_abbrev": "OTT", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251027_tor_sas", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-27T07:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_chase_center", + "season": "2025", + "date": "2025-10-27", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Toronto Raptors", + "home_team_abbrev": "SAS", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_tor", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251027_por_lal", + "canonical_id": "game_nba_2025_20251027_atl_chi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-27T07:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "season": "2025", + "date": "2025-10-27", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "CHI", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_atl", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mls_2025_20251027_clb_cin", - "sport": "MLS", + "canonical_id": "game_nba_2025_20251027_brk_hou", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-10-27T22:45:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_clb", - "stadium_canonical_id": "stadium_mls_tql_stadium", + "date": "2025-10-27", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "HOU", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_brk", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20251028_tor_lad", - "sport": "MLB", + "canonical_id": "game_nba_2025_20251027_bos_nop", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-10-28T00:00:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251028_was_kc", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-10-28T00:15:00Z", - "home_team_canonical_id": "team_nfl_kc", - "away_team_canonical_id": "team_nfl_was", - "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", + "date": "2025-10-27", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Boston Celtics", + "home_team_abbrev": "NOP", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_bos", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251028_was_kc", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-28T00:15:00Z", + "season": "2025", + "date": "2025-10-27", + "time": "7:15p", + "home_team": "Kansas City Chiefs", + "away_team": "Washington Commanders", + "home_team_abbrev": "KC", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nfl_kc", "away_team_canonical_id": "team_nfl_was", + "venue": "Arrowhead Stadium", "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mls_2025_20251028_sea_min", - "sport": "MLS", + "canonical_id": "game_nba_2025_20251027_okc_dal", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-10-28T01:00:00Z", - "home_team_canonical_id": "team_mls_min", - "away_team_canonical_id": "team_mls_sea", - "stadium_canonical_id": "stadium_mls_allianz_field", + "date": "2025-10-27", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "DAL", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_okc", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251028_phi_was", + "canonical_id": "game_nba_2025_20251027_phx_uta", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T04:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_capital_one_arena", + "season": "2025", + "date": "2025-10-27", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Phoenix Suns", + "home_team_abbrev": "UTA", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_phx", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251028_cho_mia", + "canonical_id": "game_nba_2025_20251027_den_min", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T04:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_kaseya_center", + "season": "2025", + "date": "2025-10-27", + "time": "8:30p", + "home_team": "Minnesota Timberwolves", + "away_team": "Denver Nuggets", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_den", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251028_nyi_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T04:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_td_garden", + "canonical_id": "game_nba_2025_20251027_mem_gsw", + "sport": "NBA", + "season": "2025", + "date": "2025-10-27", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "GSW", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_mem", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251028_cbj_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T04:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251028_vgk_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T04:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251028_ana_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T04:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "canonical_id": "game_nba_2025_20251027_por_lal", + "sport": "NBA", + "season": "2025", + "date": "2025-10-27", + "time": "7:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Portland Blazers", + "home_team_abbrev": "LAL", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_por", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251028_pit_phi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T04:00:00Z", + "season": "2025", + "date": "2025-10-28", + "time": "6p", + "home_team": "Philadelphia Flyers", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "PHI", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_nhl_phi", "away_team_canonical_id": "team_nhl_pit", + "venue": "Wells Fargo Center", "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251028_cgy_tor", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T04:00:00Z", + "season": "2025", + "date": "2025-10-28", + "time": "6p", + "home_team": "Toronto Maple Leafs", + "away_team": "Calgary Flames", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CGY", "home_team_canonical_id": "team_nhl_tor", "away_team_canonical_id": "team_nhl_cgy", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251028_nyk_mil", + "canonical_id": "game_nhl_2025_20251028_vgk_car", + "sport": "NHL", + "season": "2025", + "date": "2025-10-28", + "time": "6:30p", + "home_team": "Carolina Hurricanes", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "CAR", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251028_cbj_buf", + "sport": "NHL", + "season": "2025", + "date": "2025-10-28", + "time": "6:45p", + "home_team": "Buffalo Sabres", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "BUF", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251028_phi_was", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T05:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_fiserv_forum", + "season": "2025", + "date": "2025-10-28", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "WAS", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_phi", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251028_sac_okc", + "canonical_id": "game_nhl_2025_20251028_ana_fla", + "sport": "NHL", + "season": "2025", + "date": "2025-10-28", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "FLA", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251028_nyi_bos", + "sport": "NHL", + "season": "2025", + "date": "2025-10-28", + "time": "7:15p", + "home_team": "Boston Bruins", + "away_team": "New York Islanders", + "home_team_abbrev": "BOS", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251028_cho_mia", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T05:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251028_ott_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251028_was_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251028_wpg_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "season": "2025", + "date": "2025-10-28", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_cho", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251028_tb_nsh", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T05:00:00Z", + "season": "2025", + "date": "2025-10-28", + "time": "6:45p", + "home_team": "Nashville Predators", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "NSH", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_nhl_nsh", "away_team_canonical_id": "team_nhl_tb", + "venue": "Bridgestone Arena", "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251028_sac_okc", + "sport": "NBA", + "season": "2025", + "date": "2025-10-28", + "time": "7p", + "home_team": "Oklahoma City Thunder", + "away_team": "Sacramento Kings", + "home_team_abbrev": "OKC", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_sac", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251028_nyk_mil", + "sport": "NBA", + "season": "2025", + "date": "2025-10-28", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "New York Knicks", + "home_team_abbrev": "MIL", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251028_wpg_min", + "sport": "NHL", + "season": "2025", + "date": "2025-10-28", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "MIN", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251028_det_stl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T05:00:00Z", + "season": "2025", + "date": "2025-10-28", + "time": "7:15p", + "home_team": "St. Louis Blues", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "STL", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nhl_stl", "away_team_canonical_id": "team_nhl_det", + "venue": "Enterprise Center", "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251028_was_dal", + "sport": "NHL", + "season": "2025", + "date": "2025-10-28", + "time": "7:30p", + "home_team": "Dallas Stars", + "away_team": "Washington Capitals", + "home_team_abbrev": "DAL", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_was", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251028_ott_chi", + "sport": "NHL", + "season": "2025", + "date": "2025-10-28", + "time": "7:45p", + "home_team": "Chicago Blackhawks", + "away_team": "Ottawa Senators", + "home_team_abbrev": "CHI", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_ott", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251028_njd_col", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T06:00:00Z", + "season": "2025", + "date": "2025-10-28", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "New Jersey Devils", + "home_team_abbrev": "COL", + "away_team_abbrev": "NJ", "home_team_canonical_id": "team_nhl_col", "away_team_canonical_id": "team_nhl_njd", + "venue": "Ball Arena", "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251028_ari_edm", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T06:00:00Z", + "season": "2025", + "date": "2025-10-28", + "time": "7:30p", + "home_team": "Edmonton Oilers", + "away_team": "Utah Club", + "home_team_abbrev": "EDM", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_nhl_edm", "away_team_canonical_id": "team_nhl_ari", + "venue": "Rogers Place", "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251028_lac_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T07:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251028_mtl_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T07:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251028_la_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T07:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251028_nyr_van", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-28T07:00:00Z", + "season": "2025", + "date": "2025-10-28", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "New York Rangers", + "home_team_abbrev": "VAN", + "away_team_abbrev": "NYR", "home_team_canonical_id": "team_nhl_van", "away_team_canonical_id": "team_nhl_nyr", + "venue": "Rogers Arena", "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mls_2025_20251028_nyc_clt", - "sport": "MLS", + "canonical_id": "game_nhl_2025_20251028_mtl_sea", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-10-28T22:45:00Z", - "home_team_canonical_id": "team_mls_clt", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "date": "2025-10-28", + "time": "7:30p", + "home_team": "Seattle Kraken", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "SEA", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20251029_tor_lad", - "sport": "MLB", + "canonical_id": "game_nba_2025_20251028_lac_gsw", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-10-29T00:00:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "date": "2025-10-28", + "time": "8p", + "home_team": "Golden State Warriors", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "GSW", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_lac", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251028_la_sj", + "sport": "NHL", + "season": "2025", + "date": "2025-10-28", + "time": "8p", + "home_team": "San Jose Sharks", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "SJ", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_la", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251029_hou_tor", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-29T04:00:00Z", + "season": "2025", + "date": "2025-10-29", + "time": "6:30p", + "home_team": "Toronto Raptors", + "away_team": "Houston Rockets", + "home_team_abbrev": "TOR", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nba_tor", "away_team_canonical_id": "team_nba_hou", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251029_cle_bos", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-29T04:00:00Z", + "season": "2025", + "date": "2025-10-29", + "time": "7p", + "home_team": "Boston Celtics", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nba_bos", "away_team_canonical_id": "team_nba_cle", + "venue": "TD Garden", "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251029_orl_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-29T04:00:00Z", + "season": "2025", + "date": "2025-10-29", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Orlando Magic", + "home_team_abbrev": "DET", + "away_team_abbrev": "ORL", "home_team_canonical_id": "team_nba_det", "away_team_canonical_id": "team_nba_orl", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251029_atl_brk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-29T04:00:00Z", + "season": "2025", + "date": "2025-10-29", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "BKN", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nba_brk", "away_team_canonical_id": "team_nba_atl", + "venue": "Barclays Center", "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251029_mem_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-29T04:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251029_tor_cbj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-29T04:00:00Z", + "season": "2025", + "date": "2025-10-29", + "time": "7:30p", + "home_team": "Columbus Blue Jackets", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_nhl_cbj", "away_team_canonical_id": "team_nhl_tor", + "venue": "Nationwide Arena", "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251029_sac_chi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-29T05:00:00Z", + "season": "2025", + "date": "2025-10-29", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Sacramento Kings", + "home_team_abbrev": "CHI", + "away_team_abbrev": "SAC", "home_team_canonical_id": "team_nba_chi", "away_team_canonical_id": "team_nba_sac", + "venue": "United Center", "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251029_ind_dal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-29T05:00:00Z", + "season": "2025", + "date": "2025-10-29", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Indiana Pacers", + "home_team_abbrev": "DAL", + "away_team_abbrev": "IND", "home_team_canonical_id": "team_nba_dal", "away_team_canonical_id": "team_nba_ind", + "venue": "American Airlines Center", "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251029_lal_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-29T05:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251029_por_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-29T06:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251029_nop_den", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-29T06:00:00Z", + "season": "2025", + "date": "2025-10-29", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "DEN", + "away_team_abbrev": "NOP", "home_team_canonical_id": "team_nba_den", "away_team_canonical_id": "team_nba_nop", + "venue": "Ball Arena", "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20251030_tor_lad", - "sport": "MLB", + "canonical_id": "game_nba_2025_20251029_por_uta", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-10-30T00:00:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "date": "2025-10-29", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Portland Blazers", + "home_team_abbrev": "UTA", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_por", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mls_2025_20251030_aus_lafc", - "sport": "MLS", + "canonical_id": "game_nba_2025_20251029_lal_min", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-10-30T02:30:00Z", - "home_team_canonical_id": "team_mls_lafc", - "away_team_canonical_id": "team_mls_aus", - "stadium_canonical_id": "stadium_mls_bmo_stadium", + "date": "2025-10-29", + "time": "8:30p", + "home_team": "Minnesota Timberwolves", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_lal", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251029_mem_phx", + "sport": "NBA", + "season": "2025", + "date": "2025-10-29", + "time": "10p", + "home_team": "Phoenix Suns", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "PHX", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_mem", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251030_orl_cho", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-30T04:00:00Z", + "season": "2025", + "date": "2025-10-30", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Orlando Magic", + "home_team_abbrev": "CHA", + "away_team_abbrev": "ORL", "home_team_canonical_id": "team_nba_cho", "away_team_canonical_id": "team_nba_orl", + "venue": "Spectrum Center", "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251030_buf_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-30T04:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251030_nyi_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-30T04:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251030_cgy_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-30T04:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251030_nsh_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-30T04:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251030_dal_tb", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-30T04:00:00Z", + "season": "2025", + "date": "2025-10-30", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Dallas Stars", + "home_team_abbrev": "TB", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nhl_tb", "away_team_canonical_id": "team_nhl_dal", + "venue": "Amalie Arena", "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251030_gsw_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-30T05:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_fiserv_forum", + "canonical_id": "game_nhl_2025_20251030_nsh_phi", + "sport": "NHL", + "season": "2025", + "date": "2025-10-30", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Nashville Predators", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251030_cgy_ott", + "sport": "NHL", + "season": "2025", + "date": "2025-10-30", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Calgary Flames", + "home_team_abbrev": "OTT", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251030_buf_bos", + "sport": "NHL", + "season": "2025", + "date": "2025-10-30", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "BOS", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_buf", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251030_nyi_car", + "sport": "NHL", + "season": "2025", + "date": "2025-10-30", + "time": "7:30p", + "home_team": "Carolina Hurricanes", + "away_team": "New York Islanders", + "home_team_abbrev": "CAR", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251030_was_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-30T05:00:00Z", + "season": "2025", + "date": "2025-10-30", + "time": "7p", + "home_team": "Oklahoma City Thunder", + "away_team": "Washington Wizards", + "home_team_abbrev": "OKC", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nba_okc", "away_team_canonical_id": "team_nba_was", + "venue": "Paycom Center", "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251030_mia_sas", + "canonical_id": "game_nba_2025_20251030_gsw_mil", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-30T05:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251030_pit_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-30T05:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251030_van_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-30T05:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_enterprise_center", + "season": "2025", + "date": "2025-10-30", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Golden State Warriors", + "home_team_abbrev": "MIL", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251030_chi_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-30T05:00:00Z", + "season": "2025", + "date": "2025-10-30", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "WPG", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_chi", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251030_nyr_edm", + "canonical_id": "game_nhl_2025_20251030_pit_min", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-30T06:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251030_det_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-30T07:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251030_njd_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-30T07:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251031_bal_mia", - "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-10-31T00:15:00Z", - "home_team_canonical_id": "team_nfl_mia", - "away_team_canonical_id": "team_nfl_bal", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", + "date": "2025-10-30", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "MIN", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_pit", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251030_van_stl", + "sport": "NHL", + "season": "2025", + "date": "2025-10-30", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "STL", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_van", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251031_bal_mia", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-10-31T00:15:00Z", + "season": "2025", + "date": "2025-10-30", + "time": "8:15p", + "home_team": "Miami Dolphins", + "away_team": "Baltimore Ravens", + "home_team_abbrev": "MIA", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_nfl_mia", "away_team_canonical_id": "team_nfl_bal", + "venue": "Hard Rock Stadium", "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251031_atl_ind", + "canonical_id": "game_nba_2025_20251030_mia_sas", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-31T04:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "season": "2025", + "date": "2025-10-30", + "time": "7:30p", + "home_team": "San Antonio Spurs", + "away_team": "Miami Heat", + "home_team_abbrev": "SAS", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_mia", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251031_uta_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-31T04:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251031_nyi_was", + "canonical_id": "game_nhl_2025_20251030_nyr_edm", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-31T04:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "season": "2025", + "date": "2025-10-30", + "time": "7p", + "home_team": "Edmonton Oilers", + "away_team": "New York Rangers", + "home_team_abbrev": "EDM", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251031_tor_cle", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-31T05:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251031_nyk_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-31T05:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251031_lal_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-31T05:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251031_bos_phi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-31T07:00:00Z", - "home_team_canonical_id": "team_nba_phi", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251031_den_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-31T07:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251031_nop_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-10-31T07:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251031_det_ana", + "canonical_id": "game_nhl_2025_20251030_njd_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-31T07:00:00Z", - "home_team_canonical_id": "team_nhl_ana", + "season": "2025", + "date": "2025-10-30", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "New Jersey Devils", + "home_team_abbrev": "SJ", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_njd", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251030_det_la", + "sport": "NHL", + "season": "2025", + "date": "2025-10-30", + "time": "7:30p", + "home_team": "Los Angeles Kings", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "LA", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_la", "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_honda_center", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251031_col_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-10-31T07:00:00Z", + "season": "2025", + "date": "2025-10-31", + "time": "1p", + "home_team": "Vegas Golden Knights", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "VGK", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_nhl_vgk", "away_team_canonical_id": "team_nhl_col", + "venue": "T-Mobile Arena", "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2025_20251101_lad_tor", - "sport": "MLB", + "canonical_id": "game_nba_2025_20251031_atl_ind", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-11-01T00:00:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251101_min_cho", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-01T04:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251101_gsw_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-01T04:00:00Z", + "date": "2025-10-31", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "IND", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_atl", + "venue": "Gainbridge Fieldhouse", "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251101_orl_was", + "canonical_id": "game_nba_2025_20251031_bos_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-01T04:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_capital_one_arena", + "season": "2025", + "date": "2025-10-31", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Boston Celtics", + "home_team_abbrev": "PHI", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_bos", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251101_hou_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-01T04:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_td_garden", + "canonical_id": "game_nhl_2025_20251031_nyi_was", + "sport": "NHL", + "season": "2025", + "date": "2025-10-31", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "New York Islanders", + "home_team_abbrev": "WAS", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251101_dal_det", + "canonical_id": "game_nba_2025_20251031_tor_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-01T04:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_mexico_city_arena", + "season": "2025", + "date": "2025-10-31", + "time": "6:30p", + "home_team": "Cleveland Cavaliers", + "away_team": "Toronto Raptors", + "home_team_abbrev": "CLE", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_tor", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251031_nyk_chi", + "sport": "NBA", + "season": "2025", + "date": "2025-10-31", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "New York Knicks", + "home_team_abbrev": "CHI", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_nyk", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251031_lal_mem", + "sport": "NBA", + "season": "2025", + "date": "2025-10-31", + "time": "8:30p", + "home_team": "Memphis Grizzlies", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "MEM", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_lal", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251031_uta_phx", + "sport": "NBA", + "season": "2025", + "date": "2025-10-31", + "time": "10p", + "home_team": "Phoenix Suns", + "away_team": "Utah Jazz", + "home_team_abbrev": "PHX", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_uta", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251031_den_por", + "sport": "NBA", + "season": "2025", + "date": "2025-10-31", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Denver Nuggets", + "home_team_abbrev": "POR", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_den", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251031_det_ana", + "sport": "NHL", + "season": "2025", + "date": "2025-10-31", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "ANA", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_det", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251031_nop_lac", + "sport": "NBA", + "season": "2025", + "date": "2025-10-31", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "LAC", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_nop", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251101_car_bos", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-01T04:00:00Z", + "season": "2025", + "date": "2025-11-01", + "time": "1p", + "home_team": "Boston Bruins", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nhl_bos", "away_team_canonical_id": "team_nhl_car", + "venue": "TD Garden", "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251101_was_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-01T04:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251101_stl_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-01T04:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251101_dal_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-01T04:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251101_ott_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-01T04:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251101_tor_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-01T04:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251101_sac_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-01T05:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251101_van_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-01T05:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251101_cgy_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-01T05:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251101_pit_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-01T05:00:00Z", + "season": "2025", + "date": "2025-11-01", + "time": "2p", + "home_team": "Winnipeg Jets", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "WPG", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_pit", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251101_chi_edm", + "canonical_id": "game_nhl_2025_20251101_cgy_nsh", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-01T06:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251101_njd_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-01T07:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251101_nyr_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-01T07:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "season": "2025", + "date": "2025-11-01", + "time": "2:30p", + "home_team": "Nashville Predators", + "away_team": "Calgary Flames", + "home_team_abbrev": "NSH", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251101_col_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-01T07:00:00Z", + "season": "2025", + "date": "2025-11-01", + "time": "1p", + "home_team": "San Jose Sharks", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "SJ", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_nhl_sj", "away_team_canonical_id": "team_nhl_col", + "venue": "SAP Center", "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mls_2025_20251101_clt_nyc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-11-01T19:30:00Z", - "home_team_canonical_id": "team_mls_nyc", - "away_team_canonical_id": "team_mls_clt", - "stadium_canonical_id": "stadium_mls_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251101_phi_chi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-11-01T21:30:00Z", - "home_team_canonical_id": "team_mls_chi", - "away_team_canonical_id": "team_mls_phi", - "stadium_canonical_id": "", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251101_mia_nsh", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-11-01T23:30:00Z", - "home_team_canonical_id": "team_mls_nsh", - "away_team_canonical_id": "team_mls_mia", - "stadium_canonical_id": "stadium_mls_geodis_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2025_20251102_lad_tor", - "sport": "MLB", - "season": "2025", - "game_datetime_utc": "2025-11-02T00:00:00Z", - "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251102_van_dal", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-11-02T01:30:00Z", - "home_team_canonical_id": "team_mls_dal", - "away_team_canonical_id": "team_mls_van", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251102_sd_por", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-11-02T01:30:00Z", - "home_team_canonical_id": "team_mls_por", - "away_team_canonical_id": "team_mls_sd", - "stadium_canonical_id": "stadium_mls_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251102_phi_brk", + "canonical_id": "game_nba_2025_20251101_sac_mil", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-02T04:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_barclays_center", + "season": "2025", + "date": "2025-11-01", + "time": "4p", + "home_team": "Milwaukee Bucks", + "away_team": "Sacramento Kings", + "home_team_abbrev": "MIL", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_sac", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251102_uta_cho", + "canonical_id": "game_nba_2025_20251101_min_cho", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-02T04:00:00Z", + "season": "2025", + "date": "2025-11-01", + "time": "6p", + "home_team": "Charlotte Hornets", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "CHA", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_min", + "venue": "Spectrum Center", "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251102_mem_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-02T04:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251102_chi_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-02T04:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251102_sas_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-02T04:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251102_cbj_nyi", + "canonical_id": "game_nhl_2025_20251101_dal_fla", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-02T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_ubs_arena", + "season": "2025", + "date": "2025-11-01", + "time": "6p", + "home_team": "Florida Panthers", + "away_team": "Dallas Stars", + "home_team_abbrev": "FLA", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251102_cgy_phi", + "canonical_id": "game_nba_2025_20251101_gsw_ind", + "sport": "NBA", + "season": "2025", + "date": "2025-11-01", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Golden State Warriors", + "home_team_abbrev": "IND", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251101_orl_was", + "sport": "NBA", + "season": "2025", + "date": "2025-11-01", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Orlando Magic", + "home_team_abbrev": "WAS", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_orl", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251101_was_buf", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-02T04:00:00Z", + "season": "2025", + "date": "2025-11-01", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Washington Capitals", + "home_team_abbrev": "BUF", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_was", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251101_tor_phi", + "sport": "NHL", + "season": "2025", + "date": "2025-11-01", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Wells Fargo Center", "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251102_nop_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-02T05:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251102_atl_cle", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-02T05:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251102_tb_ari", + "canonical_id": "game_nhl_2025_20251101_ott_mtl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-02T06:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_delta_center", + "season": "2025", + "date": "2025-11-01", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Ottawa Senators", + "home_team_abbrev": "MTL", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251102_mia_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-02T07:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251102_njd_ana", + "canonical_id": "game_nhl_2025_20251101_van_min", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-02T07:00:00Z", - "home_team_canonical_id": "team_nhl_ana", + "season": "2025", + "date": "2025-11-01", + "time": "6p", + "home_team": "Minnesota Wild", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "MIN", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_van", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251101_stl_cbj", + "sport": "NHL", + "season": "2025", + "date": "2025-11-01", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "St. Louis Blues", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251101_hou_bos", + "sport": "NBA", + "season": "2025", + "date": "2025-11-01", + "time": "8p", + "home_team": "Boston Celtics", + "away_team": "Houston Rockets", + "home_team_abbrev": "BOS", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_hou", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251101_njd_la", + "sport": "NHL", + "season": "2025", + "date": "2025-11-01", + "time": "6p", + "home_team": "Los Angeles Kings", + "away_team": "New Jersey Devils", + "home_team_abbrev": "LA", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_la", "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_honda_center", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251102_det_sj", + "canonical_id": "game_nba_2025_20251101_dal_det", + "sport": "NBA", + "season": "2025", + "date": "2025-11-01", + "time": "8p", + "home_team": "Detroit Pistons", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "DET", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_dal", + "venue": "Mexico City Arena", + "stadium_canonical_id": "stadium_nba_mexico_city_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251101_nyr_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-02T07:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251102_chi_cin", - "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-11-02T18:00:00Z", - "home_team_canonical_id": "team_nfl_cin", - "away_team_canonical_id": "team_nfl_chi", - "stadium_canonical_id": "stadium_nfl_paycor_stadium", + "date": "2025-11-01", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "New York Rangers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251102_min_det", - "sport": "NFL", + "canonical_id": "game_nhl_2025_20251101_chi_edm", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-11-02T18:00:00Z", - "home_team_canonical_id": "team_nfl_det", - "away_team_canonical_id": "team_nfl_min", - "stadium_canonical_id": "stadium_nfl_ford_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251102_car_gb", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-02T18:00:00Z", - "home_team_canonical_id": "team_nfl_gb", - "away_team_canonical_id": "team_nfl_car", - "stadium_canonical_id": "stadium_nfl_lambeau_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251102_lac_ten", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-02T18:00:00Z", - "home_team_canonical_id": "team_nfl_ten", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "stadium_nfl_nissan_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251102_atl_ne", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-02T18:00:00Z", - "home_team_canonical_id": "team_nfl_ne", - "away_team_canonical_id": "team_nfl_atl", - "stadium_canonical_id": "stadium_nfl_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251102_sf_nyg", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-02T18:00:00Z", - "home_team_canonical_id": "team_nfl_nyg", - "away_team_canonical_id": "team_nfl_sf", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251102_ind_pit", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-02T18:00:00Z", - "home_team_canonical_id": "team_nfl_pit", - "away_team_canonical_id": "team_nfl_ind", - "stadium_canonical_id": "stadium_nfl_acrisure_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251102_den_hou", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-02T18:00:00Z", - "home_team_canonical_id": "team_nfl_hou", - "away_team_canonical_id": "team_nfl_den", - "stadium_canonical_id": "stadium_nfl_nrg_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251102_sf_nyg", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-02T18:00:00Z", - "home_team_canonical_id": "team_nfl_nyg", - "away_team_canonical_id": "team_nfl_sf", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "date": "2025-11-01", + "time": "8p", + "home_team": "Edmonton Oilers", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "EDM", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251102_min_det", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-02T18:00:00Z", + "season": "2025", + "date": "2025-11-02", + "time": "1p", + "home_team": "Detroit Lions", + "away_team": "Minnesota Vikings", + "home_team_abbrev": "DET", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nfl_det", "away_team_canonical_id": "team_nfl_min", + "venue": "Ford Field", "stadium_canonical_id": "stadium_nfl_ford_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251102_lac_ten", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-02T18:00:00Z", - "home_team_canonical_id": "team_nfl_ten", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "stadium_nfl_nissan_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251102_ind_pit", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-02T18:00:00Z", + "season": "2025", + "date": "2025-11-02", + "time": "1p", + "home_team": "Pittsburgh Steelers", + "away_team": "Indianapolis Colts", + "home_team_abbrev": "PIT", + "away_team_abbrev": "IND", "home_team_canonical_id": "team_nfl_pit", "away_team_canonical_id": "team_nfl_ind", + "venue": "Acrisure Stadium", "stadium_canonical_id": "stadium_nfl_acrisure_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251102_den_hou", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-02T18:00:00Z", - "home_team_canonical_id": "team_nfl_hou", - "away_team_canonical_id": "team_nfl_den", - "stadium_canonical_id": "stadium_nfl_nrg_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251102_chi_cin", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-02T18:00:00Z", + "season": "2025", + "date": "2025-11-02", + "time": "1p", + "home_team": "Cincinnati Bengals", + "away_team": "Chicago Bears", + "home_team_abbrev": "CIN", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nfl_cin", "away_team_canonical_id": "team_nfl_chi", + "venue": "Paycor Stadium", "stadium_canonical_id": "stadium_nfl_paycor_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251102_car_gb", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-02T18:00:00Z", + "season": "2025", + "date": "2025-11-02", + "time": "12p", + "home_team": "Green Bay Packers", + "away_team": "Carolina Panthers", + "home_team_abbrev": "GB", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nfl_gb", "away_team_canonical_id": "team_nfl_car", + "venue": "Lambeau Field", "stadium_canonical_id": "stadium_nfl_lambeau_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251102_lac_ten", + "sport": "NFL", + "season": "2025", + "date": "2025-11-02", + "time": "12p", + "home_team": "Tennessee Titans", + "away_team": "Los Angeles Chargers", + "home_team_abbrev": "TEN", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nfl_ten", + "away_team_canonical_id": "team_nfl_lac", + "venue": "Nissan Stadium", + "stadium_canonical_id": "stadium_nfl_nissan_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251102_atl_ne", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-02T18:00:00Z", + "season": "2025", + "date": "2025-11-02", + "time": "1p", + "home_team": "New England Patriots", + "away_team": "Atlanta Falcons", + "home_team_abbrev": "NE", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nfl_ne", "away_team_canonical_id": "team_nfl_atl", + "venue": "Gillette Stadium", "stadium_canonical_id": "stadium_nfl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nwsl_2025_20251102_sdw_kcc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-11-02T20:00:00Z", - "home_team_canonical_id": "team_nwsl_kcc", - "away_team_canonical_id": "team_nwsl_sdw", - "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251102_jax_lv", + "canonical_id": "game_nfl_2026_20251102_sf_nyg", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-11-02T21:05:00Z", - "home_team_canonical_id": "team_nfl_lv", - "away_team_canonical_id": "team_nfl_jax", - "stadium_canonical_id": "stadium_nfl_allegiant_stadium", + "date": "2025-11-02", + "time": "1p", + "home_team": "New York Giants", + "away_team": "San Francisco 49ers", + "home_team_abbrev": "NYG", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_nfl_nyg", + "away_team_canonical_id": "team_nfl_sf", + "venue": "MetLife Stadium", + "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251102_no_lar", + "canonical_id": "game_nfl_2026_20251102_den_hou", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-11-02T21:05:00Z", - "home_team_canonical_id": "team_nfl_lar", - "away_team_canonical_id": "team_nfl_no", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "date": "2025-11-02", + "time": "12p", + "home_team": "Houston Texans", + "away_team": "Denver Broncos", + "home_team_abbrev": "HOU", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nfl_hou", + "away_team_canonical_id": "team_nfl_den", + "venue": "NRG Stadium", + "stadium_canonical_id": "stadium_nfl_nrg_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251102_nop_okc", + "sport": "NBA", + "season": "2025", + "date": "2025-11-02", + "time": "2:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "OKC", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_nop", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251102_tb_ari", + "sport": "NHL", + "season": "2025", + "date": "2025-11-02", + "time": "1:30p", + "home_team": "Utah Club", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "ARI", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251102_no_lar", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-02T21:05:00Z", + "season": "2025", + "date": "2025-11-02", + "time": "1:05p", + "home_team": "Los Angeles Rams", + "away_team": "New Orleans Saints", + "home_team_abbrev": "LAR", + "away_team_abbrev": "NO", "home_team_canonical_id": "team_nfl_lar", "away_team_canonical_id": "team_nfl_no", + "venue": "SoFi Stadium", "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251102_jax_lv", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-02T21:05:00Z", + "season": "2025", + "date": "2025-11-02", + "time": "1:05p", + "home_team": "Las Vegas Raiders", + "away_team": "Jacksonville Jaguars", + "home_team_abbrev": "LV", + "away_team_abbrev": "JAX", "home_team_canonical_id": "team_nfl_lv", "away_team_canonical_id": "team_nfl_jax", + "venue": "Allegiant Stadium", "stadium_canonical_id": "stadium_nfl_allegiant_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251102_kc_buf", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-02T21:25:00Z", - "home_team_canonical_id": "team_nfl_buf", - "away_team_canonical_id": "team_nfl_kc", - "stadium_canonical_id": "stadium_nfl_highmark_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251102_kc_buf", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-02T21:25:00Z", + "season": "2025", + "date": "2025-11-02", + "time": "4:25p", + "home_team": "Buffalo Bills", + "away_team": "Kansas City Chiefs", + "home_team_abbrev": "BUF", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_nfl_buf", "away_team_canonical_id": "team_nfl_kc", + "venue": "Highmark Stadium", "stadium_canonical_id": "stadium_nfl_highmark_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nwsl_2025_20251102_ang_chi", - "sport": "NWSL", + "canonical_id": "game_nhl_2025_20251102_cbj_nyi", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-11-02T22:15:00Z", - "home_team_canonical_id": "team_nwsl_chi", - "away_team_canonical_id": "team_nwsl_ang", - "stadium_canonical_id": "stadium_nwsl_seatgeek_stadium", + "date": "2025-11-02", + "time": "5p", + "home_team": "New York Islanders", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "NYI", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nwsl_2025_20251102_njy_ncc", - "sport": "NWSL", + "canonical_id": "game_nba_2025_20251102_uta_cho", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-11-02T22:15:00Z", - "home_team_canonical_id": "team_nwsl_ncc", - "away_team_canonical_id": "team_nwsl_njy", - "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", + "date": "2025-11-02", + "time": "6p", + "home_team": "Charlotte Hornets", + "away_team": "Utah Jazz", + "home_team_abbrev": "CHA", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_uta", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nwsl_2025_20251102_sea_orl", - "sport": "NWSL", + "canonical_id": "game_nba_2025_20251102_mem_tor", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-11-02T22:15:00Z", - "home_team_canonical_id": "team_nwsl_orl", - "away_team_canonical_id": "team_nwsl_sea", - "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "date": "2025-11-02", + "time": "6p", + "home_team": "Toronto Raptors", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "TOR", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_mem", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nwsl_2025_20251102_hou_por", - "sport": "NWSL", + "canonical_id": "game_nba_2025_20251102_phi_brk", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-11-02T22:15:00Z", - "home_team_canonical_id": "team_nwsl_por", - "away_team_canonical_id": "team_nwsl_hou", - "stadium_canonical_id": "stadium_nwsl_providence_park", + "date": "2025-11-02", + "time": "6p", + "home_team": "Brooklyn Nets", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "BKN", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_phi", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nwsl_2025_20251102_bay_rgn", - "sport": "NWSL", + "canonical_id": "game_nba_2025_20251102_atl_cle", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-11-02T22:15:00Z", - "home_team_canonical_id": "team_nwsl_rgn", - "away_team_canonical_id": "team_nwsl_bay", - "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", + "date": "2025-11-02", + "time": "5p", + "home_team": "Cleveland Cavaliers", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "CLE", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_atl", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nwsl_2025_20251102_wsh_uta", - "sport": "NWSL", + "canonical_id": "game_nba_2025_20251102_chi_nyk", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-11-02T22:15:00Z", - "home_team_canonical_id": "team_nwsl_uta", - "away_team_canonical_id": "team_nwsl_wsh", - "stadium_canonical_id": "stadium_nwsl_america_first_field", + "date": "2025-11-02", + "time": "7p", + "home_team": "New York Knicks", + "away_team": "Chicago Bulls", + "home_team_abbrev": "NYK", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_chi", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mls_2025_20251102_cin_clb", - "sport": "MLS", + "canonical_id": "game_nhl_2025_20251102_cgy_phi", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-11-02T23:30:00Z", - "home_team_canonical_id": "team_mls_clb", - "away_team_canonical_id": "team_mls_cin", - "stadium_canonical_id": "stadium_mls_lowercom_field", + "date": "2025-11-02", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Calgary Flames", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251103_sea_was", - "sport": "NFL", + "canonical_id": "game_nba_2025_20251102_sas_phx", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-11-03T01:20:00Z", - "home_team_canonical_id": "team_nfl_was", - "away_team_canonical_id": "team_nfl_sea", - "stadium_canonical_id": "stadium_nfl_northwest_stadium", + "date": "2025-11-02", + "time": "8p", + "home_team": "Phoenix Suns", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "PHX", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_sas", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251102_njd_ana", + "sport": "NHL", + "season": "2025", + "date": "2025-11-02", + "time": "5p", + "home_team": "Anaheim Ducks", + "away_team": "New Jersey Devils", + "home_team_abbrev": "ANA", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_njd", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251102_det_sj", + "sport": "NHL", + "season": "2025", + "date": "2025-11-02", + "time": "5p", + "home_team": "San Jose Sharks", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "SJ", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_det", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251103_sea_was", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-03T01:20:00Z", + "season": "2025", + "date": "2025-11-02", + "time": "8:20p", + "home_team": "Washington Commanders", + "away_team": "Seattle Seahawks", + "home_team_abbrev": "WAS", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_nfl_was", "away_team_canonical_id": "team_nfl_sea", + "venue": "Northwest Stadium", "stadium_canonical_id": "stadium_nfl_northwest_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mls_2025_20251103_lafc_aus", - "sport": "MLS", + "canonical_id": "game_nba_2025_20251102_mia_lal", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-11-03T01:45:00Z", - "home_team_canonical_id": "team_mls_aus", - "away_team_canonical_id": "team_mls_lafc", - "stadium_canonical_id": "stadium_mls_q2_stadium", + "date": "2025-11-02", + "time": "6:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Miami Heat", + "home_team_abbrev": "LAL", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_mia", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251103_min_brk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-03T05:00:00Z", + "season": "2025", + "date": "2025-11-03", + "time": "7p", + "home_team": "Brooklyn Nets", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "BKN", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nba_brk", "away_team_canonical_id": "team_nba_min", + "venue": "Barclays Center", "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251103_mil_ind", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-03T05:00:00Z", + "season": "2025", + "date": "2025-11-03", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "IND", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_nba_ind", "away_team_canonical_id": "team_nba_mil", + "venue": "Gainbridge Fieldhouse", "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251103_uta_bos", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-03T05:00:00Z", + "season": "2025", + "date": "2025-11-03", + "time": "7:30p", + "home_team": "Boston Celtics", + "away_team": "Utah Jazz", + "home_team_abbrev": "BOS", + "away_team_abbrev": "UTA", "home_team_canonical_id": "team_nba_bos", "away_team_canonical_id": "team_nba_uta", + "venue": "TD Garden", "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251103_was_nyk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-03T05:00:00Z", + "season": "2025", + "date": "2025-11-03", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Washington Wizards", + "home_team_abbrev": "NYK", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nba_nyk", "away_team_canonical_id": "team_nba_was", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251103_pit_tor", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-03T05:00:00Z", + "season": "2025", + "date": "2025-11-03", + "time": "7:30p", + "home_team": "Toronto Maple Leafs", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "TOR", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_nhl_tor", "away_team_canonical_id": "team_nhl_pit", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251103_dal_hou", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-03T06:00:00Z", + "season": "2025", + "date": "2025-11-03", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "HOU", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nba_hou", "away_team_canonical_id": "team_nba_dal", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251103_det_mem", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-03T06:00:00Z", + "season": "2025", + "date": "2025-11-03", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Detroit Pistons", + "home_team_abbrev": "MEM", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nba_mem", "away_team_canonical_id": "team_nba_det", + "venue": "FedExForum", "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251103_van_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-03T06:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251103_edm_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-03T06:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251103_sac_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-03T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251103_lal_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-03T08:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251103_mia_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-03T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251103_chi_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-03T08:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251104_ari_dal", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-04T01:15:00Z", - "home_team_canonical_id": "team_nfl_dal", - "away_team_canonical_id": "team_nfl_ari", - "stadium_canonical_id": "stadium_nfl_att_stadium", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251104_ari_dal", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-04T01:15:00Z", + "season": "2025", + "date": "2025-11-03", + "time": "7:15p", + "home_team": "Dallas Cowboys", + "away_team": "Arizona Cardinals", + "home_team_abbrev": "DAL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_nfl_dal", "away_team_canonical_id": "team_nfl_ari", + "venue": "AT&T Stadium", "stadium_canonical_id": "stadium_nfl_att_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mls_2025_20251104_min_sea", - "sport": "MLS", + "canonical_id": "game_nhl_2025_20251103_edm_stl", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-11-04T03:45:00Z", - "home_team_canonical_id": "team_mls_sea", - "away_team_canonical_id": "team_mls_min", - "stadium_canonical_id": "stadium_mls_lumen_field", + "date": "2025-11-03", + "time": "7:30p", + "home_team": "St. Louis Blues", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "STL", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251104_mil_tor", + "canonical_id": "game_nhl_2025_20251103_van_nsh", + "sport": "NHL", + "season": "2025", + "date": "2025-11-03", + "time": "7:30p", + "home_team": "Nashville Predators", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "NSH", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_van", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251103_sac_den", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-04T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "season": "2025", + "date": "2025-11-03", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Sacramento Kings", + "home_team_abbrev": "DEN", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_sac", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251104_orl_atl", + "canonical_id": "game_nba_2025_20251103_lal_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-04T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_state_farm_arena", + "season": "2025", + "date": "2025-11-03", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "POR", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_lal", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251104_ari_buf", + "canonical_id": "game_nhl_2025_20251103_chi_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-04T05:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_keybank_center", + "season": "2025", + "date": "2025-11-03", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251104_phi_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-04T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251104_bos_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-04T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_ubs_arena", + "canonical_id": "game_nba_2025_20251103_mia_lac", + "sport": "NBA", + "season": "2025", + "date": "2025-11-03", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Miami Heat", + "home_team_abbrev": "LAC", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_mia", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251104_car_nyr", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-04T05:00:00Z", + "season": "2025", + "date": "2025-11-04", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "NYR", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nhl_nyr", "away_team_canonical_id": "team_nhl_car", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251104_ari_buf", + "sport": "NHL", + "season": "2025", + "date": "2025-11-04", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Utah Club", + "home_team_abbrev": "BUF", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_ari", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251104_phi_mtl", + "sport": "NHL", + "season": "2025", + "date": "2025-11-04", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "MTL", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_phi", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251104_bos_nyi", + "sport": "NHL", + "season": "2025", + "date": "2025-11-04", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Boston Bruins", + "home_team_abbrev": "NYI", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_bos", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251104_mil_tor", + "sport": "NBA", + "season": "2025", + "date": "2025-11-04", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "TOR", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_mil", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251104_orl_atl", + "sport": "NBA", + "season": "2025", + "date": "2025-11-04", + "time": "8p", + "home_team": "Atlanta Hawks", + "away_team": "Orlando Magic", + "home_team_abbrev": "ATL", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_orl", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251104_phi_chi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-04T06:00:00Z", + "season": "2025", + "date": "2025-11-04", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "CHI", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nba_chi", "away_team_canonical_id": "team_nba_phi", + "venue": "United Center", "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251104_cho_nop", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-04T06:00:00Z", + "season": "2025", + "date": "2025-11-04", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "NOP", + "away_team_abbrev": "CHA", "home_team_canonical_id": "team_nba_nop", "away_team_canonical_id": "team_nba_cho", + "venue": "Smoothie King Center", "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251104_edm_dal", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-04T06:00:00Z", + "season": "2025", + "date": "2025-11-04", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "DAL", + "away_team_abbrev": "EDM", "home_team_canonical_id": "team_nhl_dal", "away_team_canonical_id": "team_nhl_edm", + "venue": "American Airlines Center", "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251104_nsh_min", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-04T06:00:00Z", + "season": "2025", + "date": "2025-11-04", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "Nashville Predators", + "home_team_abbrev": "MIN", + "away_team_abbrev": "NSH", "home_team_canonical_id": "team_nhl_min", "away_team_canonical_id": "team_nhl_nsh", + "venue": "Xcel Energy Center", "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251104_tb_col", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-04T07:00:00Z", + "season": "2025", + "date": "2025-11-04", + "time": "7:30p", + "home_team": "Colorado Avalanche", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "COL", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_nhl_col", "away_team_canonical_id": "team_nhl_tb", + "venue": "Ball Arena", "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251104_phx_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-04T08:00:00Z", + "season": "2025", + "date": "2025-11-04", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Phoenix Suns", + "home_team_abbrev": "GSW", + "away_team_abbrev": "PHX", "home_team_canonical_id": "team_nba_gsw", "away_team_canonical_id": "team_nba_phx", + "venue": "Chase Center", "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251104_okc_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-04T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251104_fla_ana", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-04T08:00:00Z", + "season": "2025", + "date": "2025-11-04", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Florida Panthers", + "home_team_abbrev": "ANA", + "away_team_abbrev": "FLA", "home_team_canonical_id": "team_nhl_ana", "away_team_canonical_id": "team_nhl_fla", + "venue": "Honda Center", "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251104_wpg_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-04T08:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251104_det_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-04T08:00:00Z", + "season": "2025", + "date": "2025-11-04", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "VGK", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nhl_vgk", "away_team_canonical_id": "team_nhl_det", + "venue": "T-Mobile Arena", "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251105_uta_det", + "canonical_id": "game_nhl_2025_20251104_wpg_la", + "sport": "NHL", + "season": "2025", + "date": "2025-11-04", + "time": "7:30p", + "home_team": "Los Angeles Kings", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "LA", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251104_okc_lac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-05T05:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "season": "2025", + "date": "2025-11-04", + "time": "8p", + "home_team": "Los Angeles Clippers", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "LAC", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_okc", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251105_brk_ind", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-05T05:00:00Z", + "season": "2025", + "date": "2025-11-05", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "IND", + "away_team_abbrev": "BKN", "home_team_canonical_id": "team_nba_ind", "away_team_canonical_id": "team_nba_brk", + "venue": "Gainbridge Fieldhouse", "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251105_was_bos", + "canonical_id": "game_nba_2025_20251105_uta_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-05T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251105_min_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-05T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251105_ari_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-05T05:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251105_stl_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-05T05:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "season": "2025", + "date": "2025-11-05", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Utah Jazz", + "home_team_abbrev": "DET", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_uta", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251105_phi_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-05T06:00:00Z", + "season": "2025", + "date": "2025-11-05", + "time": "6p", + "home_team": "Cleveland Cavaliers", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nba_cle", "away_team_canonical_id": "team_nba_phi", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251105_ari_tor", + "sport": "NHL", + "season": "2025", + "date": "2025-11-05", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Utah Club", + "home_team_abbrev": "TOR", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251105_was_bos", + "sport": "NBA", + "season": "2025", + "date": "2025-11-05", + "time": "7:30p", + "home_team": "Boston Celtics", + "away_team": "Washington Wizards", + "home_team_abbrev": "BOS", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_was", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251105_min_nyk", + "sport": "NBA", + "season": "2025", + "date": "2025-11-05", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "NYK", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_min", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251105_stl_was", + "sport": "NHL", + "season": "2025", + "date": "2025-11-05", + "time": "7:30p", + "home_team": "Washington Capitals", + "away_team": "St. Louis Blues", + "home_team_abbrev": "WAS", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251105_hou_mem", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-05T06:00:00Z", + "season": "2025", + "date": "2025-11-05", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Houston Rockets", + "home_team_abbrev": "MEM", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nba_mem", "away_team_canonical_id": "team_nba_hou", + "venue": "FedExForum", "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251105_nop_dal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-05T06:00:00Z", + "season": "2025", + "date": "2025-11-05", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "DAL", + "away_team_abbrev": "NOP", "home_team_canonical_id": "team_nba_dal", "away_team_canonical_id": "team_nba_nop", + "venue": "American Airlines Center", "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251105_mia_den", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-05T07:00:00Z", + "season": "2025", + "date": "2025-11-05", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Miami Heat", + "home_team_abbrev": "DEN", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_nba_den", "away_team_canonical_id": "team_nba_mia", + "venue": "Ball Arena", "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251105_cbj_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-05T07:00:00Z", + "season": "2025", + "date": "2025-11-05", + "time": "7:30p", + "home_team": "Calgary Flames", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "CGY", + "away_team_abbrev": "CBJ", "home_team_canonical_id": "team_nhl_cgy", "away_team_canonical_id": "team_nhl_cbj", + "venue": "Scotiabank Saddledome", "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251105_sas_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-05T08:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251105_okc_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-05T08:00:00Z", + "season": "2025", + "date": "2025-11-05", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "POR", + "away_team_abbrev": "OKC", "home_team_canonical_id": "team_nba_por", "away_team_canonical_id": "team_nba_okc", + "venue": "Moda Center", "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251105_sas_lal", + "sport": "NBA", + "season": "2025", + "date": "2025-11-05", + "time": "7p", + "home_team": "Los Angeles Lakers", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "LAL", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_sas", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251105_gsw_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-05T08:00:00Z", + "season": "2025", + "date": "2025-11-05", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Golden State Warriors", + "home_team_abbrev": "SAC", + "away_team_abbrev": "GSW", "home_team_canonical_id": "team_nba_sac", "away_team_canonical_id": "team_nba_gsw", + "venue": "Golden 1 Center", "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251105_sj_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-05T08:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251105_chi_van", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-05T08:00:00Z", + "season": "2025", + "date": "2025-11-05", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "VAN", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nhl_van", "away_team_canonical_id": "team_nhl_chi", + "venue": "Rogers Arena", "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251106_lac_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-06T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "canonical_id": "game_nhl_2025_20251105_sj_sea", + "sport": "NHL", + "season": "2025", + "date": "2025-11-05", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "San Jose Sharks", + "home_team_abbrev": "SEA", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251106_ott_bos", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-06T05:00:00Z", + "season": "2025", + "date": "2025-11-06", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Ottawa Senators", + "home_team_abbrev": "BOS", + "away_team_abbrev": "OTT", "home_team_canonical_id": "team_nhl_bos", "away_team_canonical_id": "team_nhl_ott", + "venue": "TD Garden", "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251106_stl_buf", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-06T05:00:00Z", + "season": "2025", + "date": "2025-11-06", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "St. Louis Blues", + "home_team_abbrev": "BUF", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_nhl_buf", "away_team_canonical_id": "team_nhl_stl", + "venue": "KeyBank Center", "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251106_min_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-06T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251106_mtl_njd", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-06T05:00:00Z", + "season": "2025", + "date": "2025-11-06", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "NJ", + "away_team_abbrev": "MTL", "home_team_canonical_id": "team_nhl_njd", "away_team_canonical_id": "team_nhl_mtl", + "venue": "Prudential Center", "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251106_min_car", + "sport": "NHL", + "season": "2025", + "date": "2025-11-06", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Minnesota Wild", + "home_team_abbrev": "CAR", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_min", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251106_was_pit", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-06T05:00:00Z", + "season": "2025", + "date": "2025-11-06", + "time": "7:30p", + "home_team": "Pittsburgh Penguins", + "away_team": "Washington Capitals", + "home_team_abbrev": "PIT", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nhl_pit", "away_team_canonical_id": "team_nhl_was", + "venue": "PPG Paints Arena", "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251106_ana_dal", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-06T06:00:00Z", + "season": "2025", + "date": "2025-11-06", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "DAL", + "away_team_abbrev": "ANA", "home_team_canonical_id": "team_nhl_dal", "away_team_canonical_id": "team_nhl_ana", + "venue": "American Airlines Center", "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251106_phi_nsh", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-06T06:00:00Z", + "season": "2025", + "date": "2025-11-06", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "NSH", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nhl_nsh", "away_team_canonical_id": "team_nhl_phi", + "venue": "Bridgestone Arena", "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251106_fla_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-06T08:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251106_tb_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-06T08:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251107_lv_den", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-07T01:15:00Z", - "home_team_canonical_id": "team_nfl_den", - "away_team_canonical_id": "team_nfl_lv", - "stadium_canonical_id": "stadium_nfl_empower_field", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251107_lv_den", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-07T01:15:00Z", + "season": "2025", + "date": "2025-11-06", + "time": "6:15p", + "home_team": "Denver Broncos", + "away_team": "Las Vegas Raiders", + "home_team_abbrev": "DEN", + "away_team_abbrev": "LV", "home_team_canonical_id": "team_nfl_den", "away_team_canonical_id": "team_nfl_lv", - "stadium_canonical_id": "stadium_nfl_empower_field_at_mile_high", + "venue": "Empower Field at Mile High", + "stadium_canonical_id": "stadium_nfl_empower_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251106_lac_phx", + "sport": "NBA", + "season": "2025", + "date": "2025-11-06", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "PHX", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_lac", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251106_fla_la", + "sport": "NHL", + "season": "2025", + "date": "2025-11-06", + "time": "7p", + "home_team": "Los Angeles Kings", + "away_team": "Florida Panthers", + "home_team_abbrev": "LA", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251106_tb_vgk", + "sport": "NHL", + "season": "2025", + "date": "2025-11-06", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "VGK", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_tb", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251107_bos_orl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-07T05:00:00Z", + "season": "2025", + "date": "2025-11-07", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Boston Celtics", + "home_team_abbrev": "ORL", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_nba_orl", "away_team_canonical_id": "team_nba_bos", + "venue": "Kia Center", "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251107_cle_was", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-07T05:00:00Z", + "season": "2025", + "date": "2025-11-07", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "WAS", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nba_was", "away_team_canonical_id": "team_nba_cle", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251107_tor_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-07T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251107_det_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-07T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251107_cho_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-07T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251107_nyr_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-07T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251107_min_nyi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-07T05:00:00Z", + "season": "2025", + "date": "2025-11-07", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Minnesota Wild", + "home_team_abbrev": "NYI", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nhl_nyi", "away_team_canonical_id": "team_nhl_min", + "venue": "UBS Arena", "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251107_nyr_det", + "sport": "NHL", + "season": "2025", + "date": "2025-11-07", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "New York Rangers", + "home_team_abbrev": "DET", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251107_hou_sas", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-07T06:00:00Z", + "season": "2025", + "date": "2025-11-07", + "time": "6:30p", + "home_team": "San Antonio Spurs", + "away_team": "Houston Rockets", + "home_team_abbrev": "SAS", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nba_sas", "away_team_canonical_id": "team_nba_hou", + "venue": "Frost Bank Center", "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251107_dal_mem", + "canonical_id": "game_nba_2025_20251107_tor_atl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-07T06:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_fedexforum", + "season": "2025", + "date": "2025-11-07", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Toronto Raptors", + "home_team_abbrev": "ATL", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_tor", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251107_det_brk", + "sport": "NBA", + "season": "2025", + "date": "2025-11-07", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Detroit Pistons", + "home_team_abbrev": "BKN", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_det", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251107_chi_mil", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-07T06:00:00Z", + "season": "2025", + "date": "2025-11-07", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Chicago Bulls", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nba_mil", "away_team_canonical_id": "team_nba_chi", + "venue": "Fiserv Forum", "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251107_dal_mem", + "sport": "NBA", + "season": "2025", + "date": "2025-11-07", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "MEM", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_dal", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251107_cho_mia", + "sport": "NBA", + "season": "2025", + "date": "2025-11-07", + "time": "8p", + "home_team": "Miami Heat", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_cho", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251107_uta_min", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-07T06:00:00Z", + "season": "2025", + "date": "2025-11-07", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "Utah Jazz", + "home_team_abbrev": "MIN", + "away_team_abbrev": "UTA", "home_team_canonical_id": "team_nba_min", "away_team_canonical_id": "team_nba_uta", + "venue": "Target Center", "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251107_gsw_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-07T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251107_chi_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-07T07:00:00Z", + "season": "2025", + "date": "2025-11-07", + "time": "7p", + "home_team": "Calgary Flames", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "CGY", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nhl_cgy", "away_team_canonical_id": "team_nhl_chi", + "venue": "Scotiabank Saddledome", "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251107_gsw_den", + "sport": "NBA", + "season": "2025", + "date": "2025-11-07", + "time": "8p", + "home_team": "Denver Nuggets", + "away_team": "Golden State Warriors", + "home_team_abbrev": "DEN", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251107_okc_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-07T08:00:00Z", + "season": "2025", + "date": "2025-11-07", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "SAC", + "away_team_abbrev": "OKC", "home_team_canonical_id": "team_nba_sac", "away_team_canonical_id": "team_nba_okc", + "venue": "Golden 1 Center", "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251107_wpg_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-07T08:00:00Z", + "season": "2025", + "date": "2025-11-07", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "SJ", + "away_team_abbrev": "WPG", "home_team_canonical_id": "team_nhl_sj", "away_team_canonical_id": "team_nhl_wpg", + "venue": "SAP Center", "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251107_dal_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-11-07T20:00:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_dal", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251108_nyc_clt", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-11-08T00:00:00Z", - "home_team_canonical_id": "team_mls_clt", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20251108_sea_orl", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-11-08T01:00:00Z", - "home_team_canonical_id": "team_nwsl_orl", - "away_team_canonical_id": "team_nwsl_sea", - "stadium_canonical_id": "stadium_nwsl_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251108_dal_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T05:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251108_lal_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251108_por_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251108_buf_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251108_ari_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251108_pit_njd", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T05:00:00Z", + "season": "2025", + "date": "2025-11-08", + "time": "12:30p", + "home_team": "New Jersey Devils", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "NJ", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_nhl_njd", "away_team_canonical_id": "team_nhl_pit", + "venue": "Prudential Center", "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251108_nyi_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251108_ott_phi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T05:00:00Z", + "season": "2025", + "date": "2025-11-08", + "time": "1p", + "home_team": "Philadelphia Flyers", + "away_team": "Ottawa Senators", + "home_team_abbrev": "PHI", + "away_team_abbrev": "OTT", "home_team_canonical_id": "team_nhl_phi", "away_team_canonical_id": "team_nhl_ott", + "venue": "Wells Fargo Center", "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251108_was_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T05:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_amalie_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251108_bos_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T05:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251108_chi_cle", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T06:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251108_nop_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T06:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251108_dal_nsh", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T06:00:00Z", + "season": "2025", + "date": "2025-11-08", + "time": "2:30p", + "home_team": "Nashville Predators", + "away_team": "Dallas Stars", + "home_team_abbrev": "NSH", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nhl_nsh", "away_team_canonical_id": "team_nhl_dal", + "venue": "Bridgestone Arena", "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251108_dal_was", + "sport": "NBA", + "season": "2025", + "date": "2025-11-08", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "WAS", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_dal", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251108_ari_mtl", + "sport": "NHL", + "season": "2025", + "date": "2025-11-08", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Utah Club", + "home_team_abbrev": "MTL", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251108_buf_car", + "sport": "NHL", + "season": "2025", + "date": "2025-11-08", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "CAR", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_buf", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251108_nyi_nyr", + "sport": "NHL", + "season": "2025", + "date": "2025-11-08", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "New York Islanders", + "home_team_abbrev": "NYR", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251108_sea_stl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T06:00:00Z", + "season": "2025", + "date": "2025-11-08", + "time": "6p", + "home_team": "St. Louis Blues", + "away_team": "Seattle Kraken", + "home_team_abbrev": "STL", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_nhl_stl", "away_team_canonical_id": "team_nhl_sea", + "venue": "Enterprise Center", "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251108_ind_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251108_col_edm", + "canonical_id": "game_nhl_2025_20251108_was_tb", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_rogers_place", + "season": "2025", + "date": "2025-11-08", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Washington Capitals", + "home_team_abbrev": "TB", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_was", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251108_bos_tor", + "sport": "NHL", + "season": "2025", + "date": "2025-11-08", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Boston Bruins", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251108_tor_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T08:00:00Z", + "season": "2025", + "date": "2025-11-08", + "time": "4:30p", + "home_team": "Philadelphia 76ers", + "away_team": "Toronto Raptors", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_tor", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251108_phx_lac", + "canonical_id": "game_nba_2025_20251108_nop_sas", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_intuit_dome", + "season": "2025", + "date": "2025-11-08", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "SAS", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_nop", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251108_por_mia", + "sport": "NBA", + "season": "2025", + "date": "2025-11-08", + "time": "8p", + "home_team": "Miami Heat", + "away_team": "Portland Blazers", + "home_team_abbrev": "MIA", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_por", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251108_chi_cle", + "sport": "NBA", + "season": "2025", + "date": "2025-11-08", + "time": "7p", + "home_team": "Cleveland Cavaliers", + "away_team": "Chicago Bulls", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_chi", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251108_lal_atl", + "sport": "NBA", + "season": "2025", + "date": "2025-11-08", + "time": "8p", + "home_team": "Atlanta Hawks", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_lal", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251108_ind_den", + "sport": "NBA", + "season": "2025", + "date": "2025-11-08", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Indiana Pacers", + "home_team_abbrev": "DEN", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_ind", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251108_fla_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T08:00:00Z", + "season": "2025", + "date": "2025-11-08", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Florida Panthers", + "home_team_abbrev": "SJ", + "away_team_abbrev": "FLA", "home_team_canonical_id": "team_nhl_sj", "away_team_canonical_id": "team_nhl_fla", + "venue": "SAP Center", "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251108_cbj_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T08:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251108_ana_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-08T08:00:00Z", + "season": "2025", + "date": "2025-11-08", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "VGK", + "away_team_abbrev": "ANA", "home_team_canonical_id": "team_nhl_vgk", "away_team_canonical_id": "team_nhl_ana", + "venue": "T-Mobile Arena", "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nwsl_2025_20251108_rgn_wsh", - "sport": "NWSL", + "canonical_id": "game_nhl_2025_20251108_cbj_van", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-11-08T17:00:00Z", - "home_team_canonical_id": "team_nwsl_wsh", - "away_team_canonical_id": "team_nwsl_rgn", - "stadium_canonical_id": "stadium_nwsl_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251108_aus_lafc", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-11-08T20:00:00Z", - "home_team_canonical_id": "team_mls_lafc", - "away_team_canonical_id": "team_mls_aus", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251108_chi_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-11-08T20:00:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_chi", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251108_sea_min", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-11-08T21:00:00Z", - "home_team_canonical_id": "team_mls_min", - "away_team_canonical_id": "team_mls_sea", - "stadium_canonical_id": "stadium_mls_allianz_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251108_clb_cin", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-11-08T23:00:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_clb", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251109_nsh_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-11-09T01:00:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_nsh", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251109_brk_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-09T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251109_bos_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-09T05:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251109_chi_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-09T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251109_ari_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-09T05:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251109_la_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-09T05:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251109_car_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-09T05:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251109_hou_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-09T06:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251109_okc_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-09T06:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251109_sea_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-09T06:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251109_cgy_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-09T06:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251109_det_phi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-09T08:00:00Z", - "home_team_canonical_id": "team_nba_phi", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251109_ind_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-09T08:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251109_min_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-09T08:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251109_wpg_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-09T08:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251109_col_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-09T08:00:00Z", + "date": "2025-11-08", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "VAN", + "away_team_abbrev": "CBJ", "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "Rogers Arena", "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251109_atl_ind", - "sport": "NFL", + "canonical_id": "game_nhl_2025_20251108_col_edm", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-11-09T14:30:00Z", - "home_team_canonical_id": "team_nfl_ind", - "away_team_canonical_id": "team_nfl_atl", - "stadium_canonical_id": "", + "date": "2025-11-08", + "time": "8p", + "home_team": "Edmonton Oilers", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "EDM", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_col", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251108_phx_lac", + "sport": "NBA", + "season": "2025", + "date": "2025-11-08", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Phoenix Suns", + "home_team_abbrev": "LAC", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_phx", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251109_atl_ind", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-09T14:30:00Z", + "season": "2025", + "date": "2025-11-09", + "time": "3:30p", + "home_team": "Indianapolis Colts", + "away_team": "Atlanta Falcons", + "home_team_abbrev": "IND", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nfl_ind", "away_team_canonical_id": "team_nfl_atl", + "venue": "Olympic Stadium Berlin", "stadium_canonical_id": "stadium_nfl_olympic_stadium_berlin", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nwsl_2025_20251109_njy_kcc", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-11-09T17:30:00Z", - "home_team_canonical_id": "team_nwsl_kcc", - "away_team_canonical_id": "team_nwsl_njy", - "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251109_nyg_chi", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-09T18:00:00Z", - "home_team_canonical_id": "team_nfl_chi", - "away_team_canonical_id": "team_nfl_nyg", - "stadium_canonical_id": "stadium_nfl_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251109_buf_mia", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-09T18:00:00Z", - "home_team_canonical_id": "team_nfl_mia", - "away_team_canonical_id": "team_nfl_buf", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251109_bal_min", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-09T18:00:00Z", - "home_team_canonical_id": "team_nfl_min", - "away_team_canonical_id": "team_nfl_bal", - "stadium_canonical_id": "stadium_nfl_us_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251109_cle_nyj", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-09T18:00:00Z", - "home_team_canonical_id": "team_nfl_nyj", - "away_team_canonical_id": "team_nfl_cle", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251109_ne_tb", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-09T18:00:00Z", - "home_team_canonical_id": "team_nfl_tb", - "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251109_no_car", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-09T18:00:00Z", - "home_team_canonical_id": "team_nfl_car", - "away_team_canonical_id": "team_nfl_no", - "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251109_jax_hou", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-09T18:00:00Z", - "home_team_canonical_id": "team_nfl_hou", - "away_team_canonical_id": "team_nfl_jax", - "stadium_canonical_id": "stadium_nfl_nrg_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251109_nyg_chi", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-09T18:00:00Z", - "home_team_canonical_id": "team_nfl_chi", - "away_team_canonical_id": "team_nfl_nyg", - "stadium_canonical_id": "stadium_nfl_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251109_no_car", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-09T18:00:00Z", - "home_team_canonical_id": "team_nfl_car", - "away_team_canonical_id": "team_nfl_no", - "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251109_ne_tb", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-09T18:00:00Z", - "home_team_canonical_id": "team_nfl_tb", - "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251109_jax_hou", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-09T18:00:00Z", + "season": "2025", + "date": "2025-11-09", + "time": "12p", + "home_team": "Houston Texans", + "away_team": "Jacksonville Jaguars", + "home_team_abbrev": "HOU", + "away_team_abbrev": "JAX", "home_team_canonical_id": "team_nfl_hou", "away_team_canonical_id": "team_nfl_jax", + "venue": "NRG Stadium", "stadium_canonical_id": "stadium_nfl_nrg_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2026_20251109_cle_nyj", + "canonical_id": "game_nfl_2026_20251109_nyg_chi", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-09T18:00:00Z", - "home_team_canonical_id": "team_nfl_nyj", - "away_team_canonical_id": "team_nfl_cle", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "season": "2025", + "date": "2025-11-09", + "time": "12p", + "home_team": "Chicago Bears", + "away_team": "New York Giants", + "home_team_abbrev": "CHI", + "away_team_abbrev": "NYG", + "home_team_canonical_id": "team_nfl_chi", + "away_team_canonical_id": "team_nfl_nyg", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_nfl_soldier_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251109_buf_mia", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-09T18:00:00Z", + "season": "2025", + "date": "2025-11-09", + "time": "1p", + "home_team": "Miami Dolphins", + "away_team": "Buffalo Bills", + "home_team_abbrev": "MIA", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nfl_mia", "away_team_canonical_id": "team_nfl_buf", + "venue": "Hard Rock Stadium", "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251109_bal_min", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-09T18:00:00Z", + "season": "2025", + "date": "2025-11-09", + "time": "12p", + "home_team": "Minnesota Vikings", + "away_team": "Baltimore Ravens", + "home_team_abbrev": "MIN", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_nfl_min", "away_team_canonical_id": "team_nfl_bal", + "venue": "U.S. Bank Stadium", "stadium_canonical_id": "stadium_nfl_us_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nwsl_2025_20251109_sdw_por", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-11-09T20:00:00Z", - "home_team_canonical_id": "team_nwsl_por", - "away_team_canonical_id": "team_nwsl_sdw", - "stadium_canonical_id": "stadium_nwsl_providence_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251109_ari_sea", + "canonical_id": "game_nfl_2026_20251109_cle_nyj", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-11-09T21:05:00Z", - "home_team_canonical_id": "team_nfl_sea", - "away_team_canonical_id": "team_nfl_ari", - "stadium_canonical_id": "stadium_nfl_lumen_field", + "date": "2025-11-09", + "time": "1p", + "home_team": "New York Jets", + "away_team": "Cleveland Browns", + "home_team_abbrev": "NYJ", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nfl_nyj", + "away_team_canonical_id": "team_nfl_cle", + "venue": "MetLife Stadium", + "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251109_ne_tb", + "sport": "NFL", + "season": "2025", + "date": "2025-11-09", + "time": "1p", + "home_team": "Tampa Bay Buccaneers", + "away_team": "New England Patriots", + "home_team_abbrev": "TB", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_nfl_tb", + "away_team_canonical_id": "team_nfl_ne", + "venue": "Raymond James Stadium", + "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251109_no_car", + "sport": "NFL", + "season": "2025", + "date": "2025-11-09", + "time": "1p", + "home_team": "Carolina Panthers", + "away_team": "New Orleans Saints", + "home_team_abbrev": "CAR", + "away_team_abbrev": "NO", + "home_team_canonical_id": "team_nfl_car", + "away_team_canonical_id": "team_nfl_no", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251109_chi_det", + "sport": "NHL", + "season": "2025", + "date": "2025-11-09", + "time": "1p", + "home_team": "Detroit Red Wings", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "DET", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251109_la_pit", + "sport": "NHL", + "season": "2025", + "date": "2025-11-09", + "time": "2p", + "home_team": "Pittsburgh Penguins", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "PIT", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_la", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251109_hou_mil", + "sport": "NBA", + "season": "2025", + "date": "2025-11-09", + "time": "2:30p", + "home_team": "Milwaukee Bucks", + "away_team": "Houston Rockets", + "home_team_abbrev": "MIL", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_hou", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251109_ari_sea", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-09T21:05:00Z", + "season": "2025", + "date": "2025-11-09", + "time": "1:05p", + "home_team": "Seattle Seahawks", + "away_team": "Arizona Cardinals", + "home_team_abbrev": "SEA", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_nfl_sea", "away_team_canonical_id": "team_nfl_ari", + "venue": "Lumen Field", "stadium_canonical_id": "stadium_nfl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251109_lar_sf", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-09T21:25:00Z", - "home_team_canonical_id": "team_nfl_sf", - "away_team_canonical_id": "team_nfl_lar", - "stadium_canonical_id": "stadium_nfl_levis_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251109_det_was", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-09T21:25:00Z", - "home_team_canonical_id": "team_nfl_was", - "away_team_canonical_id": "team_nfl_det", - "stadium_canonical_id": "stadium_nfl_northwest_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251109_lar_sf", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-09T21:25:00Z", - "home_team_canonical_id": "team_nfl_sf", - "away_team_canonical_id": "team_nfl_lar", - "stadium_canonical_id": "stadium_nfl_levis_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251109_det_was", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-09T21:25:00Z", + "season": "2025", + "date": "2025-11-09", + "time": "4:25p", + "home_team": "Washington Commanders", + "away_team": "Detroit Lions", + "home_team_abbrev": "WAS", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nfl_was", "away_team_canonical_id": "team_nfl_det", + "venue": "Northwest Stadium", "stadium_canonical_id": "stadium_nfl_northwest_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251110_pit_lac", + "canonical_id": "game_nfl_2026_20251109_lar_sf", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-11-10T01:20:00Z", - "home_team_canonical_id": "team_nfl_lac", - "away_team_canonical_id": "team_nfl_pit", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "date": "2025-11-09", + "time": "1:25p", + "home_team": "San Francisco 49ers", + "away_team": "Los Angeles Rams", + "home_team_abbrev": "SF", + "away_team_abbrev": "LAR", + "home_team_canonical_id": "team_nfl_sf", + "away_team_canonical_id": "team_nfl_lar", + "venue": "Levi's Stadium", + "stadium_canonical_id": "stadium_nfl_levis_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251109_brk_nyk", + "sport": "NBA", + "season": "2025", + "date": "2025-11-09", + "time": "6p", + "home_team": "New York Knicks", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "NYK", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_brk", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251109_bos_orl", + "sport": "NBA", + "season": "2025", + "date": "2025-11-09", + "time": "6p", + "home_team": "Orlando Magic", + "away_team": "Boston Celtics", + "home_team_abbrev": "ORL", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_bos", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251109_okc_mem", + "sport": "NBA", + "season": "2025", + "date": "2025-11-09", + "time": "5p", + "home_team": "Memphis Grizzlies", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "MEM", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_okc", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251109_car_tor", + "sport": "NHL", + "season": "2025", + "date": "2025-11-09", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_car", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251109_sea_dal", + "sport": "NHL", + "season": "2025", + "date": "2025-11-09", + "time": "6p", + "home_team": "Dallas Stars", + "away_team": "Seattle Kraken", + "home_team_abbrev": "DAL", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_sea", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251109_ari_ott", + "sport": "NHL", + "season": "2025", + "date": "2025-11-09", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Utah Club", + "home_team_abbrev": "OTT", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251109_det_phi", + "sport": "NBA", + "season": "2025", + "date": "2025-11-09", + "time": "4:30p", + "home_team": "Philadelphia 76ers", + "away_team": "Detroit Pistons", + "home_team_abbrev": "PHI", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_det", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251109_cgy_min", + "sport": "NHL", + "season": "2025", + "date": "2025-11-09", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "Calgary Flames", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251110_pit_lac", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-10T01:20:00Z", + "season": "2025", + "date": "2025-11-09", + "time": "5:20p", + "home_team": "Los Angeles Chargers", + "away_team": "Pittsburgh Steelers", + "home_team_abbrev": "LAC", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_nfl_lac", "away_team_canonical_id": "team_nfl_pit", + "venue": "SoFi Stadium", "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mls_2025_20251110_por_sd", - "sport": "MLS", + "canonical_id": "game_nba_2025_20251109_ind_gsw", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-11-10T02:00:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_por", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "date": "2025-11-09", + "time": "5:30p", + "home_team": "Golden State Warriors", + "away_team": "Indiana Pacers", + "home_team_abbrev": "GSW", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_ind", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251110_lal_cho", + "canonical_id": "game_nba_2025_20251109_min_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-10T05:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_spectrum_center", + "season": "2025", + "date": "2025-11-09", + "time": "6p", + "home_team": "Sacramento Kings", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "SAC", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_min", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251110_was_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-10T05:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "canonical_id": "game_nhl_2025_20251109_col_van", + "sport": "NHL", + "season": "2025", + "date": "2025-11-09", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "VAN", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_col", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251109_wpg_ana", + "sport": "NHL", + "season": "2025", + "date": "2025-11-09", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "ANA", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251110_por_orl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-10T05:00:00Z", + "season": "2025", + "date": "2025-11-10", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Portland Blazers", + "home_team_abbrev": "ORL", + "away_team_abbrev": "POR", "home_team_canonical_id": "team_nba_orl", "away_team_canonical_id": "team_nba_por", + "venue": "Kia Center", "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251110_cle_mia", + "canonical_id": "game_nba_2025_20251110_was_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-10T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_kaseya_center", + "season": "2025", + "date": "2025-11-10", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Washington Wizards", + "home_team_abbrev": "DET", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_was", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251110_nop_phx", + "canonical_id": "game_nba_2025_20251110_lal_cho", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-10T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251110_nyi_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-10T05:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_prudential_center", + "season": "2025", + "date": "2025-11-10", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "CHA", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_lal", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251110_nsh_nyr", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-10T05:00:00Z", + "season": "2025", + "date": "2025-11-10", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Nashville Predators", + "home_team_abbrev": "NYR", + "away_team_abbrev": "NSH", "home_team_canonical_id": "team_nhl_nyr", "away_team_canonical_id": "team_nhl_nsh", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251110_nyi_njd", + "sport": "NHL", + "season": "2025", + "date": "2025-11-10", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "New York Islanders", + "home_team_abbrev": "NJ", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251110_cle_mia", + "sport": "NBA", + "season": "2025", + "date": "2025-11-10", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_cle", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251110_sas_chi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-10T06:00:00Z", + "season": "2025", + "date": "2025-11-10", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "CHI", + "away_team_abbrev": "SAS", "home_team_canonical_id": "team_nba_chi", "away_team_canonical_id": "team_nba_sas", + "venue": "United Center", "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251110_mil_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-10T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251110_min_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-10T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251110_cbj_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-10T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251110_atl_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-10T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251110_fla_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-10T08:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251111_phi_gb", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-11T01:15:00Z", - "home_team_canonical_id": "team_nfl_gb", - "away_team_canonical_id": "team_nfl_phi", - "stadium_canonical_id": "stadium_nfl_lambeau_field", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251111_phi_gb", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-11T01:15:00Z", + "season": "2025", + "date": "2025-11-10", + "time": "7:15p", + "home_team": "Green Bay Packers", + "away_team": "Philadelphia Eagles", + "home_team_abbrev": "GB", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nfl_gb", "away_team_canonical_id": "team_nfl_phi", + "venue": "Lambeau Field", "stadium_canonical_id": "stadium_nfl_lambeau_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251111_tor_brk", + "canonical_id": "game_nba_2025_20251110_mil_dal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-11T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_barclays_center", + "season": "2025", + "date": "2025-11-10", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "DAL", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_mil", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251111_mem_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-11T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251111_tor_bos", + "canonical_id": "game_nhl_2025_20251110_cbj_edm", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-11T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_td_garden", + "season": "2025", + "date": "2025-11-10", + "time": "6:30p", + "home_team": "Edmonton Oilers", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "EDM", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251110_nop_phx", + "sport": "NBA", + "season": "2025", + "date": "2025-11-10", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "PHX", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_nop", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251110_min_uta", + "sport": "NBA", + "season": "2025", + "date": "2025-11-10", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "UTA", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_min", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251110_fla_vgk", + "sport": "NHL", + "season": "2025", + "date": "2025-11-10", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Florida Panthers", + "home_team_abbrev": "VGK", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_fla", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251110_atl_lac", + "sport": "NBA", + "season": "2025", + "date": "2025-11-10", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "LAC", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_atl", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251111_was_car", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-11T05:00:00Z", + "season": "2025", + "date": "2025-11-11", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Washington Capitals", + "home_team_abbrev": "CAR", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nhl_car", "away_team_canonical_id": "team_nhl_was", + "venue": "PNC Arena", "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251111_la_mtl", + "canonical_id": "game_nhl_2025_20251111_tor_bos", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-11T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_bell_centre", + "season": "2025", + "date": "2025-11-11", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_tor", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251111_dal_ott", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-11T05:00:00Z", + "season": "2025", + "date": "2025-11-11", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Dallas Stars", + "home_team_abbrev": "OTT", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nhl_ott", "away_team_canonical_id": "team_nhl_dal", + "venue": "Canadian Tire Centre", "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251111_gsw_okc", + "canonical_id": "game_nhl_2025_20251111_la_mtl", + "sport": "NHL", + "season": "2025", + "date": "2025-11-11", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "MTL", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_la", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251111_tor_brk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-11T06:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_paycom_center", + "season": "2025", + "date": "2025-11-11", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Toronto Raptors", + "home_team_abbrev": "BKN", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_tor", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251111_sj_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-11T06:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251111_cgy_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-11T06:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251111_ind_uta", + "canonical_id": "game_nba_2025_20251111_mem_nyk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-11T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251111_ana_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-11T07:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_ball_arena", + "season": "2025", + "date": "2025-11-11", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "NYK", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_mem", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251111_bos_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-11T08:00:00Z", + "season": "2025", + "date": "2025-11-11", + "time": "5p", + "home_team": "Philadelphia 76ers", + "away_team": "Boston Celtics", + "home_team_abbrev": "PHI", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_bos", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251111_den_sac", + "canonical_id": "game_nba_2025_20251111_gsw_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-11T08:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_golden_1_center", + "season": "2025", + "date": "2025-11-11", + "time": "7p", + "home_team": "Oklahoma City Thunder", + "away_team": "Golden State Warriors", + "home_team_abbrev": "OKC", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251111_cgy_stl", + "sport": "NHL", + "season": "2025", + "date": "2025-11-11", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Calgary Flames", + "home_team_abbrev": "STL", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251111_sj_min", + "sport": "NHL", + "season": "2025", + "date": "2025-11-11", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "San Jose Sharks", + "home_team_abbrev": "MIN", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251111_ind_uta", + "sport": "NBA", + "season": "2025", + "date": "2025-11-11", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Indiana Pacers", + "home_team_abbrev": "UTA", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_ind", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251111_ana_col", + "sport": "NHL", + "season": "2025", + "date": "2025-11-11", + "time": "7:30p", + "home_team": "Colorado Avalanche", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "COL", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251111_cbj_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-11T08:00:00Z", + "season": "2025", + "date": "2025-11-11", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CBJ", "home_team_canonical_id": "team_nhl_sea", "away_team_canonical_id": "team_nhl_cbj", + "venue": "Climate Pledge Arena", "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251111_wpg_van", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-11T08:00:00Z", + "season": "2025", + "date": "2025-11-11", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "VAN", + "away_team_abbrev": "WPG", "home_team_canonical_id": "team_nhl_van", "away_team_canonical_id": "team_nhl_wpg", + "venue": "Rogers Arena", "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251111_den_sac", + "sport": "NBA", + "season": "2025", + "date": "2025-11-11", + "time": "8p", + "home_team": "Sacramento Kings", + "away_team": "Denver Nuggets", + "home_team_abbrev": "SAC", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_den", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251112_mil_cho", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-12T05:00:00Z", + "season": "2025", + "date": "2025-11-12", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "CHA", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_nba_cho", "away_team_canonical_id": "team_nba_mil", + "venue": "Spectrum Center", "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251112_chi_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-12T05:00:00Z", + "season": "2025", + "date": "2025-11-12", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Chicago Bulls", + "home_team_abbrev": "DET", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nba_det", "away_team_canonical_id": "team_nba_chi", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251112_orl_nyk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-12T05:00:00Z", + "season": "2025", + "date": "2025-11-12", + "time": "7p", + "home_team": "New York Knicks", + "away_team": "Orlando Magic", + "home_team_abbrev": "NYK", + "away_team_abbrev": "ORL", "home_team_canonical_id": "team_nba_nyk", "away_team_canonical_id": "team_nba_orl", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251112_mem_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-12T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251112_cle_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-12T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251112_edm_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-12T05:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251112_nyr_tb", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-12T05:00:00Z", + "season": "2025", + "date": "2025-11-12", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "New York Rangers", + "home_team_abbrev": "TB", + "away_team_abbrev": "NYR", "home_team_canonical_id": "team_nhl_tb", "away_team_canonical_id": "team_nhl_nyr", + "venue": "Amalie Arena", "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251112_cle_mia", + "sport": "NBA", + "season": "2025", + "date": "2025-11-12", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_cle", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251112_mem_bos", + "sport": "NBA", + "season": "2025", + "date": "2025-11-12", + "time": "7:30p", + "home_team": "Boston Celtics", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "BOS", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_mem", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251112_edm_phi", + "sport": "NHL", + "season": "2025", + "date": "2025-11-12", + "time": "7:30p", + "home_team": "Philadelphia Flyers", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251112_was_hou", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-12T06:00:00Z", + "season": "2025", + "date": "2025-11-12", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Washington Wizards", + "home_team_abbrev": "HOU", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nba_hou", "away_team_canonical_id": "team_nba_was", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251112_por_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-12T06:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251112_gsw_sas", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-12T06:00:00Z", + "season": "2025", + "date": "2025-11-12", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Golden State Warriors", + "home_team_abbrev": "SAS", + "away_team_abbrev": "GSW", "home_team_canonical_id": "team_nba_sas", "away_team_canonical_id": "team_nba_gsw", + "venue": "Frost Bank Center", "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251112_por_nop", + "sport": "NBA", + "season": "2025", + "date": "2025-11-12", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Portland Blazers", + "home_team_abbrev": "NOP", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_por", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251112_phx_dal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-12T06:00:00Z", + "season": "2025", + "date": "2025-11-12", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Phoenix Suns", + "home_team_abbrev": "DAL", + "away_team_abbrev": "PHX", "home_team_canonical_id": "team_nba_dal", "away_team_canonical_id": "team_nba_phx", + "venue": "American Airlines Center", "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251112_lal_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-12T06:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251112_njd_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-12T06:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251112_buf_ari", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-12T07:00:00Z", + "season": "2025", + "date": "2025-11-12", + "time": "7p", + "home_team": "Utah Club", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "ARI", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nhl_ari", "away_team_canonical_id": "team_nhl_buf", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251112_lal_okc", + "sport": "NBA", + "season": "2025", + "date": "2025-11-12", + "time": "8:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "OKC", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_lal", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251112_njd_chi", + "sport": "NHL", + "season": "2025", + "date": "2025-11-12", + "time": "8:30p", + "home_team": "Chicago Blackhawks", + "away_team": "New Jersey Devils", + "home_team_abbrev": "CHI", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_njd", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251112_atl_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-12T08:00:00Z", + "season": "2025", + "date": "2025-11-12", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "SAC", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nba_sac", "away_team_canonical_id": "team_nba_atl", + "venue": "Golden 1 Center", "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251112_den_lac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-12T08:00:00Z", + "season": "2025", + "date": "2025-11-12", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Denver Nuggets", + "home_team_abbrev": "LAC", + "away_team_abbrev": "DEN", "home_team_canonical_id": "team_nba_lac", "away_team_canonical_id": "team_nba_den", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251113_ind_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-13T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251113_edm_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251113_ana_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251113_was_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251113_dal_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251113_bos_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251113_la_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251113_tor_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-13T06:00:00Z", + "season": "2025", + "date": "2025-11-13", + "time": "6p", + "home_team": "Cleveland Cavaliers", + "away_team": "Toronto Raptors", + "home_team_abbrev": "CLE", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_nba_cle", "away_team_canonical_id": "team_nba_tor", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251113_atl_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-13T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251113_sj_cgy", + "canonical_id": "game_nhl_2025_20251113_was_fla", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-13T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251113_buf_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-13T07:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251113_wpg_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-13T08:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251113_nyi_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-13T08:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251114_nyj_ne", - "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-11-14T01:15:00Z", - "home_team_canonical_id": "team_nfl_ne", - "away_team_canonical_id": "team_nfl_nyj", - "stadium_canonical_id": "stadium_nfl_gillette_stadium", + "date": "2025-11-13", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Washington Capitals", + "home_team_abbrev": "FLA", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_was", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251113_ana_det", + "sport": "NHL", + "season": "2025", + "date": "2025-11-13", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "DET", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251113_bos_ott", + "sport": "NHL", + "season": "2025", + "date": "2025-11-13", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Boston Bruins", + "home_team_abbrev": "OTT", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251113_dal_mtl", + "sport": "NHL", + "season": "2025", + "date": "2025-11-13", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Dallas Stars", + "home_team_abbrev": "MTL", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251113_la_tor", + "sport": "NHL", + "season": "2025", + "date": "2025-11-13", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "TOR", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_la", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251113_edm_cbj", + "sport": "NHL", + "season": "2025", + "date": "2025-11-13", + "time": "7:30p", + "home_team": "Columbus Blue Jackets", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251114_nyj_ne", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-14T01:15:00Z", + "season": "2025", + "date": "2025-11-13", + "time": "8:15p", + "home_team": "New England Patriots", + "away_team": "New York Jets", + "home_team_abbrev": "NE", + "away_team_abbrev": "NYJ", "home_team_canonical_id": "team_nfl_ne", "away_team_canonical_id": "team_nfl_nyj", + "venue": "Gillette Stadium", "stadium_canonical_id": "stadium_nfl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251114_mia_nyk", + "canonical_id": "game_nba_2025_20251113_atl_uta", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-14T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_madison_square_garden", + "season": "2025", + "date": "2025-11-13", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "UTA", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_atl", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251114_brk_orl", + "canonical_id": "game_nba_2025_20251113_ind_phx", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-14T05:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_kia_center", + "season": "2025", + "date": "2025-11-13", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "Indiana Pacers", + "home_team_abbrev": "PHX", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_ind", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251114_phi_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-14T05:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251114_van_car", + "canonical_id": "game_nhl_2025_20251113_sj_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-14T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_pnc_arena", + "season": "2025", + "date": "2025-11-13", + "time": "7p", + "home_team": "Calgary Flames", + "away_team": "San Jose Sharks", + "home_team_abbrev": "CGY", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251114_por_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-14T06:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_toyota_center", + "canonical_id": "game_nhl_2025_20251113_buf_col", + "sport": "NHL", + "season": "2025", + "date": "2025-11-13", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "COL", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251114_cho_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-14T06:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_fiserv_forum", + "canonical_id": "game_nhl_2025_20251113_nyi_vgk", + "sport": "NHL", + "season": "2025", + "date": "2025-11-13", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "New York Islanders", + "home_team_abbrev": "VGK", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251114_sac_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-14T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251114_lal_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-14T06:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251114_lac_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-14T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251114_gsw_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-14T06:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_frost_bank_center", + "canonical_id": "game_nhl_2025_20251113_wpg_sea", + "sport": "NHL", + "season": "2025", + "date": "2025-11-13", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "SEA", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251114_pit_nsh", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-14T06:00:00Z", + "season": "2025", + "date": "2025-11-14", + "time": "1p", + "home_team": "Nashville Predators", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "NSH", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_nhl_nsh", "away_team_canonical_id": "team_nhl_pit", + "venue": "Bridgestone Arena", "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251114_mia_nyk", + "sport": "NBA", + "season": "2025", + "date": "2025-11-14", + "time": "7p", + "home_team": "New York Knicks", + "away_team": "Miami Heat", + "home_team_abbrev": "NYK", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_mia", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251114_brk_orl", + "sport": "NBA", + "season": "2025", + "date": "2025-11-14", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "ORL", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_brk", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251114_van_car", + "sport": "NHL", + "season": "2025", + "date": "2025-11-14", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "CAR", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_van", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251114_phi_det", + "sport": "NBA", + "season": "2025", + "date": "2025-11-14", + "time": "7:30p", + "home_team": "Detroit Pistons", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "DET", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_phi", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251114_por_hou", + "sport": "NBA", + "season": "2025", + "date": "2025-11-14", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Portland Blazers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_por", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251114_cho_mil", + "sport": "NBA", + "season": "2025", + "date": "2025-11-14", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_cho", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251114_sac_min", + "sport": "NBA", + "season": "2025", + "date": "2025-11-14", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "Sacramento Kings", + "home_team_abbrev": "MIN", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_sac", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251114_lal_nop", + "sport": "NBA", + "season": "2025", + "date": "2025-11-14", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "NOP", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_lal", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251114_phi_stl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-14T06:00:00Z", + "season": "2025", + "date": "2025-11-14", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "STL", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nhl_stl", "away_team_canonical_id": "team_nhl_phi", + "venue": "Enterprise Center", "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251114_lac_dal", + "sport": "NBA", + "season": "2025", + "date": "2025-11-14", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "DAL", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_lac", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251114_nyi_ari", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-14T07:00:00Z", + "season": "2025", + "date": "2025-11-14", + "time": "7p", + "home_team": "Utah Club", + "away_team": "New York Islanders", + "home_team_abbrev": "ARI", + "away_team_abbrev": "NYI", "home_team_canonical_id": "team_nhl_ari", "away_team_canonical_id": "team_nhl_nyi", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251115_okc_cho", + "canonical_id": "game_nba_2025_20251114_gsw_sas", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-15T05:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251115_tor_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-15T05:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251115_edm_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-15T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251115_nyr_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-15T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251115_buf_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-15T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251115_tb_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-15T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251115_bos_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-15T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251115_la_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-15T05:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251115_njd_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-15T05:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "season": "2025", + "date": "2025-11-14", + "time": "8:30p", + "home_team": "San Antonio Spurs", + "away_team": "Golden State Warriors", + "home_team_abbrev": "SAS", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251115_mem_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-15T06:00:00Z", + "season": "2025", + "date": "2025-11-15", + "time": "4p", + "home_team": "Cleveland Cavaliers", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "CLE", + "away_team_abbrev": "MEM", "home_team_canonical_id": "team_nba_cle", "away_team_canonical_id": "team_nba_mem", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251115_lal_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-15T06:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251115_den_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-15T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251115_tor_chi", + "canonical_id": "game_nhl_2025_20251115_tb_fla", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-15T06:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251115_phi_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-15T06:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "season": "2025", + "date": "2025-11-15", + "time": "5p", + "home_team": "Florida Panthers", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "FLA", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251115_ana_min", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-15T06:00:00Z", + "season": "2025", + "date": "2025-11-15", + "time": "5p", + "home_team": "Minnesota Wild", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "MIN", + "away_team_abbrev": "ANA", "home_team_canonical_id": "team_nhl_min", "away_team_canonical_id": "team_nhl_ana", + "venue": "Xcel Energy Center", "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251115_tor_ind", + "sport": "NBA", + "season": "2025", + "date": "2025-11-15", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Toronto Raptors", + "home_team_abbrev": "IND", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_tor", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251115_okc_cho", + "sport": "NBA", + "season": "2025", + "date": "2025-11-15", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "CHA", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_okc", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251115_nyr_cbj", + "sport": "NHL", + "season": "2025", + "date": "2025-11-15", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "New York Rangers", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251115_njd_was", + "sport": "NHL", + "season": "2025", + "date": "2025-11-15", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "New Jersey Devils", + "home_team_abbrev": "WAS", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_njd", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251115_la_ott", + "sport": "NHL", + "season": "2025", + "date": "2025-11-15", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "OTT", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_la", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251115_bos_mtl", + "sport": "NHL", + "season": "2025", + "date": "2025-11-15", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Boston Bruins", + "home_team_abbrev": "MTL", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251115_buf_det", + "sport": "NHL", + "season": "2025", + "date": "2025-11-15", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "DET", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251115_tor_chi", + "sport": "NHL", + "season": "2025", + "date": "2025-11-15", + "time": "6p", + "home_team": "Chicago Blackhawks", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "CHI", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_tor", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251115_edm_car", + "sport": "NHL", + "season": "2025", + "date": "2025-11-15", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "CAR", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_edm", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251115_lal_mil", + "sport": "NBA", + "season": "2025", + "date": "2025-11-15", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "MIL", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_lal", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251115_den_min", + "sport": "NBA", + "season": "2025", + "date": "2025-11-15", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "Denver Nuggets", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_den", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251115_phi_dal", + "sport": "NHL", + "season": "2025", + "date": "2025-11-15", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "DAL", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_phi", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251115_vgk_stl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-15T06:00:00Z", + "season": "2025", + "date": "2025-11-15", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "STL", + "away_team_abbrev": "VGK", "home_team_canonical_id": "team_nhl_stl", "away_team_canonical_id": "team_nhl_vgk", + "venue": "Enterprise Center", "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251115_wpg_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-15T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251115_sj_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-15T08:00:00Z", + "season": "2025", + "date": "2025-11-15", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "San Jose Sharks", + "home_team_abbrev": "SEA", + "away_team_abbrev": "SJ", "home_team_canonical_id": "team_nhl_sea", "away_team_canonical_id": "team_nhl_sj", + "venue": "Climate Pledge Arena", "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nwsl_2025_20251115_por_wsh", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-11-15T17:00:00Z", - "home_team_canonical_id": "team_nwsl_wsh", - "away_team_canonical_id": "team_nwsl_por", - "stadium_canonical_id": "stadium_nwsl_audi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251116_lac_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-16T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251116_brk_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-16T05:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251116_atl_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-16T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251116_det_nyr", + "canonical_id": "game_nhl_2025_20251115_wpg_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-16T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "season": "2025", + "date": "2025-11-15", + "time": "8p", + "home_team": "Calgary Flames", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "CGY", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251116_nsh_pit", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-16T05:00:00Z", + "season": "2025", + "date": "2025-11-16", + "time": "9a", + "home_team": "Pittsburgh Penguins", + "away_team": "Nashville Predators", + "home_team_abbrev": "PIT", + "away_team_abbrev": "NSH", "home_team_canonical_id": "team_nhl_pit", "away_team_canonical_id": "team_nhl_nsh", + "venue": "PPG Paints Arena", "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251116_van_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-16T05:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_amalie_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251116_sac_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-16T06:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251116_orl_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-16T06:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251116_gsw_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-16T06:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251116_por_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-16T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251116_vgk_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-16T06:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251116_chi_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-16T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251116_nyi_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-16T07:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251116_was_mia", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-16T14:30:00Z", - "home_team_canonical_id": "team_nfl_mia", - "away_team_canonical_id": "team_nfl_was", - "stadium_canonical_id": "", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251116_was_mia", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-16T14:30:00Z", + "season": "2025", + "date": "2025-11-16", + "time": "3:30p", + "home_team": "Miami Dolphins", + "away_team": "Washington Commanders", + "home_team_abbrev": "MIA", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nfl_mia", "away_team_canonical_id": "team_nfl_was", - "stadium_canonical_id": "stadium_nfl_santiago_bernab\u00e9u", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251116_car_atl", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-16T18:00:00Z", - "home_team_canonical_id": "team_nfl_atl", - "away_team_canonical_id": "team_nfl_car", - "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251116_tb_buf", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-16T18:00:00Z", - "home_team_canonical_id": "team_nfl_buf", - "away_team_canonical_id": "team_nfl_tb", - "stadium_canonical_id": "stadium_nfl_highmark_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251116_hou_ten", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-16T18:00:00Z", - "home_team_canonical_id": "team_nfl_ten", - "away_team_canonical_id": "team_nfl_hou", - "stadium_canonical_id": "stadium_nfl_nissan_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251116_chi_min", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-16T18:00:00Z", - "home_team_canonical_id": "team_nfl_min", - "away_team_canonical_id": "team_nfl_chi", - "stadium_canonical_id": "stadium_nfl_us_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251116_gb_nyg", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-16T18:00:00Z", - "home_team_canonical_id": "team_nfl_nyg", - "away_team_canonical_id": "team_nfl_gb", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251116_cin_pit", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-16T18:00:00Z", - "home_team_canonical_id": "team_nfl_pit", - "away_team_canonical_id": "team_nfl_cin", - "stadium_canonical_id": "stadium_nfl_acrisure_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251116_lac_jax", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-16T18:00:00Z", - "home_team_canonical_id": "team_nfl_jax", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251116_tb_buf", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-16T18:00:00Z", - "home_team_canonical_id": "team_nfl_buf", - "away_team_canonical_id": "team_nfl_tb", - "stadium_canonical_id": "stadium_nfl_highmark_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251116_lac_jax", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-16T18:00:00Z", - "home_team_canonical_id": "team_nfl_jax", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251116_hou_ten", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-16T18:00:00Z", - "home_team_canonical_id": "team_nfl_ten", - "away_team_canonical_id": "team_nfl_hou", - "stadium_canonical_id": "stadium_nfl_nissan_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251116_gb_nyg", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-16T18:00:00Z", - "home_team_canonical_id": "team_nfl_nyg", - "away_team_canonical_id": "team_nfl_gb", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "venue": "Santiago Bernab\u00e9u", + "stadium_canonical_id": "stadium_nfl_santiago_bernabeu", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251116_cin_pit", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-16T18:00:00Z", + "season": "2025", + "date": "2025-11-16", + "time": "1p", + "home_team": "Pittsburgh Steelers", + "away_team": "Cincinnati Bengals", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_nfl_pit", "away_team_canonical_id": "team_nfl_cin", + "venue": "Acrisure Stadium", "stadium_canonical_id": "stadium_nfl_acrisure_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251116_chi_min", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-16T18:00:00Z", - "home_team_canonical_id": "team_nfl_min", - "away_team_canonical_id": "team_nfl_chi", - "stadium_canonical_id": "stadium_nfl_us_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251116_car_atl", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-16T18:00:00Z", + "season": "2025", + "date": "2025-11-16", + "time": "1p", + "home_team": "Atlanta Falcons", + "away_team": "Carolina Panthers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nfl_atl", "away_team_canonical_id": "team_nfl_car", + "venue": "Mercedes-Benz Stadium", "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nwsl_2025_20251116_njy_orl", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-11-16T20:00:00Z", - "home_team_canonical_id": "team_nwsl_orl", - "away_team_canonical_id": "team_nwsl_njy", - "stadium_canonical_id": "stadium_nwsl_interco_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251116_sea_lar", + "canonical_id": "game_nfl_2026_20251116_chi_min", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-11-16T21:05:00Z", - "home_team_canonical_id": "team_nfl_lar", - "away_team_canonical_id": "team_nfl_sea", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "date": "2025-11-16", + "time": "12p", + "home_team": "Minnesota Vikings", + "away_team": "Chicago Bears", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nfl_min", + "away_team_canonical_id": "team_nfl_chi", + "venue": "U.S. Bank Stadium", + "stadium_canonical_id": "stadium_nfl_us_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251116_sf_ari", + "canonical_id": "game_nfl_2026_20251116_hou_ten", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-11-16T21:05:00Z", - "home_team_canonical_id": "team_nfl_ari", - "away_team_canonical_id": "team_nfl_sf", - "stadium_canonical_id": "stadium_nfl_state_farm_stadium", + "date": "2025-11-16", + "time": "12p", + "home_team": "Tennessee Titans", + "away_team": "Houston Texans", + "home_team_abbrev": "TEN", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nfl_ten", + "away_team_canonical_id": "team_nfl_hou", + "venue": "Nissan Stadium", + "stadium_canonical_id": "stadium_nfl_nissan_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2026_20251116_sf_ari", + "canonical_id": "game_nfl_2026_20251116_tb_buf", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-16T21:05:00Z", - "home_team_canonical_id": "team_nfl_ari", - "away_team_canonical_id": "team_nfl_sf", - "stadium_canonical_id": "stadium_nfl_state_farm_stadium", + "season": "2025", + "date": "2025-11-16", + "time": "1p", + "home_team": "Buffalo Bills", + "away_team": "Tampa Bay Buccaneers", + "home_team_abbrev": "BUF", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nfl_buf", + "away_team_canonical_id": "team_nfl_tb", + "venue": "Highmark Stadium", + "stadium_canonical_id": "stadium_nfl_highmark_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251116_lac_jax", + "sport": "NFL", + "season": "2025", + "date": "2025-11-16", + "time": "1p", + "home_team": "Jacksonville Jaguars", + "away_team": "Los Angeles Chargers", + "home_team_abbrev": "JAX", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nfl_jax", + "away_team_canonical_id": "team_nfl_lac", + "venue": "EverBank Stadium", + "stadium_canonical_id": "stadium_nfl_everbank_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251116_gb_nyg", + "sport": "NFL", + "season": "2025", + "date": "2025-11-16", + "time": "1p", + "home_team": "New York Giants", + "away_team": "Green Bay Packers", + "home_team_abbrev": "NYG", + "away_team_abbrev": "GB", + "home_team_canonical_id": "team_nfl_nyg", + "away_team_canonical_id": "team_nfl_gb", + "venue": "MetLife Stadium", + "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251116_lac_bos", + "sport": "NBA", + "season": "2025", + "date": "2025-11-16", + "time": "3:30p", + "home_team": "Boston Celtics", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_lac", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251116_sac_sas", + "sport": "NBA", + "season": "2025", + "date": "2025-11-16", + "time": "3p", + "home_team": "San Antonio Spurs", + "away_team": "Sacramento Kings", + "home_team_abbrev": "SAS", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_sac", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251116_sea_lar", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-16T21:05:00Z", + "season": "2025", + "date": "2025-11-16", + "time": "1:05p", + "home_team": "Los Angeles Rams", + "away_team": "Seattle Seahawks", + "home_team_abbrev": "LAR", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_nfl_lar", "away_team_canonical_id": "team_nfl_sea", + "venue": "SoFi Stadium", "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251116_bal_cle", + "canonical_id": "game_nfl_2026_20251116_sf_ari", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-11-16T21:25:00Z", - "home_team_canonical_id": "team_nfl_cle", - "away_team_canonical_id": "team_nfl_bal", - "stadium_canonical_id": "stadium_nfl_huntington_bank_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251116_kc_den", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-16T21:25:00Z", - "home_team_canonical_id": "team_nfl_den", - "away_team_canonical_id": "team_nfl_kc", - "stadium_canonical_id": "stadium_nfl_empower_field", + "date": "2025-11-16", + "time": "2:05p", + "home_team": "Arizona Cardinals", + "away_team": "San Francisco 49ers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_nfl_ari", + "away_team_canonical_id": "team_nfl_sf", + "venue": "State Farm Stadium", + "stadium_canonical_id": "stadium_nfl_state_farm_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251116_kc_den", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-16T21:25:00Z", + "season": "2025", + "date": "2025-11-16", + "time": "2:25p", + "home_team": "Denver Broncos", + "away_team": "Kansas City Chiefs", + "home_team_abbrev": "DEN", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_nfl_den", "away_team_canonical_id": "team_nfl_kc", - "stadium_canonical_id": "stadium_nfl_empower_field_at_mile_high", + "venue": "Empower Field at Mile High", + "stadium_canonical_id": "stadium_nfl_empower_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251116_bal_cle", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-16T21:25:00Z", + "season": "2025", + "date": "2025-11-16", + "time": "4:25p", + "home_team": "Cleveland Browns", + "away_team": "Baltimore Ravens", + "home_team_abbrev": "CLE", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_nfl_cle", "away_team_canonical_id": "team_nfl_bal", + "venue": "Huntington Bank Field", "stadium_canonical_id": "stadium_nfl_huntington_bank_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251117_det_phi", - "sport": "NFL", + "canonical_id": "game_nhl_2025_20251116_van_tb", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-11-17T01:20:00Z", - "home_team_canonical_id": "team_nfl_phi", - "away_team_canonical_id": "team_nfl_det", - "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", + "date": "2025-11-16", + "time": "5p", + "home_team": "Tampa Bay Lightning", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "TB", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_van", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251116_brk_was", + "sport": "NBA", + "season": "2025", + "date": "2025-11-16", + "time": "6p", + "home_team": "Washington Wizards", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "WAS", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_brk", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251116_vgk_min", + "sport": "NHL", + "season": "2025", + "date": "2025-11-16", + "time": "5p", + "home_team": "Minnesota Wild", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "MIN", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251116_orl_hou", + "sport": "NBA", + "season": "2025", + "date": "2025-11-16", + "time": "6p", + "home_team": "Houston Rockets", + "away_team": "Orlando Magic", + "home_team_abbrev": "HOU", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_orl", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251116_gsw_nop", + "sport": "NBA", + "season": "2025", + "date": "2025-11-16", + "time": "6p", + "home_team": "New Orleans Pelicans", + "away_team": "Golden State Warriors", + "home_team_abbrev": "NOP", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251116_det_nyr", + "sport": "NHL", + "season": "2025", + "date": "2025-11-16", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "NYR", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_det", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251116_por_dal", + "sport": "NBA", + "season": "2025", + "date": "2025-11-16", + "time": "6:30p", + "home_team": "Dallas Mavericks", + "away_team": "Portland Blazers", + "home_team_abbrev": "DAL", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_por", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251116_chi_uta", + "sport": "NBA", + "season": "2025", + "date": "2025-11-16", + "time": "6p", + "home_team": "Utah Jazz", + "away_team": "Chicago Bulls", + "home_team_abbrev": "UTA", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_chi", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251116_atl_phx", + "sport": "NBA", + "season": "2025", + "date": "2025-11-16", + "time": "8p", + "home_team": "Phoenix Suns", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "PHX", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_atl", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251117_det_phi", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-17T01:20:00Z", + "season": "2025", + "date": "2025-11-16", + "time": "8:20p", + "home_team": "Philadelphia Eagles", + "away_team": "Detroit Lions", + "home_team_abbrev": "PHI", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nfl_phi", "away_team_canonical_id": "team_nfl_det", + "venue": "Lincoln Financial Field", "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251117_ind_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-17T05:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251117_nyk_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-17T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251117_cho_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-17T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251117_car_bos", + "canonical_id": "game_nhl_2025_20251116_nyi_col", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-17T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251117_edm_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-17T05:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251117_mtl_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-17T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251117_van_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-17T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251117_la_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-17T05:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "season": "2025", + "date": "2025-11-16", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "New York Islanders", + "home_team_abbrev": "COL", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251117_mil_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-17T06:00:00Z", + "season": "2025", + "date": "2025-11-17", + "time": "6p", + "home_team": "Cleveland Cavaliers", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "CLE", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_nba_cle", "away_team_canonical_id": "team_nba_mil", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251117_dal_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-17T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251117_okc_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-17T06:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251117_chi_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-17T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251117_lac_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-17T08:00:00Z", + "season": "2025", + "date": "2025-11-17", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "LAC", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_lac", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251117_ari_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-17T08:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251118_dal_lv", - "sport": "NFL", + "canonical_id": "game_nba_2025_20251117_ind_det", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-11-18T01:15:00Z", - "home_team_canonical_id": "team_nfl_lv", - "away_team_canonical_id": "team_nfl_dal", - "stadium_canonical_id": "stadium_nfl_allegiant_stadium", + "date": "2025-11-17", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Indiana Pacers", + "home_team_abbrev": "DET", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_ind", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251117_car_bos", + "sport": "NHL", + "season": "2025", + "date": "2025-11-17", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_car", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251117_van_fla", + "sport": "NHL", + "season": "2025", + "date": "2025-11-17", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "FLA", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_van", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251117_la_was", + "sport": "NHL", + "season": "2025", + "date": "2025-11-17", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "WAS", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_la", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251117_edm_buf", + "sport": "NHL", + "season": "2025", + "date": "2025-11-17", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "BUF", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_edm", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251117_cho_tor", + "sport": "NBA", + "season": "2025", + "date": "2025-11-17", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_cho", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251117_nyk_mia", + "sport": "NBA", + "season": "2025", + "date": "2025-11-17", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "New York Knicks", + "home_team_abbrev": "MIA", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251117_mtl_cbj", + "sport": "NHL", + "season": "2025", + "date": "2025-11-17", + "time": "7:30p", + "home_team": "Columbus Blue Jackets", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251117_dal_min", + "sport": "NBA", + "season": "2025", + "date": "2025-11-17", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_dal", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251117_okc_nop", + "sport": "NBA", + "season": "2025", + "date": "2025-11-17", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "NOP", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_okc", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251118_dal_lv", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-18T01:15:00Z", + "season": "2025", + "date": "2025-11-17", + "time": "5:15p", + "home_team": "Las Vegas Raiders", + "away_team": "Dallas Cowboys", + "home_team_abbrev": "LV", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nfl_lv", "away_team_canonical_id": "team_nfl_dal", + "venue": "Allegiant Stadium", "stadium_canonical_id": "stadium_nfl_allegiant_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251117_chi_den", + "sport": "NBA", + "season": "2025", + "date": "2025-11-17", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Chicago Bulls", + "home_team_abbrev": "DEN", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_chi", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251117_ari_ana", + "sport": "NHL", + "season": "2025", + "date": "2025-11-17", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Utah Club", + "home_team_abbrev": "ANA", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251118_gsw_orl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-18T05:00:00Z", + "season": "2025", + "date": "2025-11-18", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Golden State Warriors", + "home_team_abbrev": "ORL", + "away_team_abbrev": "GSW", "home_team_canonical_id": "team_nba_orl", "away_team_canonical_id": "team_nba_gsw", + "venue": "Kia Center", "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251118_det_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-18T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251118_bos_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-18T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251118_sea_det", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-18T05:00:00Z", + "season": "2025", + "date": "2025-11-18", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Seattle Kraken", + "home_team_abbrev": "DET", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_nhl_det", "away_team_canonical_id": "team_nhl_sea", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251118_njd_tb", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-18T05:00:00Z", + "season": "2025", + "date": "2025-11-18", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "New Jersey Devils", + "home_team_abbrev": "TB", + "away_team_abbrev": "NJ", "home_team_canonical_id": "team_nhl_tb", "away_team_canonical_id": "team_nhl_njd", + "venue": "Amalie Arena", "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251118_stl_tor", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-18T05:00:00Z", + "season": "2025", + "date": "2025-11-18", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "St. Louis Blues", + "home_team_abbrev": "TOR", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_nhl_tor", "away_team_canonical_id": "team_nhl_stl", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251118_bos_brk", + "sport": "NBA", + "season": "2025", + "date": "2025-11-18", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Boston Celtics", + "home_team_abbrev": "BKN", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_bos", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251118_det_atl", + "sport": "NBA", + "season": "2025", + "date": "2025-11-18", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Detroit Pistons", + "home_team_abbrev": "ATL", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_det", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251118_mem_sas", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-18T06:00:00Z", + "season": "2025", + "date": "2025-11-18", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "SAS", + "away_team_abbrev": "MEM", "home_team_canonical_id": "team_nba_sas", "away_team_canonical_id": "team_nba_mem", + "venue": "Frost Bank Center", "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251118_cgy_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-18T06:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251118_nyi_dal", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-18T06:00:00Z", + "season": "2025", + "date": "2025-11-18", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "New York Islanders", + "home_team_abbrev": "DAL", + "away_team_abbrev": "NYI", "home_team_canonical_id": "team_nhl_dal", "away_team_canonical_id": "team_nhl_nyi", + "venue": "American Airlines Center", "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251118_cbj_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-18T06:00:00Z", + "season": "2025", + "date": "2025-11-18", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "WPG", + "away_team_abbrev": "CBJ", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_cbj", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251118_uta_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-18T08:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251118_phx_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-18T08:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251118_ari_sj", + "canonical_id": "game_nhl_2025_20251118_cgy_chi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-18T08:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_sap_center", + "season": "2025", + "date": "2025-11-18", + "time": "7:30p", + "home_team": "Chicago Blackhawks", + "away_team": "Calgary Flames", + "home_team_abbrev": "CHI", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251118_nyr_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-18T08:00:00Z", + "season": "2025", + "date": "2025-11-18", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "New York Rangers", + "home_team_abbrev": "VGK", + "away_team_abbrev": "NYR", "home_team_canonical_id": "team_nhl_vgk", "away_team_canonical_id": "team_nhl_nyr", + "venue": "T-Mobile Arena", "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251118_ari_sj", + "sport": "NHL", + "season": "2025", + "date": "2025-11-18", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Utah Club", + "home_team_abbrev": "SJ", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_ari", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251118_uta_lal", + "sport": "NBA", + "season": "2025", + "date": "2025-11-18", + "time": "7:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Utah Jazz", + "home_team_abbrev": "LAL", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_uta", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251118_phx_por", + "sport": "NBA", + "season": "2025", + "date": "2025-11-18", + "time": "8p", + "home_team": "Portland Blazers", + "away_team": "Phoenix Suns", + "home_team_abbrev": "POR", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_phx", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251119_cho_ind", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-19T05:00:00Z", + "season": "2025", + "date": "2025-11-19", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "IND", + "away_team_abbrev": "CHA", "home_team_canonical_id": "team_nba_ind", "away_team_canonical_id": "team_nba_cho", + "venue": "Gainbridge Fieldhouse", "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251119_gsw_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-19T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251119_cgy_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-19T05:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251119_edm_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-19T05:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251119_hou_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-19T06:00:00Z", + "season": "2025", + "date": "2025-11-19", + "time": "6p", + "home_team": "Cleveland Cavaliers", + "away_team": "Houston Rockets", + "home_team_abbrev": "CLE", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nba_cle", "away_team_canonical_id": "team_nba_hou", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251119_was_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-19T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251119_den_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-19T06:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251119_sac_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-19T06:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251119_nyk_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-19T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251119_car_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-19T06:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251119_tor_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-19T08:00:00Z", + "season": "2025", + "date": "2025-11-19", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Toronto Raptors", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_tor", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251119_edm_was", + "sport": "NHL", + "season": "2025", + "date": "2025-11-19", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "WAS", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251119_gsw_mia", + "sport": "NBA", + "season": "2025", + "date": "2025-11-19", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Golden State Warriors", + "home_team_abbrev": "MIA", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251119_cgy_buf", + "sport": "NHL", + "season": "2025", + "date": "2025-11-19", + "time": "7:30p", + "home_team": "Buffalo Sabres", + "away_team": "Calgary Flames", + "home_team_abbrev": "BUF", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251119_den_nop", + "sport": "NBA", + "season": "2025", + "date": "2025-11-19", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Denver Nuggets", + "home_team_abbrev": "NOP", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_den", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251119_sac_okc", + "sport": "NBA", + "season": "2025", + "date": "2025-11-19", + "time": "7p", + "home_team": "Oklahoma City Thunder", + "away_team": "Sacramento Kings", + "home_team_abbrev": "OKC", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_sac", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251119_was_min", + "sport": "NBA", + "season": "2025", + "date": "2025-11-19", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "Washington Wizards", + "home_team_abbrev": "MIN", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_was", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251119_nyk_dal", + "sport": "NBA", + "season": "2025", + "date": "2025-11-19", + "time": "8:30p", + "home_team": "Dallas Mavericks", + "away_team": "New York Knicks", + "home_team_abbrev": "DAL", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_nyk", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251119_car_min", + "sport": "NHL", + "season": "2025", + "date": "2025-11-19", + "time": "8:30p", + "home_team": "Minnesota Wild", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_car", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251119_chi_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-19T08:00:00Z", + "season": "2025", + "date": "2025-11-19", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Chicago Bulls", + "home_team_abbrev": "POR", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nba_por", "away_team_canonical_id": "team_nba_chi", + "venue": "Moda Center", "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251119_bos_ana", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-19T08:00:00Z", + "season": "2025", + "date": "2025-11-19", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Boston Bruins", + "home_team_abbrev": "ANA", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_nhl_ana", "away_team_canonical_id": "team_nhl_bos", + "venue": "Honda Center", "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251120_lac_orl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-20T05:00:00Z", + "season": "2025", + "date": "2025-11-20", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "ORL", + "away_team_abbrev": "LAC", "home_team_canonical_id": "team_nba_orl", "away_team_canonical_id": "team_nba_lac", + "venue": "Kia Center", "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251120_nyi_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-20T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251120_njd_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-20T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251120_was_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-20T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251120_stl_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-20T05:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251120_edm_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-20T05:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251120_cbj_tor", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-20T05:00:00Z", + "season": "2025", + "date": "2025-11-20", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CBJ", "home_team_canonical_id": "team_nhl_tor", "away_team_canonical_id": "team_nhl_cbj", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251120_stl_phi", + "sport": "NHL", + "season": "2025", + "date": "2025-11-20", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "St. Louis Blues", + "home_team_abbrev": "PHI", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251120_was_mtl", + "sport": "NHL", + "season": "2025", + "date": "2025-11-20", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Washington Capitals", + "home_team_abbrev": "MTL", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_was", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251120_njd_fla", + "sport": "NHL", + "season": "2025", + "date": "2025-11-20", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "New Jersey Devils", + "home_team_abbrev": "FLA", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_njd", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251120_nyi_det", + "sport": "NHL", + "season": "2025", + "date": "2025-11-20", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "New York Islanders", + "home_team_abbrev": "DET", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251120_edm_tb", + "sport": "NHL", + "season": "2025", + "date": "2025-11-20", + "time": "7:30p", + "home_team": "Tampa Bay Lightning", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "TB", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251120_sac_mem", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-20T06:00:00Z", + "season": "2025", + "date": "2025-11-20", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Sacramento Kings", + "home_team_abbrev": "MEM", + "away_team_abbrev": "SAC", "home_team_canonical_id": "team_nba_mem", "away_team_canonical_id": "team_nba_sac", + "venue": "FedExForum", "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251120_phi_mil", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-20T06:00:00Z", + "season": "2025", + "date": "2025-11-20", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "MIL", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nba_mil", "away_team_canonical_id": "team_nba_phi", + "venue": "Fiserv Forum", "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251120_atl_sas", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-20T06:00:00Z", + "season": "2025", + "date": "2025-11-20", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "SAS", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nba_sas", "away_team_canonical_id": "team_nba_atl", + "venue": "Frost Bank Center", "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251120_sea_chi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-20T06:00:00Z", + "season": "2025", + "date": "2025-11-20", + "time": "7p", + "home_team": "Chicago Blackhawks", + "away_team": "Seattle Kraken", + "home_team_abbrev": "CHI", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_nhl_chi", "away_team_canonical_id": "team_nhl_sea", + "venue": "United Center", "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251120_nyr_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-20T07:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251120_vgk_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-20T07:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251120_ott_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-20T08:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251120_la_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-20T08:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251120_dal_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-20T08:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_rogers_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251121_buf_hou", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-21T01:15:00Z", - "home_team_canonical_id": "team_nfl_hou", - "away_team_canonical_id": "team_nfl_buf", - "stadium_canonical_id": "stadium_nfl_nrg_stadium", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251121_buf_hou", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-21T01:15:00Z", + "season": "2025", + "date": "2025-11-20", + "time": "7:15p", + "home_team": "Houston Texans", + "away_team": "Buffalo Bills", + "home_team_abbrev": "HOU", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nfl_hou", "away_team_canonical_id": "team_nfl_buf", + "venue": "NRG Stadium", "stadium_canonical_id": "stadium_nfl_nrg_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251121_brk_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-21T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251121_was_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-21T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251121_min_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-21T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251121_chi_buf", + "canonical_id": "game_nhl_2025_20251120_nyr_col", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-21T05:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_keybank_center", + "season": "2025", + "date": "2025-11-20", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "New York Rangers", + "home_team_abbrev": "COL", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251121_min_pit", + "canonical_id": "game_nhl_2025_20251120_vgk_ari", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-21T05:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "season": "2025", + "date": "2025-11-20", + "time": "7p", + "home_team": "Utah Club", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "ARI", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251120_la_sj", + "sport": "NHL", + "season": "2025", + "date": "2025-11-20", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "SJ", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_la", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251120_dal_van", + "sport": "NHL", + "season": "2025", + "date": "2025-11-20", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Dallas Stars", + "home_team_abbrev": "VAN", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251120_ott_ana", + "sport": "NHL", + "season": "2025", + "date": "2025-11-20", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Ottawa Senators", + "home_team_abbrev": "ANA", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251121_ind_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-21T06:00:00Z", + "season": "2025", + "date": "2025-11-21", + "time": "6p", + "home_team": "Cleveland Cavaliers", + "away_team": "Indiana Pacers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "IND", "home_team_canonical_id": "team_nba_cle", "away_team_canonical_id": "team_nba_ind", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251121_chi_buf", + "sport": "NHL", + "season": "2025", + "date": "2025-11-21", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "BUF", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_chi", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251121_min_pit", + "sport": "NHL", + "season": "2025", + "date": "2025-11-21", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "Minnesota Wild", + "home_team_abbrev": "PIT", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_min", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251121_brk_bos", + "sport": "NBA", + "season": "2025", + "date": "2025-11-21", + "time": "7:30p", + "home_team": "Boston Celtics", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "BOS", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_brk", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251121_was_tor", + "sport": "NBA", + "season": "2025", + "date": "2025-11-21", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "Washington Wizards", + "home_team_abbrev": "TOR", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_was", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251121_mia_chi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-21T06:00:00Z", + "season": "2025", + "date": "2025-11-21", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Miami Heat", + "home_team_abbrev": "CHI", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_nba_chi", "away_team_canonical_id": "team_nba_mia", + "venue": "United Center", "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251121_nop_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-21T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251121_den_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-21T06:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251121_car_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-21T06:00:00Z", + "season": "2025", + "date": "2025-11-21", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "WPG", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_car", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251121_nop_dal", + "sport": "NBA", + "season": "2025", + "date": "2025-11-21", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "DAL", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_nop", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251121_min_phx", + "sport": "NBA", + "season": "2025", + "date": "2025-11-21", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "PHX", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_min", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251121_den_hou", + "sport": "NBA", + "season": "2025", + "date": "2025-11-21", + "time": "8:30p", + "home_team": "Houston Rockets", + "away_team": "Denver Nuggets", + "home_team_abbrev": "HOU", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_den", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251121_okc_uta", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-21T07:00:00Z", + "season": "2025", + "date": "2025-11-21", + "time": "8p", + "home_team": "Utah Jazz", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "UTA", + "away_team_abbrev": "OKC", "home_team_canonical_id": "team_nba_uta", "away_team_canonical_id": "team_nba_okc", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251121_por_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-21T08:00:00Z", + "season": "2025", + "date": "2025-11-21", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Portland Blazers", + "home_team_abbrev": "GSW", + "away_team_abbrev": "POR", "home_team_canonical_id": "team_nba_gsw", "away_team_canonical_id": "team_nba_por", + "venue": "Chase Center", "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251121_bos_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-21T08:00:00Z", + "season": "2025", + "date": "2025-11-21", + "time": "7:30p", + "home_team": "Los Angeles Kings", + "away_team": "Boston Bruins", + "home_team_abbrev": "LA", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_nhl_la", "away_team_canonical_id": "team_nhl_bos", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251122_lac_cho", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-22T05:00:00Z", + "season": "2025", + "date": "2025-11-22", + "time": "1p", + "home_team": "Charlotte Hornets", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "CHA", + "away_team_abbrev": "LAC", "home_team_canonical_id": "team_nba_cho", "away_team_canonical_id": "team_nba_lac", + "venue": "Spectrum Center", "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251122_nyk_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-22T05:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251122_cbj_det", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-22T05:00:00Z", + "season": "2025", + "date": "2025-11-22", + "time": "1p", + "home_team": "Detroit Red Wings", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "DET", + "away_team_abbrev": "CBJ", "home_team_canonical_id": "team_nhl_det", "away_team_canonical_id": "team_nhl_cbj", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251122_edm_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-22T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251122_tor_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-22T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251122_stl_nyi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-22T05:00:00Z", + "season": "2025", + "date": "2025-11-22", + "time": "3:30p", + "home_team": "New York Islanders", + "away_team": "St. Louis Blues", + "home_team_abbrev": "NYI", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_nhl_nyi", "away_team_canonical_id": "team_nhl_stl", + "venue": "UBS Arena", "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251122_njd_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-22T05:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251122_sea_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-22T05:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251122_tb_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-22T05:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "canonical_id": "game_nba_2025_20251122_nyk_orl", + "sport": "NBA", + "season": "2025", + "date": "2025-11-22", + "time": "5p", + "home_team": "Orlando Magic", + "away_team": "New York Knicks", + "home_team_abbrev": "ORL", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251122_atl_nop", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-22T06:00:00Z", + "season": "2025", + "date": "2025-11-22", + "time": "6p", + "home_team": "New Orleans Pelicans", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "NOP", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nba_nop", "away_team_canonical_id": "team_nba_atl", + "venue": "Smoothie King Center", "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251122_was_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-22T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251122_det_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-22T06:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251122_mem_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-22T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251122_col_nsh", + "canonical_id": "game_nhl_2025_20251122_tor_mtl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-22T06:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "season": "2025", + "date": "2025-11-22", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "MTL", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251122_sac_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-22T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251122_dal_cgy", + "canonical_id": "game_nhl_2025_20251122_tb_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-22T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251122_nyr_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-22T07:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251122_vgk_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-22T08:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_honda_center", + "season": "2025", + "date": "2025-11-22", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "WAS", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251122_ott_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-22T08:00:00Z", + "season": "2025", + "date": "2025-11-22", + "time": "4p", + "home_team": "San Jose Sharks", + "away_team": "Ottawa Senators", + "home_team_abbrev": "SJ", + "away_team_abbrev": "OTT", "home_team_canonical_id": "team_nhl_sj", "away_team_canonical_id": "team_nhl_ott", + "venue": "SAP Center", "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nwsl_2025_20251123_njy_wsh", - "sport": "NWSL", - "season": "2025", - "game_datetime_utc": "2025-11-23T01:00:00Z", - "home_team_canonical_id": "team_nwsl_wsh", - "away_team_canonical_id": "team_nwsl_njy", - "stadium_canonical_id": "stadium_nwsl_paypal_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251123_lafc_van", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-11-23T02:30:00Z", - "home_team_canonical_id": "team_mls_van", - "away_team_canonical_id": "team_mls_lafc", - "stadium_canonical_id": "stadium_mls_bc_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251123_cho_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-23T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251123_orl_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-23T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251123_brk_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-23T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251123_sas_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-23T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251123_car_buf", + "canonical_id": "game_nhl_2025_20251122_sea_pit", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-23T05:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251123_sea_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-23T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", + "season": "2025", + "date": "2025-11-22", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "Seattle Kraken", + "home_team_abbrev": "PIT", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_pit", "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_ubs_arena", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251123_lac_cle", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-23T06:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251123_por_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-23T06:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251123_col_chi", + "canonical_id": "game_nhl_2025_20251122_njd_phi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-23T06:00:00Z", - "home_team_canonical_id": "team_nhl_chi", + "season": "2025", + "date": "2025-11-22", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "New Jersey Devils", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_njd", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251122_edm_fla", + "sport": "NHL", + "season": "2025", + "date": "2025-11-22", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "FLA", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251122_det_mil", + "sport": "NBA", + "season": "2025", + "date": "2025-11-22", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Detroit Pistons", + "home_team_abbrev": "MIL", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_det", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251122_was_chi", + "sport": "NBA", + "season": "2025", + "date": "2025-11-22", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Washington Wizards", + "home_team_abbrev": "CHI", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_was", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251122_col_nsh", + "sport": "NHL", + "season": "2025", + "date": "2025-11-22", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "NSH", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_nsh", "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_united_center", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251123_min_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-23T06:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251123_lal_uta", + "canonical_id": "game_nba_2025_20251122_mem_dal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-23T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_delta_center", + "season": "2025", + "date": "2025-11-22", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "DAL", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_mem", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251122_nyr_ari", + "sport": "NHL", + "season": "2025", + "date": "2025-11-22", + "time": "7p", + "home_team": "Utah Club", + "away_team": "New York Rangers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251122_sac_den", + "sport": "NBA", + "season": "2025", + "date": "2025-11-22", + "time": "8p", + "home_team": "Denver Nuggets", + "away_team": "Sacramento Kings", + "home_team_abbrev": "DEN", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_sac", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251122_dal_cgy", + "sport": "NHL", + "season": "2025", + "date": "2025-11-22", + "time": "8p", + "home_team": "Calgary Flames", + "away_team": "Dallas Stars", + "home_team_abbrev": "CGY", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251122_vgk_ana", + "sport": "NHL", + "season": "2025", + "date": "2025-11-22", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "ANA", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251123_mia_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-23T08:00:00Z", + "season": "2025", + "date": "2025-11-23", + "time": "10a", + "home_team": "Philadelphia 76ers", + "away_team": "Miami Heat", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_mia", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251123_bos_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-23T08:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251123_cgy_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-23T08:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_rogers_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251123_pit_chi", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-23T18:00:00Z", - "home_team_canonical_id": "team_nfl_chi", - "away_team_canonical_id": "team_nfl_pit", - "stadium_canonical_id": "stadium_nfl_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251123_ne_cin", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-23T18:00:00Z", - "home_team_canonical_id": "team_nfl_cin", - "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_paycor_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251123_nyg_det", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-23T18:00:00Z", - "home_team_canonical_id": "team_nfl_det", - "away_team_canonical_id": "team_nfl_nyg", - "stadium_canonical_id": "stadium_nfl_ford_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251123_min_gb", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-23T18:00:00Z", - "home_team_canonical_id": "team_nfl_gb", - "away_team_canonical_id": "team_nfl_min", - "stadium_canonical_id": "stadium_nfl_lambeau_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251123_sea_ten", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-23T18:00:00Z", - "home_team_canonical_id": "team_nfl_ten", - "away_team_canonical_id": "team_nfl_sea", - "stadium_canonical_id": "stadium_nfl_nissan_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251123_ind_kc", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-23T18:00:00Z", - "home_team_canonical_id": "team_nfl_kc", - "away_team_canonical_id": "team_nfl_ind", - "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251123_nyj_bal", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-23T18:00:00Z", - "home_team_canonical_id": "team_nfl_bal", - "away_team_canonical_id": "team_nfl_nyj", - "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251123_sea_ten", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-23T18:00:00Z", + "season": "2025", + "date": "2025-11-23", + "time": "12p", + "home_team": "Tennessee Titans", + "away_team": "Seattle Seahawks", + "home_team_abbrev": "TEN", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_nfl_ten", "away_team_canonical_id": "team_nfl_sea", + "venue": "Nissan Stadium", "stadium_canonical_id": "stadium_nfl_nissan_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251123_pit_chi", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-23T18:00:00Z", - "home_team_canonical_id": "team_nfl_chi", - "away_team_canonical_id": "team_nfl_pit", - "stadium_canonical_id": "stadium_nfl_soldier_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251123_nyj_bal", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-23T18:00:00Z", + "season": "2025", + "date": "2025-11-23", + "time": "1p", + "home_team": "Baltimore Ravens", + "away_team": "New York Jets", + "home_team_abbrev": "BAL", + "away_team_abbrev": "NYJ", "home_team_canonical_id": "team_nfl_bal", "away_team_canonical_id": "team_nfl_nyj", - "stadium_canonical_id": "stadium_nfl_mt_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251123_nyg_det", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-23T18:00:00Z", - "home_team_canonical_id": "team_nfl_det", - "away_team_canonical_id": "team_nfl_nyg", - "stadium_canonical_id": "stadium_nfl_ford_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251123_ne_cin", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-23T18:00:00Z", - "home_team_canonical_id": "team_nfl_cin", - "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_paycor_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251123_min_gb", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-23T18:00:00Z", - "home_team_canonical_id": "team_nfl_gb", - "away_team_canonical_id": "team_nfl_min", - "stadium_canonical_id": "stadium_nfl_lambeau_field", + "venue": "M&T Bank Stadium", + "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251123_ind_kc", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-23T18:00:00Z", + "season": "2025", + "date": "2025-11-23", + "time": "12p", + "home_team": "Kansas City Chiefs", + "away_team": "Indianapolis Colts", + "home_team_abbrev": "KC", + "away_team_abbrev": "IND", "home_team_canonical_id": "team_nfl_kc", "away_team_canonical_id": "team_nfl_ind", + "venue": "Arrowhead Stadium", "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251123_cle_lv", + "canonical_id": "game_nfl_2026_20251123_pit_chi", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-11-23T21:05:00Z", - "home_team_canonical_id": "team_nfl_lv", - "away_team_canonical_id": "team_nfl_cle", - "stadium_canonical_id": "stadium_nfl_allegiant_stadium", + "date": "2025-11-23", + "time": "12p", + "home_team": "Chicago Bears", + "away_team": "Pittsburgh Steelers", + "home_team_abbrev": "CHI", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nfl_chi", + "away_team_canonical_id": "team_nfl_pit", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_nfl_soldier_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251123_jax_ari", + "canonical_id": "game_nfl_2026_20251123_ne_cin", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-11-23T21:05:00Z", - "home_team_canonical_id": "team_nfl_ari", - "away_team_canonical_id": "team_nfl_jax", - "stadium_canonical_id": "stadium_nfl_state_farm_stadium", + "date": "2025-11-23", + "time": "1p", + "home_team": "Cincinnati Bengals", + "away_team": "New England Patriots", + "home_team_abbrev": "CIN", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_nfl_cin", + "away_team_canonical_id": "team_nfl_ne", + "venue": "Paycor Stadium", + "stadium_canonical_id": "stadium_nfl_paycor_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251123_nyg_det", + "sport": "NFL", + "season": "2025", + "date": "2025-11-23", + "time": "1p", + "home_team": "Detroit Lions", + "away_team": "New York Giants", + "home_team_abbrev": "DET", + "away_team_abbrev": "NYG", + "home_team_canonical_id": "team_nfl_det", + "away_team_canonical_id": "team_nfl_nyg", + "venue": "Ford Field", + "stadium_canonical_id": "stadium_nfl_ford_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251123_min_gb", + "sport": "NFL", + "season": "2025", + "date": "2025-11-23", + "time": "12p", + "home_team": "Green Bay Packers", + "away_team": "Minnesota Vikings", + "home_team_abbrev": "GB", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nfl_gb", + "away_team_canonical_id": "team_nfl_min", + "venue": "Lambeau Field", + "stadium_canonical_id": "stadium_nfl_lambeau_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251123_car_buf", + "sport": "NHL", + "season": "2025", + "date": "2025-11-23", + "time": "1p", + "home_team": "Buffalo Sabres", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "BUF", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_car", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251123_min_wpg", + "sport": "NHL", + "season": "2025", + "date": "2025-11-23", + "time": "3p", + "home_team": "Winnipeg Jets", + "away_team": "Minnesota Wild", + "home_team_abbrev": "WPG", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_min", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251123_jax_ari", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-23T21:05:00Z", + "season": "2025", + "date": "2025-11-23", + "time": "2:05p", + "home_team": "Arizona Cardinals", + "away_team": "Jacksonville Jaguars", + "home_team_abbrev": "ARI", + "away_team_abbrev": "JAX", "home_team_canonical_id": "team_nfl_ari", "away_team_canonical_id": "team_nfl_jax", + "venue": "State Farm Stadium", "stadium_canonical_id": "stadium_nfl_state_farm_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251123_cle_lv", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-23T21:05:00Z", + "season": "2025", + "date": "2025-11-23", + "time": "1:05p", + "home_team": "Las Vegas Raiders", + "away_team": "Cleveland Browns", + "home_team_abbrev": "LV", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nfl_lv", "away_team_canonical_id": "team_nfl_cle", + "venue": "Allegiant Stadium", "stadium_canonical_id": "stadium_nfl_allegiant_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251123_phi_dal", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-23T21:25:00Z", - "home_team_canonical_id": "team_nfl_dal", - "away_team_canonical_id": "team_nfl_phi", - "stadium_canonical_id": "stadium_nfl_att_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251123_atl_no", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-23T21:25:00Z", - "home_team_canonical_id": "team_nfl_no", - "away_team_canonical_id": "team_nfl_atl", - "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251123_phi_dal", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-23T21:25:00Z", - "home_team_canonical_id": "team_nfl_dal", - "away_team_canonical_id": "team_nfl_phi", - "stadium_canonical_id": "stadium_nfl_att_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251123_atl_no", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-23T21:25:00Z", + "season": "2025", + "date": "2025-11-23", + "time": "3:25p", + "home_team": "New Orleans Saints", + "away_team": "Atlanta Falcons", + "home_team_abbrev": "NO", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nfl_no", "away_team_canonical_id": "team_nfl_atl", + "venue": "Caesars Superdome", "stadium_canonical_id": "stadium_nfl_caesars_superdome", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mls_2025_20251123_mia_cin", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-11-23T22:00:00Z", - "home_team_canonical_id": "team_mls_cin", - "away_team_canonical_id": "team_mls_mia", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251124_nyc_phi", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-11-24T00:45:00Z", - "home_team_canonical_id": "team_mls_phi", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_subaru_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251124_tb_lar", + "canonical_id": "game_nfl_2026_20251123_phi_dal", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-11-24T01:20:00Z", - "home_team_canonical_id": "team_nfl_lar", - "away_team_canonical_id": "team_nfl_tb", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "date": "2025-11-23", + "time": "3:25p", + "home_team": "Dallas Cowboys", + "away_team": "Philadelphia Eagles", + "home_team_abbrev": "DAL", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nfl_dal", + "away_team_canonical_id": "team_nfl_phi", + "venue": "AT&T Stadium", + "stadium_canonical_id": "stadium_nfl_att_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251123_sea_nyi", + "sport": "NHL", + "season": "2025", + "date": "2025-11-23", + "time": "5p", + "home_team": "New York Islanders", + "away_team": "Seattle Kraken", + "home_team_abbrev": "NYI", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_sea", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251123_orl_bos", + "sport": "NBA", + "season": "2025", + "date": "2025-11-23", + "time": "6p", + "home_team": "Boston Celtics", + "away_team": "Orlando Magic", + "home_team_abbrev": "BOS", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_orl", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251123_cho_atl", + "sport": "NBA", + "season": "2025", + "date": "2025-11-23", + "time": "6p", + "home_team": "Atlanta Hawks", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_cho", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251123_brk_tor", + "sport": "NBA", + "season": "2025", + "date": "2025-11-23", + "time": "6p", + "home_team": "Toronto Raptors", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_brk", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251123_lac_cle", + "sport": "NBA", + "season": "2025", + "date": "2025-11-23", + "time": "5p", + "home_team": "Cleveland Cavaliers", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_lac", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251123_por_okc", + "sport": "NBA", + "season": "2025", + "date": "2025-11-23", + "time": "6p", + "home_team": "Oklahoma City Thunder", + "away_team": "Portland Blazers", + "home_team_abbrev": "OKC", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_por", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251123_col_chi", + "sport": "NHL", + "season": "2025", + "date": "2025-11-23", + "time": "6p", + "home_team": "Chicago Blackhawks", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "CHI", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_col", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251123_lal_uta", + "sport": "NBA", + "season": "2025", + "date": "2025-11-23", + "time": "6p", + "home_team": "Utah Jazz", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "UTA", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_lal", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251123_sas_phx", + "sport": "NBA", + "season": "2025", + "date": "2025-11-23", + "time": "8p", + "home_team": "Phoenix Suns", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "PHX", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_sas", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251123_bos_sj", + "sport": "NHL", + "season": "2025", + "date": "2025-11-23", + "time": "5p", + "home_team": "San Jose Sharks", + "away_team": "Boston Bruins", + "home_team_abbrev": "SJ", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_bos", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251124_tb_lar", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-24T01:20:00Z", + "season": "2025", + "date": "2025-11-23", + "time": "5:20p", + "home_team": "Los Angeles Rams", + "away_team": "Tampa Bay Buccaneers", + "home_team_abbrev": "LAR", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_nfl_lar", "away_team_canonical_id": "team_nfl_tb", + "venue": "SoFi Stadium", "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251124_det_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-24T05:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "canonical_id": "game_nhl_2025_20251123_cgy_van", + "sport": "NHL", + "season": "2025", + "date": "2025-11-23", + "time": "6p", + "home_team": "Vancouver Canucks", + "away_team": "Calgary Flames", + "home_team_abbrev": "VAN", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251124_cle_tor", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-24T05:00:00Z", + "season": "2025", + "date": "2025-11-24", + "time": "7p", + "home_team": "Toronto Raptors", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nba_tor", "away_team_canonical_id": "team_nba_cle", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251124_nyk_brk", + "canonical_id": "game_nba_2025_20251124_det_ind", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-24T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251124_dal_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-24T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251124_hou_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-24T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251124_det_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-24T05:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251124_stl_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-24T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251124_phi_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-24T05:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_amalie_arena", + "season": "2025", + "date": "2025-11-24", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Detroit Pistons", + "home_team_abbrev": "IND", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_det", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251124_cbj_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-24T05:00:00Z", + "season": "2025", + "date": "2025-11-24", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "WAS", + "away_team_abbrev": "CBJ", "home_team_canonical_id": "team_nhl_was", "away_team_canonical_id": "team_nhl_cbj", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251124_den_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-24T06:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_fedexforum", + "canonical_id": "game_nhl_2025_20251124_stl_nyr", + "sport": "NHL", + "season": "2025", + "date": "2025-11-24", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "St. Louis Blues", + "home_team_abbrev": "NYR", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251124_por_mil", + "canonical_id": "game_nhl_2025_20251124_phi_tb", + "sport": "NHL", + "season": "2025", + "date": "2025-11-24", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "TB", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_phi", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251124_det_njd", + "sport": "NHL", + "season": "2025", + "date": "2025-11-24", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "NJ", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_det", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251124_nyk_brk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-24T06:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_fiserv_forum", + "season": "2025", + "date": "2025-11-24", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "New York Knicks", + "home_team_abbrev": "BKN", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251124_dal_mia", + "sport": "NBA", + "season": "2025", + "date": "2025-11-24", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "MIA", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_dal", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251124_chi_nop", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-24T06:00:00Z", + "season": "2025", + "date": "2025-11-24", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Chicago Bulls", + "home_team_abbrev": "NOP", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nba_nop", "away_team_canonical_id": "team_nba_chi", + "venue": "Smoothie King Center", "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251124_den_mem", + "sport": "NBA", + "season": "2025", + "date": "2025-11-24", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Denver Nuggets", + "home_team_abbrev": "MEM", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_den", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251124_por_mil", + "sport": "NBA", + "season": "2025", + "date": "2025-11-24", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Portland Blazers", + "home_team_abbrev": "MIL", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_por", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251124_fla_nsh", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-24T06:00:00Z", + "season": "2025", + "date": "2025-11-24", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "Florida Panthers", + "home_team_abbrev": "NSH", + "away_team_abbrev": "FLA", "home_team_canonical_id": "team_nhl_nsh", "away_team_canonical_id": "team_nhl_fla", + "venue": "Bridgestone Arena", "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251124_vgk_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-24T07:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251124_uta_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-24T08:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251124_min_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-24T08:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251124_ott_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-24T08:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251125_car_sf", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-25T01:15:00Z", - "home_team_canonical_id": "team_nfl_sf", - "away_team_canonical_id": "team_nfl_car", - "stadium_canonical_id": "stadium_nfl_levis_stadium", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251125_car_sf", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-25T01:15:00Z", + "season": "2025", + "date": "2025-11-24", + "time": "5:15p", + "home_team": "San Francisco 49ers", + "away_team": "Carolina Panthers", + "home_team_abbrev": "SF", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nfl_sf", "away_team_canonical_id": "team_nfl_car", + "venue": "Levi's Stadium", "stadium_canonical_id": "stadium_nfl_levis_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mls_2025_20251125_min_sd", - "sport": "MLS", + "canonical_id": "game_nhl_2025_20251124_ott_la", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-11-25T03:00:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_min", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "date": "2025-11-24", + "time": "6p", + "home_team": "Los Angeles Kings", + "away_team": "Ottawa Senators", + "home_team_abbrev": "LA", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251124_vgk_ari", + "sport": "NHL", + "season": "2025", + "date": "2025-11-24", + "time": "7p", + "home_team": "Utah Club", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "ARI", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251124_hou_phx", + "sport": "NBA", + "season": "2025", + "date": "2025-11-24", + "time": "9:30p", + "home_team": "Phoenix Suns", + "away_team": "Houston Rockets", + "home_team_abbrev": "PHX", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_hou", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251124_uta_gsw", + "sport": "NBA", + "season": "2025", + "date": "2025-11-24", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Utah Jazz", + "home_team_abbrev": "GSW", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_uta", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251124_min_sac", + "sport": "NBA", + "season": "2025", + "date": "2025-11-24", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "SAC", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_min", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251125_atl_was", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-25T05:00:00Z", + "season": "2025", + "date": "2025-11-25", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "WAS", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nba_was", "away_team_canonical_id": "team_nba_atl", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251125_dal_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-25T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251125_orl_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-25T08:00:00Z", + "season": "2025", + "date": "2025-11-25", + "time": "5p", + "home_team": "Philadelphia 76ers", + "away_team": "Orlando Magic", + "home_team_abbrev": "PHI", + "away_team_abbrev": "ORL", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_orl", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251125_dal_edm", + "sport": "NHL", + "season": "2025", + "date": "2025-11-25", + "time": "7p", + "home_team": "Edmonton Oilers", + "away_team": "Dallas Stars", + "home_team_abbrev": "EDM", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251125_lac_lal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-25T08:00:00Z", + "season": "2025", + "date": "2025-11-25", + "time": "8p", + "home_team": "Los Angeles Lakers", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "LAL", + "away_team_abbrev": "LAC", "home_team_canonical_id": "team_nba_lal", "away_team_canonical_id": "team_nba_lac", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251126_det_bos", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T05:00:00Z", + "season": "2025", + "date": "2025-11-26", + "time": "5p", + "home_team": "Boston Celtics", + "away_team": "Detroit Pistons", + "home_team_abbrev": "BOS", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nba_bos", "away_team_canonical_id": "team_nba_det", + "venue": "TD Garden", "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251126_nyk_cho", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T05:00:00Z", + "season": "2025", + "date": "2025-11-26", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "New York Knicks", + "home_team_abbrev": "CHA", + "away_team_abbrev": "NYK", "home_team_canonical_id": "team_nba_cho", "away_team_canonical_id": "team_nba_nyk", + "venue": "Spectrum Center", "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251126_mil_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251126_ind_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251126_nyr_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251126_tor_cbj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T05:00:00Z", + "season": "2025", + "date": "2025-11-26", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_nhl_cbj", "away_team_canonical_id": "team_nhl_tor", + "venue": "Nationwide Arena", "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251126_nsh_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251126_phi_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251126_stl_njd", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T05:00:00Z", + "season": "2025", + "date": "2025-11-26", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "St. Louis Blues", + "home_team_abbrev": "NJ", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_nhl_njd", "away_team_canonical_id": "team_nhl_stl", + "venue": "Prudential Center", "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251126_bos_nyi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T05:00:00Z", + "season": "2025", + "date": "2025-11-26", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Boston Bruins", + "home_team_abbrev": "NYI", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_nhl_nyi", "away_team_canonical_id": "team_nhl_bos", + "venue": "UBS Arena", "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251126_phi_fla", + "sport": "NHL", + "season": "2025", + "date": "2025-11-26", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "FLA", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_phi", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251126_nyr_car", + "sport": "NHL", + "season": "2025", + "date": "2025-11-26", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "New York Rangers", + "home_team_abbrev": "CAR", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251126_buf_pit", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T05:00:00Z", + "season": "2025", + "date": "2025-11-26", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "PIT", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nhl_pit", "away_team_canonical_id": "team_nhl_buf", + "venue": "PPG Paints Arena", "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251126_cgy_tb", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T05:00:00Z", + "season": "2025", + "date": "2025-11-26", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Calgary Flames", + "home_team_abbrev": "TB", + "away_team_abbrev": "CGY", "home_team_canonical_id": "team_nhl_tb", "away_team_canonical_id": "team_nhl_cgy", + "venue": "Amalie Arena", "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251126_wpg_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T05:00:00Z", + "season": "2025", + "date": "2025-11-26", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "WAS", + "away_team_abbrev": "WPG", "home_team_canonical_id": "team_nhl_was", "away_team_canonical_id": "team_nhl_wpg", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251126_nsh_det", + "sport": "NHL", + "season": "2025", + "date": "2025-11-26", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Nashville Predators", + "home_team_abbrev": "DET", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251126_ind_tor", + "sport": "NBA", + "season": "2025", + "date": "2025-11-26", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "Indiana Pacers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_ind", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251126_min_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T06:00:00Z", + "season": "2025", + "date": "2025-11-26", + "time": "6:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "OKC", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nba_okc", "away_team_canonical_id": "team_nba_min", + "venue": "Paycom Center", "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251126_mil_mia", + "sport": "NBA", + "season": "2025", + "date": "2025-11-26", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "MIA", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_mil", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251126_mem_nop", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T06:00:00Z", + "season": "2025", + "date": "2025-11-26", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "NOP", + "away_team_abbrev": "MEM", "home_team_canonical_id": "team_nba_nop", "away_team_canonical_id": "team_nba_mem", + "venue": "Smoothie King Center", "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251126_min_chi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T06:00:00Z", + "season": "2025", + "date": "2025-11-26", + "time": "7:30p", + "home_team": "Chicago Blackhawks", + "away_team": "Minnesota Wild", + "home_team_abbrev": "CHI", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nhl_chi", "away_team_canonical_id": "team_nhl_min", + "venue": "United Center", "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251126_sj_col", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T07:00:00Z", + "season": "2025", + "date": "2025-11-26", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "San Jose Sharks", + "home_team_abbrev": "COL", + "away_team_abbrev": "SJ", "home_team_canonical_id": "team_nhl_col", "away_team_canonical_id": "team_nhl_sj", + "venue": "Ball Arena", "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251126_mtl_ari", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T07:00:00Z", + "season": "2025", + "date": "2025-11-26", + "time": "7:30p", + "home_team": "Utah Club", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "ARI", + "away_team_abbrev": "MTL", "home_team_canonical_id": "team_nhl_ari", "away_team_canonical_id": "team_nhl_mtl", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251126_hou_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T08:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_chase_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251126_sas_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T08:00:00Z", + "season": "2025", + "date": "2025-11-26", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "POR", + "away_team_abbrev": "SAS", "home_team_canonical_id": "team_nba_por", "away_team_canonical_id": "team_nba_sas", + "venue": "Moda Center", "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251126_hou_gsw", + "sport": "NBA", + "season": "2025", + "date": "2025-11-26", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Houston Rockets", + "home_team_abbrev": "GSW", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_hou", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251126_phx_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T08:00:00Z", + "season": "2025", + "date": "2025-11-26", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Phoenix Suns", + "home_team_abbrev": "SAC", + "away_team_abbrev": "PHX", "home_team_canonical_id": "team_nba_sac", "away_team_canonical_id": "team_nba_phx", + "venue": "Golden 1 Center", "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251126_van_ana", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T08:00:00Z", + "season": "2025", + "date": "2025-11-26", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "ANA", + "away_team_abbrev": "VAN", "home_team_canonical_id": "team_nhl_ana", "away_team_canonical_id": "team_nhl_van", + "venue": "Honda Center", "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251126_dal_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T08:00:00Z", + "season": "2025", + "date": "2025-11-26", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Dallas Stars", + "home_team_abbrev": "SEA", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nhl_sea", "away_team_canonical_id": "team_nhl_dal", + "venue": "Climate Pledge Arena", "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251126_ott_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-26T08:00:00Z", + "season": "2025", + "date": "2025-11-26", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Ottawa Senators", + "home_team_abbrev": "VGK", + "away_team_abbrev": "OTT", "home_team_canonical_id": "team_nhl_vgk", "away_team_canonical_id": "team_nhl_ott", + "venue": "T-Mobile Arena", "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251127_gb_det", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-27T18:00:00Z", - "home_team_canonical_id": "team_nfl_det", - "away_team_canonical_id": "team_nfl_gb", - "stadium_canonical_id": "stadium_nfl_ford_field", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251127_gb_det", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-27T18:00:00Z", + "season": "2025", + "date": "2025-11-27", + "time": "1p", + "home_team": "Detroit Lions", + "away_team": "Green Bay Packers", + "home_team_abbrev": "DET", + "away_team_abbrev": "GB", "home_team_canonical_id": "team_nfl_det", "away_team_canonical_id": "team_nfl_gb", + "venue": "Ford Field", "stadium_canonical_id": "stadium_nfl_ford_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251127_kc_dal", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-27T21:30:00Z", - "home_team_canonical_id": "team_nfl_dal", - "away_team_canonical_id": "team_nfl_kc", - "stadium_canonical_id": "stadium_nfl_att_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251127_kc_dal", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-27T21:30:00Z", + "season": "2025", + "date": "2025-11-27", + "time": "3:30p", + "home_team": "Dallas Cowboys", + "away_team": "Kansas City Chiefs", + "home_team_abbrev": "DAL", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_nfl_dal", "away_team_canonical_id": "team_nfl_kc", + "venue": "AT&T Stadium", "stadium_canonical_id": "stadium_nfl_att_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251128_cin_bal", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-28T01:20:00Z", - "home_team_canonical_id": "team_nfl_bal", - "away_team_canonical_id": "team_nfl_cin", - "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251128_cin_bal", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-28T01:20:00Z", + "season": "2025", + "date": "2025-11-27", + "time": "8:20p", + "home_team": "Baltimore Ravens", + "away_team": "Cincinnati Bengals", + "home_team_abbrev": "BAL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_nfl_bal", "away_team_canonical_id": "team_nfl_cin", - "stadium_canonical_id": "stadium_nfl_mt_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251128_cle_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251128_phi_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251128_chi_cho", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T05:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251128_orl_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T05:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251128_was_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T05:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251128_mil_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251128_nyr_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251128_njd_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251128_wpg_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251128_pit_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "venue": "M&T Bank Stadium", + "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251128_tb_det", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T05:00:00Z", + "season": "2025", + "date": "2025-11-28", + "time": "12p", + "home_team": "Detroit Red Wings", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "DET", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_nhl_det", "away_team_canonical_id": "team_nhl_tb", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251128_cgy_fla", + "canonical_id": "game_nhl_2025_20251128_nyr_bos", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251128_phi_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251128_tor_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251128_phx_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T06:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251128_nsh_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T06:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251128_ari_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T06:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251128_col_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T06:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251128_ott_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T06:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251128_sas_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251128_sac_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251128_mem_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251128_dal_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T08:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251128_la_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T08:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251128_van_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T08:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251128_mtl_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-28T08:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251128_chi_phi", - "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-11-28T20:00:00Z", - "home_team_canonical_id": "team_nfl_phi", - "away_team_canonical_id": "team_nfl_chi", - "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", + "date": "2025-11-28", + "time": "1p", + "home_team": "Boston Bruins", + "away_team": "New York Rangers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251128_chi_phi", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-28T20:00:00Z", + "season": "2025", + "date": "2025-11-28", + "time": "3p", + "home_team": "Philadelphia Eagles", + "away_team": "Chicago Bears", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nfl_phi", "away_team_canonical_id": "team_nfl_chi", + "venue": "Lincoln Financial Field", "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251129_tor_cho", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-29T05:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251129_chi_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-29T05:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251129_det_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-29T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251129_den_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-29T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251129_det_bos", + "canonical_id": "game_nhl_2025_20251128_col_min", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-29T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_td_garden", + "season": "2025", + "date": "2025-11-28", + "time": "2:30p", + "home_team": "Minnesota Wild", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "MIN", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_col", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251129_phi_njd", + "canonical_id": "game_nhl_2025_20251128_van_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-29T05:00:00Z", - "home_team_canonical_id": "team_nhl_njd", + "season": "2025", + "date": "2025-11-28", + "time": "1p", + "home_team": "San Jose Sharks", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "SJ", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_van", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251128_njd_buf", + "sport": "NHL", + "season": "2025", + "date": "2025-11-28", + "time": "4p", + "home_team": "Buffalo Sabres", + "away_team": "New Jersey Devils", + "home_team_abbrev": "BUF", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_njd", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251128_cgy_fla", + "sport": "NHL", + "season": "2025", + "date": "2025-11-28", + "time": "4p", + "home_team": "Florida Panthers", + "away_team": "Calgary Flames", + "home_team_abbrev": "FLA", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251128_ott_stl", + "sport": "NHL", + "season": "2025", + "date": "2025-11-28", + "time": "3p", + "home_team": "St. Louis Blues", + "away_team": "Ottawa Senators", + "home_team_abbrev": "STL", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251128_mtl_vgk", + "sport": "NHL", + "season": "2025", + "date": "2025-11-28", + "time": "1p", + "home_team": "Vegas Golden Knights", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "VGK", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251128_phi_nyi", + "sport": "NHL", + "season": "2025", + "date": "2025-11-28", + "time": "4p", + "home_team": "New York Islanders", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "NYI", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_nyi", "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_prudential_center", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251128_la_ana", + "sport": "NHL", + "season": "2025", + "date": "2025-11-28", + "time": "1p", + "home_team": "Anaheim Ducks", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "ANA", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_la", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251128_wpg_car", + "sport": "NHL", + "season": "2025", + "date": "2025-11-28", + "time": "5p", + "home_team": "Carolina Hurricanes", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "CAR", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251128_tor_was", + "sport": "NHL", + "season": "2025", + "date": "2025-11-28", + "time": "5p", + "home_team": "Washington Capitals", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "WAS", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251128_pit_cbj", + "sport": "NHL", + "season": "2025", + "date": "2025-11-28", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_pit", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251128_cle_atl", + "sport": "NBA", + "season": "2025", + "date": "2025-11-28", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_cle", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251128_mil_nyk", + "sport": "NBA", + "season": "2025", + "date": "2025-11-28", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "NYK", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_mil", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251128_was_ind", + "sport": "NBA", + "season": "2025", + "date": "2025-11-28", + "time": "7:30p", + "home_team": "Indiana Pacers", + "away_team": "Washington Wizards", + "home_team_abbrev": "IND", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_was", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251128_orl_det", + "sport": "NBA", + "season": "2025", + "date": "2025-11-28", + "time": "7:30p", + "home_team": "Detroit Pistons", + "away_team": "Orlando Magic", + "home_team_abbrev": "DET", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_orl", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251128_chi_cho", + "sport": "NBA", + "season": "2025", + "date": "2025-11-28", + "time": "7:30p", + "home_team": "Charlotte Hornets", + "away_team": "Chicago Bulls", + "home_team_abbrev": "CHA", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_chi", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251128_phi_brk", + "sport": "NBA", + "season": "2025", + "date": "2025-11-28", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "BKN", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_phi", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251128_nsh_chi", + "sport": "NHL", + "season": "2025", + "date": "2025-11-28", + "time": "7p", + "home_team": "Chicago Blackhawks", + "away_team": "Nashville Predators", + "home_team_abbrev": "CHI", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251128_ari_dal", + "sport": "NHL", + "season": "2025", + "date": "2025-11-28", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Utah Club", + "home_team_abbrev": "DAL", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_ari", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251128_sas_den", + "sport": "NBA", + "season": "2025", + "date": "2025-11-28", + "time": "7:30p", + "home_team": "Denver Nuggets", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "DEN", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_sas", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251128_sac_uta", + "sport": "NBA", + "season": "2025", + "date": "2025-11-28", + "time": "7:30p", + "home_team": "Utah Jazz", + "away_team": "Sacramento Kings", + "home_team_abbrev": "UTA", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_sac", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251128_phx_okc", + "sport": "NBA", + "season": "2025", + "date": "2025-11-28", + "time": "8:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "Phoenix Suns", + "home_team_abbrev": "OKC", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_phx", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251128_dal_lal", + "sport": "NBA", + "season": "2025", + "date": "2025-11-28", + "time": "7p", + "home_team": "Los Angeles Lakers", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "LAL", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_dal", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251128_mem_lac", + "sport": "NBA", + "season": "2025", + "date": "2025-11-28", + "time": "7p", + "home_team": "Los Angeles Clippers", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "LAC", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_mem", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251129_tb_nyr", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-29T05:00:00Z", + "season": "2025", + "date": "2025-11-29", + "time": "2p", + "home_team": "New York Rangers", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "NYR", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_nhl_nyr", "away_team_canonical_id": "team_nhl_tb", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251129_tor_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-29T05:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251129_bos_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-29T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251129_brk_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-29T06:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251129_buf_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-29T06:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251129_wpg_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-29T06:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251129_ari_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-29T06:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251129_mtl_col", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-29T07:00:00Z", + "season": "2025", + "date": "2025-11-29", + "time": "1p", + "home_team": "Colorado Avalanche", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "COL", + "away_team_abbrev": "MTL", "home_team_canonical_id": "team_nhl_col", "away_team_canonical_id": "team_nhl_mtl", + "venue": "Ball Arena", "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251129_nop_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-29T08:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251129_dal_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-29T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251129_van_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-29T08:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251129_edm_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-29T08:00:00Z", + "season": "2025", + "date": "2025-11-29", + "time": "1p", + "home_team": "Seattle Kraken", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "EDM", "home_team_canonical_id": "team_nhl_sea", "away_team_canonical_id": "team_nhl_edm", + "venue": "Climate Pledge Arena", "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251129_bos_min", + "sport": "NBA", + "season": "2025", + "date": "2025-11-29", + "time": "4p", + "home_team": "Minnesota Timberwolves", + "away_team": "Boston Celtics", + "home_team_abbrev": "MIN", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_bos", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251129_tor_cho", + "sport": "NBA", + "season": "2025", + "date": "2025-11-29", + "time": "6p", + "home_team": "Charlotte Hornets", + "away_team": "Toronto Raptors", + "home_team_abbrev": "CHA", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_tor", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251129_wpg_nsh", + "sport": "NHL", + "season": "2025", + "date": "2025-11-29", + "time": "6p", + "home_team": "Nashville Predators", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "NSH", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251129_tor_pit", + "sport": "NHL", + "season": "2025", + "date": "2025-11-29", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "PIT", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_tor", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251129_det_bos", + "sport": "NHL", + "season": "2025", + "date": "2025-11-29", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "BOS", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_det", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251129_phi_njd", + "sport": "NHL", + "season": "2025", + "date": "2025-11-29", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "NJ", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_phi", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251129_chi_ind", + "sport": "NBA", + "season": "2025", + "date": "2025-11-29", + "time": "7:30p", + "home_team": "Indiana Pacers", + "away_team": "Chicago Bulls", + "home_team_abbrev": "IND", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_chi", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251129_det_mia", + "sport": "NBA", + "season": "2025", + "date": "2025-11-29", + "time": "8p", + "home_team": "Miami Heat", + "away_team": "Detroit Pistons", + "home_team_abbrev": "MIA", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_det", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251129_brk_mil", + "sport": "NBA", + "season": "2025", + "date": "2025-11-29", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "MIL", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_brk", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251129_buf_min", + "sport": "NHL", + "season": "2025", + "date": "2025-11-29", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "MIN", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251129_ari_stl", + "sport": "NHL", + "season": "2025", + "date": "2025-11-29", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Utah Club", + "home_team_abbrev": "STL", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251129_nop_gsw", + "sport": "NBA", + "season": "2025", + "date": "2025-11-29", + "time": "5:30p", + "home_team": "Golden State Warriors", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "GSW", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_nop", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251129_den_phx", + "sport": "NBA", + "season": "2025", + "date": "2025-11-29", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "Denver Nuggets", + "home_team_abbrev": "PHX", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_den", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251129_dal_lac", + "sport": "NBA", + "season": "2025", + "date": "2025-11-29", + "time": "7p", + "home_team": "Los Angeles Clippers", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "LAC", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_dal", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251129_van_la", + "sport": "NHL", + "season": "2025", + "date": "2025-11-29", + "time": "7p", + "home_team": "Los Angeles Kings", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "LA", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_van", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251129_sj_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-29T08:00:00Z", + "season": "2025", + "date": "2025-11-29", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "San Jose Sharks", + "home_team_abbrev": "VGK", + "away_team_abbrev": "SJ", "home_team_canonical_id": "team_nhl_vgk", "away_team_canonical_id": "team_nhl_sj", + "venue": "T-Mobile Arena", "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251129_nyc_mia", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-11-29T23:00:00Z", - "home_team_canonical_id": "team_mls_mia", - "away_team_canonical_id": "team_mls_nyc", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mls_2025_20251130_van_sd", - "sport": "MLS", - "season": "2025", - "game_datetime_utc": "2025-11-30T02:00:00Z", - "home_team_canonical_id": "team_mls_sd", - "away_team_canonical_id": "team_mls_van", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251130_tor_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-30T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251130_cgy_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-30T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251130_was_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-30T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251130_bos_cle", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-30T06:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251130_sas_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-30T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251130_ana_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-30T06:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251130_ott_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-11-30T06:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251130_hou_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-30T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251130_atl_phi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-30T08:00:00Z", - "home_team_canonical_id": "team_nba_phi", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251130_okc_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-30T08:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251130_mem_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-30T08:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251130_nop_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-11-30T08:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251130_sf_cle", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-30T18:00:00Z", - "home_team_canonical_id": "team_nfl_cle", - "away_team_canonical_id": "team_nfl_sf", - "stadium_canonical_id": "stadium_nfl_huntington_bank_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251130_jax_ten", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-30T18:00:00Z", - "home_team_canonical_id": "team_nfl_ten", - "away_team_canonical_id": "team_nfl_jax", - "stadium_canonical_id": "stadium_nfl_nissan_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251130_hou_ind", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-30T18:00:00Z", - "home_team_canonical_id": "team_nfl_ind", - "away_team_canonical_id": "team_nfl_hou", - "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251130_no_mia", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-30T18:00:00Z", - "home_team_canonical_id": "team_nfl_mia", - "away_team_canonical_id": "team_nfl_no", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251130_atl_nyj", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-30T18:00:00Z", - "home_team_canonical_id": "team_nfl_nyj", - "away_team_canonical_id": "team_nfl_atl", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251130_ari_tb", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-30T18:00:00Z", - "home_team_canonical_id": "team_nfl_tb", - "away_team_canonical_id": "team_nfl_ari", - "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251130_lar_car", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-30T18:00:00Z", - "home_team_canonical_id": "team_nfl_car", - "away_team_canonical_id": "team_nfl_lar", - "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251130_sf_cle", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-30T18:00:00Z", - "home_team_canonical_id": "team_nfl_cle", - "away_team_canonical_id": "team_nfl_sf", - "stadium_canonical_id": "stadium_nfl_huntington_bank_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251130_no_mia", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-30T18:00:00Z", - "home_team_canonical_id": "team_nfl_mia", - "away_team_canonical_id": "team_nfl_no", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251130_lar_car", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-30T18:00:00Z", - "home_team_canonical_id": "team_nfl_car", - "away_team_canonical_id": "team_nfl_lar", - "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251130_jax_ten", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-30T18:00:00Z", - "home_team_canonical_id": "team_nfl_ten", - "away_team_canonical_id": "team_nfl_jax", - "stadium_canonical_id": "stadium_nfl_nissan_stadium", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251130_hou_ind", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-30T18:00:00Z", + "season": "2025", + "date": "2025-11-30", + "time": "1p", + "home_team": "Indianapolis Colts", + "away_team": "Houston Texans", + "home_team_abbrev": "IND", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nfl_ind", "away_team_canonical_id": "team_nfl_hou", + "venue": "Lucas Oil Stadium", "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251130_jax_ten", + "sport": "NFL", + "season": "2025", + "date": "2025-11-30", + "time": "12p", + "home_team": "Tennessee Titans", + "away_team": "Jacksonville Jaguars", + "home_team_abbrev": "TEN", + "away_team_abbrev": "JAX", + "home_team_canonical_id": "team_nfl_ten", + "away_team_canonical_id": "team_nfl_jax", + "venue": "Nissan Stadium", + "stadium_canonical_id": "stadium_nfl_nissan_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251130_sf_cle", + "sport": "NFL", + "season": "2025", + "date": "2025-11-30", + "time": "1p", + "home_team": "Cleveland Browns", + "away_team": "San Francisco 49ers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_nfl_cle", + "away_team_canonical_id": "team_nfl_sf", + "venue": "Huntington Bank Field", + "stadium_canonical_id": "stadium_nfl_huntington_bank_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251130_no_mia", + "sport": "NFL", + "season": "2025", + "date": "2025-11-30", + "time": "1p", + "home_team": "Miami Dolphins", + "away_team": "New Orleans Saints", + "home_team_abbrev": "MIA", + "away_team_abbrev": "NO", + "home_team_canonical_id": "team_nfl_mia", + "away_team_canonical_id": "team_nfl_no", + "venue": "Hard Rock Stadium", + "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251130_atl_nyj", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-30T18:00:00Z", + "season": "2025", + "date": "2025-11-30", + "time": "1p", + "home_team": "New York Jets", + "away_team": "Atlanta Falcons", + "home_team_abbrev": "NYJ", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nfl_nyj", "away_team_canonical_id": "team_nfl_atl", + "venue": "MetLife Stadium", "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251130_ari_tb", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-30T18:00:00Z", + "season": "2025", + "date": "2025-11-30", + "time": "1p", + "home_team": "Tampa Bay Buccaneers", + "away_team": "Arizona Cardinals", + "home_team_abbrev": "TB", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_nfl_tb", "away_team_canonical_id": "team_nfl_ari", + "venue": "Raymond James Stadium", "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251130_min_sea", + "canonical_id": "game_nfl_2026_20251130_lar_car", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-11-30T21:05:00Z", - "home_team_canonical_id": "team_nfl_sea", - "away_team_canonical_id": "team_nfl_min", - "stadium_canonical_id": "stadium_nfl_lumen_field", + "date": "2025-11-30", + "time": "1p", + "home_team": "Carolina Panthers", + "away_team": "Los Angeles Rams", + "home_team_abbrev": "CAR", + "away_team_abbrev": "LAR", + "home_team_canonical_id": "team_nfl_car", + "away_team_canonical_id": "team_nfl_lar", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251130_was_nyi", + "sport": "NHL", + "season": "2025", + "date": "2025-11-30", + "time": "1p", + "home_team": "New York Islanders", + "away_team": "Washington Capitals", + "home_team_abbrev": "NYI", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_was", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251130_hou_uta", + "sport": "NBA", + "season": "2025", + "date": "2025-11-30", + "time": "1p", + "home_team": "Utah Jazz", + "away_team": "Houston Rockets", + "home_team_abbrev": "UTA", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_hou", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251130_ana_chi", + "sport": "NHL", + "season": "2025", + "date": "2025-11-30", + "time": "2:30p", + "home_team": "Chicago Blackhawks", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "CHI", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_ana", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251130_min_sea", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-30T21:05:00Z", + "season": "2025", + "date": "2025-11-30", + "time": "1:05p", + "home_team": "Seattle Seahawks", + "away_team": "Minnesota Vikings", + "home_team_abbrev": "SEA", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nfl_sea", "away_team_canonical_id": "team_nfl_min", + "venue": "Lumen Field", "stadium_canonical_id": "stadium_nfl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251130_buf_pit", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-30T21:25:00Z", - "home_team_canonical_id": "team_nfl_pit", - "away_team_canonical_id": "team_nfl_buf", - "stadium_canonical_id": "stadium_nfl_acrisure_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251130_lv_lac", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-11-30T21:25:00Z", - "home_team_canonical_id": "team_nfl_lac", - "away_team_canonical_id": "team_nfl_lv", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251130_lv_lac", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-30T21:25:00Z", - "home_team_canonical_id": "team_nfl_lac", - "away_team_canonical_id": "team_nfl_lv", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251130_buf_pit", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-11-30T21:25:00Z", + "season": "2025", + "date": "2025-11-30", + "time": "4:25p", + "home_team": "Pittsburgh Steelers", + "away_team": "Buffalo Bills", + "home_team_abbrev": "PIT", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nfl_pit", "away_team_canonical_id": "team_nfl_buf", + "venue": "Acrisure Stadium", "stadium_canonical_id": "stadium_nfl_acrisure_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251201_den_was", + "canonical_id": "game_nfl_2026_20251130_lv_lac", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-12-01T01:20:00Z", - "home_team_canonical_id": "team_nfl_was", - "away_team_canonical_id": "team_nfl_den", - "stadium_canonical_id": "stadium_nfl_northwest_stadium", + "date": "2025-11-30", + "time": "1:25p", + "home_team": "Los Angeles Chargers", + "away_team": "Las Vegas Raiders", + "home_team_abbrev": "LAC", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_nfl_lac", + "away_team_canonical_id": "team_nfl_lv", + "venue": "SoFi Stadium", + "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251130_cgy_car", + "sport": "NHL", + "season": "2025", + "date": "2025-11-30", + "time": "5p", + "home_team": "Carolina Hurricanes", + "away_team": "Calgary Flames", + "home_team_abbrev": "CAR", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251130_tor_nyk", + "sport": "NBA", + "season": "2025", + "date": "2025-11-30", + "time": "6p", + "home_team": "New York Knicks", + "away_team": "Toronto Raptors", + "home_team_abbrev": "NYK", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_tor", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251130_atl_phi", + "sport": "NBA", + "season": "2025", + "date": "2025-11-30", + "time": "3p", + "home_team": "Philadelphia 76ers", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "PHI", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_atl", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251130_okc_por", + "sport": "NBA", + "season": "2025", + "date": "2025-11-30", + "time": "3p", + "home_team": "Portland Blazers", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "POR", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_okc", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251130_bos_cle", + "sport": "NBA", + "season": "2025", + "date": "2025-11-30", + "time": "5p", + "home_team": "Cleveland Cavaliers", + "away_team": "Boston Celtics", + "home_team_abbrev": "CLE", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_bos", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251130_ott_dal", + "sport": "NHL", + "season": "2025", + "date": "2025-11-30", + "time": "5p", + "home_team": "Dallas Stars", + "away_team": "Ottawa Senators", + "home_team_abbrev": "DAL", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_ott", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251130_sas_min", + "sport": "NBA", + "season": "2025", + "date": "2025-11-30", + "time": "6p", + "home_team": "Minnesota Timberwolves", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "MIN", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_sas", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251201_den_was", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-01T01:20:00Z", + "season": "2025", + "date": "2025-11-30", + "time": "8:20p", + "home_team": "Washington Commanders", + "away_team": "Denver Broncos", + "home_team_abbrev": "WAS", + "away_team_abbrev": "DEN", "home_team_canonical_id": "team_nfl_was", "away_team_canonical_id": "team_nfl_den", + "venue": "Northwest Stadium", "stadium_canonical_id": "stadium_nfl_northwest_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251201_atl_det", + "canonical_id": "game_nba_2025_20251130_mem_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-01T05:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "season": "2025", + "date": "2025-11-30", + "time": "6p", + "home_team": "Sacramento Kings", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "SAC", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_mem", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251201_cle_ind", + "canonical_id": "game_nba_2025_20251130_nop_lal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-01T05:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "season": "2025", + "date": "2025-11-30", + "time": "6:30p", + "home_team": "Los Angeles Lakers", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "LAL", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_nop", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251201_mil_was", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-01T05:00:00Z", + "season": "2025", + "date": "2025-12-01", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "WAS", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_nba_was", "away_team_canonical_id": "team_nba_mil", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251201_cho_brk", + "canonical_id": "game_nba_2025_20251201_atl_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-01T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_barclays_center", + "season": "2025", + "date": "2025-12-01", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "DET", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_atl", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251201_lac_mia", + "canonical_id": "game_nba_2025_20251201_cle_ind", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-01T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251201_chi_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-01T05:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251201_wpg_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-01T05:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_keybank_center", + "season": "2025", + "date": "2025-12-01", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "IND", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_cle", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251201_cbj_njd", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-01T05:00:00Z", + "season": "2025", + "date": "2025-12-01", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "NJ", + "away_team_abbrev": "CBJ", "home_team_canonical_id": "team_nhl_njd", "away_team_canonical_id": "team_nhl_cbj", + "venue": "Prudential Center", "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251201_pit_phi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-01T05:00:00Z", + "season": "2025", + "date": "2025-12-01", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "PHI", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_nhl_phi", "away_team_canonical_id": "team_nhl_pit", + "venue": "Wells Fargo Center", "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251201_lac_mia", + "sport": "NBA", + "season": "2025", + "date": "2025-12-01", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "MIA", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_lac", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251201_chi_orl", + "sport": "NBA", + "season": "2025", + "date": "2025-12-01", + "time": "7:30p", + "home_team": "Orlando Magic", + "away_team": "Chicago Bulls", + "home_team_abbrev": "ORL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_chi", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251201_cho_brk", + "sport": "NBA", + "season": "2025", + "date": "2025-12-01", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "BKN", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_cho", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251201_wpg_buf", + "sport": "NHL", + "season": "2025", + "date": "2025-12-01", + "time": "7:30p", + "home_team": "Buffalo Sabres", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "BUF", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251201_ana_stl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-01T06:00:00Z", + "season": "2025", + "date": "2025-12-01", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "STL", + "away_team_abbrev": "ANA", "home_team_canonical_id": "team_nhl_stl", "away_team_canonical_id": "team_nhl_ana", + "venue": "Enterprise Center", "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251201_dal_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-01T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251201_hou_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-01T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251201_phx_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-01T08:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251201_ari_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-01T08:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251202_nyg_ne", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-02T01:15:00Z", - "home_team_canonical_id": "team_nfl_ne", - "away_team_canonical_id": "team_nfl_nyg", - "stadium_canonical_id": "stadium_nfl_gillette_stadium", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251202_nyg_ne", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-02T01:15:00Z", + "season": "2025", + "date": "2025-12-01", + "time": "8:15p", + "home_team": "New England Patriots", + "away_team": "New York Giants", + "home_team_abbrev": "NE", + "away_team_abbrev": "NYG", "home_team_canonical_id": "team_nfl_ne", "away_team_canonical_id": "team_nfl_nyg", + "venue": "Gillette Stadium", "stadium_canonical_id": "stadium_nfl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251202_por_tor", + "canonical_id": "game_nba_2025_20251201_hou_uta", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-02T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "season": "2025", + "date": "2025-12-01", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Houston Rockets", + "home_team_abbrev": "UTA", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_hou", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251202_nyk_bos", + "canonical_id": "game_nba_2025_20251201_dal_den", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-02T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_td_garden", + "season": "2025", + "date": "2025-12-01", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "DEN", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_dal", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251202_bos_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-02T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251202_tor_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-02T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251202_ott_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-02T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251202_tb_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-02T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251202_dal_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-02T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251202_min_nop", + "canonical_id": "game_nba_2025_20251201_phx_lal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-02T06:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "season": "2025", + "date": "2025-12-01", + "time": "7p", + "home_team": "Los Angeles Lakers", + "away_team": "Phoenix Suns", + "home_team_abbrev": "LAL", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_phx", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251202_mem_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-02T06:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251202_cgy_nsh", + "canonical_id": "game_nhl_2025_20251201_ari_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-02T06:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251202_van_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-02T07:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251202_min_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-02T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_rogers_place", + "season": "2025", + "date": "2025-12-01", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Utah Club", + "home_team_abbrev": "SJ", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_ari", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251202_was_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-02T08:00:00Z", + "season": "2025", + "date": "2025-12-02", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Washington Wizards", + "home_team_abbrev": "PHI", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_was", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251202_okc_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-02T08:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251202_was_la", + "canonical_id": "game_nhl_2025_20251202_tb_nyi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-02T08:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "season": "2025", + "date": "2025-12-02", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "NYI", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_tb", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251202_dal_nyr", + "sport": "NHL", + "season": "2025", + "date": "2025-12-02", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Dallas Stars", + "home_team_abbrev": "NYR", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251202_ott_mtl", + "sport": "NHL", + "season": "2025", + "date": "2025-12-02", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Ottawa Senators", + "home_team_abbrev": "MTL", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251202_bos_det", + "sport": "NHL", + "season": "2025", + "date": "2025-12-02", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Boston Bruins", + "home_team_abbrev": "DET", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251202_por_tor", + "sport": "NBA", + "season": "2025", + "date": "2025-12-02", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "Portland Blazers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_por", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251202_tor_fla", + "sport": "NHL", + "season": "2025", + "date": "2025-12-02", + "time": "7:30p", + "home_team": "Florida Panthers", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "FLA", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251202_mem_sas", + "sport": "NBA", + "season": "2025", + "date": "2025-12-02", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "SAS", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_mem", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251202_nyk_bos", + "sport": "NBA", + "season": "2025", + "date": "2025-12-02", + "time": "8p", + "home_team": "Boston Celtics", + "away_team": "New York Knicks", + "home_team_abbrev": "BOS", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_nyk", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251202_min_nop", + "sport": "NBA", + "season": "2025", + "date": "2025-12-02", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "NOP", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_min", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251202_cgy_nsh", + "sport": "NHL", + "season": "2025", + "date": "2025-12-02", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "Calgary Flames", + "home_team_abbrev": "NSH", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251202_van_col", + "sport": "NHL", + "season": "2025", + "date": "2025-12-02", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "COL", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_van", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251202_min_edm", + "sport": "NHL", + "season": "2025", + "date": "2025-12-02", + "time": "7p", + "home_team": "Edmonton Oilers", + "away_team": "Minnesota Wild", + "home_team_abbrev": "EDM", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_min", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251202_chi_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-02T08:00:00Z", + "season": "2025", + "date": "2025-12-02", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "VGK", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nhl_vgk", "away_team_canonical_id": "team_nhl_chi", + "venue": "T-Mobile Arena", "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251203_den_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-03T05:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251203_sas_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-03T05:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251203_lac_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-03T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251203_cho_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-03T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251203_wpg_mtl", + "canonical_id": "game_nhl_2025_20251202_was_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-03T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_bell_centre", + "season": "2025", + "date": "2025-12-02", + "time": "7:30p", + "home_team": "Los Angeles Kings", + "away_team": "Washington Capitals", + "home_team_abbrev": "LA", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_was", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251203_dal_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-03T05:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251203_buf_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-03T05:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "canonical_id": "game_nba_2025_20251202_okc_gsw", + "sport": "NBA", + "season": "2025", + "date": "2025-12-02", + "time": "8p", + "home_team": "Golden State Warriors", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "GSW", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_okc", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251203_por_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-03T06:00:00Z", + "season": "2025", + "date": "2025-12-03", + "time": "6p", + "home_team": "Cleveland Cavaliers", + "away_team": "Portland Blazers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "POR", "home_team_canonical_id": "team_nba_cle", "away_team_canonical_id": "team_nba_por", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251203_brk_chi", + "canonical_id": "game_nba_2025_20251203_sas_orl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-03T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_united_center", + "season": "2025", + "date": "2025-12-03", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "ORL", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_sas", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251203_den_ind", + "sport": "NBA", + "season": "2025", + "date": "2025-12-03", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Denver Nuggets", + "home_team_abbrev": "IND", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_den", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251203_dal_njd", + "sport": "NHL", + "season": "2025", + "date": "2025-12-03", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Dallas Stars", + "home_team_abbrev": "NJ", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251203_cho_nyk", + "sport": "NBA", + "season": "2025", + "date": "2025-12-03", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "NYK", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_cho", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251203_lac_atl", + "sport": "NBA", + "season": "2025", + "date": "2025-12-03", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_lac", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251203_wpg_mtl", + "sport": "NHL", + "season": "2025", + "date": "2025-12-03", + "time": "7:30p", + "home_team": "Montreal Canadiens", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "MTL", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251203_buf_phi", + "sport": "NHL", + "season": "2025", + "date": "2025-12-03", + "time": "7:30p", + "home_team": "Philadelphia Flyers", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "PHI", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251203_sac_hou", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-03T06:00:00Z", + "season": "2025", + "date": "2025-12-03", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Sacramento Kings", + "home_team_abbrev": "HOU", + "away_team_abbrev": "SAC", "home_team_canonical_id": "team_nba_hou", "away_team_canonical_id": "team_nba_sac", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251203_brk_chi", + "sport": "NBA", + "season": "2025", + "date": "2025-12-03", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "CHI", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_brk", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251203_det_mil", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-03T06:00:00Z", + "season": "2025", + "date": "2025-12-03", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Detroit Pistons", + "home_team_abbrev": "MIL", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nba_mil", "away_team_canonical_id": "team_nba_det", + "venue": "Fiserv Forum", "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251203_mia_dal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-03T06:00:00Z", + "season": "2025", + "date": "2025-12-03", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Miami Heat", + "home_team_abbrev": "DAL", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_nba_dal", "away_team_canonical_id": "team_nba_mia", + "venue": "American Airlines Center", "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251203_ari_ana", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-03T08:00:00Z", + "season": "2025", + "date": "2025-12-03", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Utah Club", + "home_team_abbrev": "ANA", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_nhl_ana", "away_team_canonical_id": "team_nhl_ari", + "venue": "Honda Center", "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251203_was_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-03T08:00:00Z", + "season": "2025", + "date": "2025-12-03", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Washington Capitals", + "home_team_abbrev": "SJ", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nhl_sj", "away_team_canonical_id": "team_nhl_was", + "venue": "SAP Center", "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251204_bos_was", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-04T05:00:00Z", + "season": "2025", + "date": "2025-12-04", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Boston Celtics", + "home_team_abbrev": "WAS", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_nba_was", "away_team_canonical_id": "team_nba_bos", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251204_uta_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-04T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251204_lal_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-04T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251204_stl_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-04T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251204_tor_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-04T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251204_det_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-04T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251204_nsh_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-04T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251204_col_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-04T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251204_nyr_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-04T05:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251204_pit_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-04T05:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_amalie_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251204_min_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-04T06:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251204_min_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-04T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251204_sea_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-04T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251204_gsw_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-04T08:00:00Z", + "season": "2025", + "date": "2025-12-04", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Golden State Warriors", + "home_team_abbrev": "PHI", + "away_team_abbrev": "GSW", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_gsw", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251204_chi_la", + "canonical_id": "game_nhl_2025_20251204_nsh_fla", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-04T08:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "season": "2025", + "date": "2025-12-04", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Nashville Predators", + "home_team_abbrev": "FLA", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251205_dal_det", - "sport": "NFL", + "canonical_id": "game_nhl_2025_20251204_tor_car", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-12-05T01:15:00Z", - "home_team_canonical_id": "team_nfl_det", - "away_team_canonical_id": "team_nfl_dal", - "stadium_canonical_id": "stadium_nfl_ford_field", + "date": "2025-12-04", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "CAR", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_tor", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251204_stl_bos", + "sport": "NHL", + "season": "2025", + "date": "2025-12-04", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "St. Louis Blues", + "home_team_abbrev": "BOS", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_stl", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251204_col_nyi", + "sport": "NHL", + "season": "2025", + "date": "2025-12-04", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "NYI", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_col", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251204_pit_tb", + "sport": "NHL", + "season": "2025", + "date": "2025-12-04", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "TB", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_pit", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251204_nyr_ott", + "sport": "NHL", + "season": "2025", + "date": "2025-12-04", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "New York Rangers", + "home_team_abbrev": "OTT", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251204_lal_tor", + "sport": "NBA", + "season": "2025", + "date": "2025-12-04", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_lal", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251204_uta_brk", + "sport": "NBA", + "season": "2025", + "date": "2025-12-04", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Utah Jazz", + "home_team_abbrev": "BKN", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_uta", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251204_det_cbj", + "sport": "NHL", + "season": "2025", + "date": "2025-12-04", + "time": "7:30p", + "home_team": "Columbus Blue Jackets", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_det", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251204_min_nop", + "sport": "NBA", + "season": "2025", + "date": "2025-12-04", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "NOP", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_min", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251205_dal_det", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-05T01:15:00Z", + "season": "2025", + "date": "2025-12-04", + "time": "8:15p", + "home_team": "Detroit Lions", + "away_team": "Dallas Cowboys", + "home_team_abbrev": "DET", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nfl_det", "away_team_canonical_id": "team_nfl_dal", + "venue": "Ford Field", "stadium_canonical_id": "stadium_nfl_ford_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251205_lal_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-05T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_td_garden", + "canonical_id": "game_nhl_2025_20251204_min_cgy", + "sport": "NHL", + "season": "2025", + "date": "2025-12-04", + "time": "7p", + "home_team": "Calgary Flames", + "away_team": "Minnesota Wild", + "home_team_abbrev": "CGY", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_min", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251204_sea_edm", + "sport": "NHL", + "season": "2025", + "date": "2025-12-04", + "time": "7p", + "home_team": "Edmonton Oilers", + "away_team": "Seattle Kraken", + "home_team_abbrev": "EDM", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251204_chi_la", + "sport": "NHL", + "season": "2025", + "date": "2025-12-04", + "time": "7p", + "home_team": "Los Angeles Kings", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "LA", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251205_mia_orl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-05T05:00:00Z", + "season": "2025", + "date": "2025-12-05", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Miami Heat", + "home_team_abbrev": "ORL", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_nba_orl", "away_team_canonical_id": "team_nba_mia", + "venue": "Kia Center", "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251205_den_atl", + "canonical_id": "game_nba_2025_20251205_lal_bos", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-05T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251205_por_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-05T05:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251205_uta_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-05T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251205_cho_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-05T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251205_vgk_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-05T05:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251205_sas_cle", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-05T06:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251205_ind_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-05T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251205_phx_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-05T06:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251205_lac_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-05T06:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251205_phi_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-05T06:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251205_dal_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-05T06:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251205_sj_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-05T06:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "season": "2025", + "date": "2025-12-05", + "time": "7p", + "home_team": "Boston Celtics", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_lal", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251205_buf_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-05T06:00:00Z", + "season": "2025", + "date": "2025-12-05", + "time": "6p", + "home_team": "Winnipeg Jets", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "WPG", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_buf", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251205_was_ana", + "canonical_id": "game_nhl_2025_20251205_vgk_njd", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-05T08:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_honda_center", + "season": "2025", + "date": "2025-12-05", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "NJ", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251205_uta_nyk", + "sport": "NBA", + "season": "2025", + "date": "2025-12-05", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Utah Jazz", + "home_team_abbrev": "NYK", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_uta", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251205_cho_tor", + "sport": "NBA", + "season": "2025", + "date": "2025-12-05", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_cho", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251205_den_atl", + "sport": "NBA", + "season": "2025", + "date": "2025-12-05", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Denver Nuggets", + "home_team_abbrev": "ATL", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_den", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251205_por_det", + "sport": "NBA", + "season": "2025", + "date": "2025-12-05", + "time": "7:30p", + "home_team": "Detroit Pistons", + "away_team": "Portland Blazers", + "home_team_abbrev": "DET", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_por", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251205_sas_cle", + "sport": "NBA", + "season": "2025", + "date": "2025-12-05", + "time": "6:30p", + "home_team": "Cleveland Cavaliers", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "CLE", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_sas", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251205_lac_mem", + "sport": "NBA", + "season": "2025", + "date": "2025-12-05", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "MEM", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_lac", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251205_ind_chi", + "sport": "NBA", + "season": "2025", + "date": "2025-12-05", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Indiana Pacers", + "home_team_abbrev": "CHI", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_ind", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251205_phx_hou", + "sport": "NBA", + "season": "2025", + "date": "2025-12-05", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Phoenix Suns", + "home_team_abbrev": "HOU", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_phx", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251205_phi_mil", + "sport": "NBA", + "season": "2025", + "date": "2025-12-05", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "MIL", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_phi", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251205_sj_dal", + "sport": "NHL", + "season": "2025", + "date": "2025-12-05", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "San Jose Sharks", + "home_team_abbrev": "DAL", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_sj", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251205_ari_van", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-05T08:00:00Z", + "season": "2025", + "date": "2025-12-05", + "time": "6p", + "home_team": "Vancouver Canucks", + "away_team": "Utah Club", + "home_team_abbrev": "VAN", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_nhl_van", "away_team_canonical_id": "team_nhl_ari", + "venue": "Rogers Arena", "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251206_nop_brk", + "canonical_id": "game_nba_2025_20251205_dal_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-06T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_barclays_center", + "season": "2025", + "date": "2025-12-05", + "time": "8:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "OKC", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_dal", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251206_atl_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-06T05:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251206_mil_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-06T05:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251206_sac_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-06T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251206_njd_bos", + "canonical_id": "game_nhl_2025_20251205_was_ana", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-06T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251206_nsh_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-06T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251206_cbj_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-06T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "season": "2025", + "date": "2025-12-05", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Washington Capitals", + "home_team_abbrev": "ANA", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_was", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251206_col_nyr", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-06T05:00:00Z", + "season": "2025", + "date": "2025-12-06", + "time": "12:30p", + "home_team": "New York Rangers", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "NYR", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_nhl_nyr", "away_team_canonical_id": "team_nhl_col", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251206_cbj_fla", + "sport": "NHL", + "season": "2025", + "date": "2025-12-06", + "time": "3:30p", + "home_team": "Florida Panthers", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "FLA", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251206_nop_brk", + "sport": "NBA", + "season": "2025", + "date": "2025-12-06", + "time": "5p", + "home_team": "Brooklyn Nets", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "BKN", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_nop", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251206_atl_was", + "sport": "NBA", + "season": "2025", + "date": "2025-12-06", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "WAS", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_atl", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251206_njd_bos", + "sport": "NHL", + "season": "2025", + "date": "2025-12-06", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "New Jersey Devils", + "home_team_abbrev": "BOS", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_njd", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251206_stl_ott", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-06T05:00:00Z", + "season": "2025", + "date": "2025-12-06", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "St. Louis Blues", + "home_team_abbrev": "OTT", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_nhl_ott", "away_team_canonical_id": "team_nhl_stl", + "venue": "Canadian Tire Centre", "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251206_nsh_car", + "sport": "NHL", + "season": "2025", + "date": "2025-12-06", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Nashville Predators", + "home_team_abbrev": "CAR", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251206_nyi_tb", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-06T05:00:00Z", + "season": "2025", + "date": "2025-12-06", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "New York Islanders", + "home_team_abbrev": "TB", + "away_team_abbrev": "NYI", "home_team_canonical_id": "team_nhl_tb", "away_team_canonical_id": "team_nhl_nyi", + "venue": "Amalie Arena", "stadium_canonical_id": "stadium_nhl_amalie_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251206_mtl_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-06T05:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251206_gsw_cle", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-06T06:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251206_lac_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-06T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251206_hou_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-06T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251206_ari_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-06T07:00:00Z", + "season": "2025", + "date": "2025-12-06", + "time": "5p", + "home_team": "Calgary Flames", + "away_team": "Utah Club", + "home_team_abbrev": "CGY", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_nhl_cgy", "away_team_canonical_id": "team_nhl_ari", + "venue": "Scotiabank Saddledome", "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251206_wpg_edm", + "canonical_id": "game_nhl_2025_20251206_mtl_tor", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-06T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_rogers_place", + "season": "2025", + "date": "2025-12-06", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "TOR", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251206_mil_det", + "sport": "NBA", + "season": "2025", + "date": "2025-12-06", + "time": "7:30p", + "home_team": "Detroit Pistons", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "DET", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_mil", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251206_gsw_cle", + "sport": "NBA", + "season": "2025", + "date": "2025-12-06", + "time": "6:30p", + "home_team": "Cleveland Cavaliers", + "away_team": "Golden State Warriors", + "home_team_abbrev": "CLE", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251206_sac_mia", + "sport": "NBA", + "season": "2025", + "date": "2025-12-06", + "time": "8p", + "home_team": "Miami Heat", + "away_team": "Sacramento Kings", + "home_team_abbrev": "MIA", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_sac", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251206_lac_min", + "sport": "NBA", + "season": "2025", + "date": "2025-12-06", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_lac", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251206_hou_dal", + "sport": "NBA", + "season": "2025", + "date": "2025-12-06", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Houston Rockets", + "home_team_abbrev": "DAL", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_hou", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251206_chi_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-06T08:00:00Z", + "season": "2025", + "date": "2025-12-06", + "time": "6p", + "home_team": "Los Angeles Kings", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "LA", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nhl_la", "away_team_canonical_id": "team_nhl_chi", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251206_det_sea", + "canonical_id": "game_nhl_2025_20251206_wpg_edm", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-06T08:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "season": "2025", + "date": "2025-12-06", + "time": "8p", + "home_team": "Edmonton Oilers", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "EDM", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251206_min_van", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-06T08:00:00Z", + "season": "2025", + "date": "2025-12-06", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Minnesota Wild", + "home_team_abbrev": "VAN", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nhl_van", "away_team_canonical_id": "team_nhl_min", + "venue": "Rogers Arena", "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251206_det_sea", + "sport": "NHL", + "season": "2025", + "date": "2025-12-06", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "SEA", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_det", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251207_orl_nyk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-07T05:00:00Z", + "season": "2025", + "date": "2025-12-07", + "time": "12p", + "home_team": "New York Knicks", + "away_team": "Orlando Magic", + "home_team_abbrev": "NYK", + "away_team_abbrev": "ORL", "home_team_canonical_id": "team_nba_nyk", "away_team_canonical_id": "team_nba_orl", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251207_bos_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-07T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251207_den_cho", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-07T05:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251207_sj_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-07T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251207_nyi_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-07T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251207_stl_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-07T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251207_vgk_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-07T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251207_col_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-07T05:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251207_cbj_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-07T05:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251207_por_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-07T06:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251207_gsw_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-07T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251207_pit_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-07T06:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251207_okc_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-07T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251207_lal_phi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-07T08:00:00Z", - "home_team_canonical_id": "team_nba_phi", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251207_chi_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-07T08:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251207_sea_atl", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-07T18:00:00Z", - "home_team_canonical_id": "team_nfl_atl", - "away_team_canonical_id": "team_nfl_sea", - "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251207_cin_buf", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-07T18:00:00Z", - "home_team_canonical_id": "team_nfl_buf", - "away_team_canonical_id": "team_nfl_cin", - "stadium_canonical_id": "stadium_nfl_highmark_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251207_ten_cle", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-07T18:00:00Z", - "home_team_canonical_id": "team_nfl_cle", - "away_team_canonical_id": "team_nfl_ten", - "stadium_canonical_id": "stadium_nfl_huntington_bank_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251207_was_min", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-07T18:00:00Z", - "home_team_canonical_id": "team_nfl_min", - "away_team_canonical_id": "team_nfl_was", - "stadium_canonical_id": "stadium_nfl_us_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251207_mia_nyj", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-07T18:00:00Z", - "home_team_canonical_id": "team_nfl_nyj", - "away_team_canonical_id": "team_nfl_mia", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251207_no_tb", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-07T18:00:00Z", - "home_team_canonical_id": "team_nfl_tb", - "away_team_canonical_id": "team_nfl_no", - "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251207_ind_jax", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-07T18:00:00Z", - "home_team_canonical_id": "team_nfl_jax", - "away_team_canonical_id": "team_nfl_ind", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251207_pit_bal", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-07T18:00:00Z", - "home_team_canonical_id": "team_nfl_bal", - "away_team_canonical_id": "team_nfl_pit", - "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251207_was_min", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-07T18:00:00Z", - "home_team_canonical_id": "team_nfl_min", - "away_team_canonical_id": "team_nfl_was", - "stadium_canonical_id": "stadium_nfl_us_bank_stadium", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251207_ten_cle", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-07T18:00:00Z", + "season": "2025", + "date": "2025-12-07", + "time": "1p", + "home_team": "Cleveland Browns", + "away_team": "Tennessee Titans", + "home_team_abbrev": "CLE", + "away_team_abbrev": "TEN", "home_team_canonical_id": "team_nfl_cle", "away_team_canonical_id": "team_nfl_ten", + "venue": "Huntington Bank Field", "stadium_canonical_id": "stadium_nfl_huntington_bank_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251207_sea_atl", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-07T18:00:00Z", - "home_team_canonical_id": "team_nfl_atl", - "away_team_canonical_id": "team_nfl_sea", - "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251207_pit_bal", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-07T18:00:00Z", - "home_team_canonical_id": "team_nfl_bal", - "away_team_canonical_id": "team_nfl_pit", - "stadium_canonical_id": "stadium_nfl_mt_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251207_no_tb", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-07T18:00:00Z", - "home_team_canonical_id": "team_nfl_tb", - "away_team_canonical_id": "team_nfl_no", - "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251207_mia_nyj", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-07T18:00:00Z", + "season": "2025", + "date": "2025-12-07", + "time": "1p", + "home_team": "New York Jets", + "away_team": "Miami Dolphins", + "home_team_abbrev": "NYJ", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_nfl_nyj", "away_team_canonical_id": "team_nfl_mia", + "venue": "MetLife Stadium", "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251207_no_tb", + "sport": "NFL", + "season": "2025", + "date": "2025-12-07", + "time": "1p", + "home_team": "Tampa Bay Buccaneers", + "away_team": "New Orleans Saints", + "home_team_abbrev": "TB", + "away_team_abbrev": "NO", + "home_team_canonical_id": "team_nfl_tb", + "away_team_canonical_id": "team_nfl_no", + "venue": "Raymond James Stadium", + "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251207_was_min", + "sport": "NFL", + "season": "2025", + "date": "2025-12-07", + "time": "12p", + "home_team": "Minnesota Vikings", + "away_team": "Washington Commanders", + "home_team_abbrev": "MIN", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nfl_min", + "away_team_canonical_id": "team_nfl_was", + "venue": "U.S. Bank Stadium", + "stadium_canonical_id": "stadium_nfl_us_bank_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251207_pit_bal", + "sport": "NFL", + "season": "2025", + "date": "2025-12-07", + "time": "1p", + "home_team": "Baltimore Ravens", + "away_team": "Pittsburgh Steelers", + "home_team_abbrev": "BAL", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nfl_bal", + "away_team_canonical_id": "team_nfl_pit", + "venue": "M&T Bank Stadium", + "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251207_ind_jax", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-07T18:00:00Z", + "season": "2025", + "date": "2025-12-07", + "time": "1p", + "home_team": "Jacksonville Jaguars", + "away_team": "Indianapolis Colts", + "home_team_abbrev": "JAX", + "away_team_abbrev": "IND", "home_team_canonical_id": "team_nfl_jax", "away_team_canonical_id": "team_nfl_ind", + "venue": "EverBank Stadium", "stadium_canonical_id": "stadium_nfl_everbank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251207_cin_buf", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-07T18:00:00Z", + "season": "2025", + "date": "2025-12-07", + "time": "1p", + "home_team": "Buffalo Bills", + "away_team": "Cincinnati Bengals", + "home_team_abbrev": "BUF", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_nfl_buf", "away_team_canonical_id": "team_nfl_cin", + "venue": "Highmark Stadium", "stadium_canonical_id": "stadium_nfl_highmark_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251207_den_lv", + "canonical_id": "game_nfl_2026_20251207_sea_atl", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-12-07T21:05:00Z", - "home_team_canonical_id": "team_nfl_lv", - "away_team_canonical_id": "team_nfl_den", - "stadium_canonical_id": "stadium_nfl_allegiant_stadium", + "date": "2025-12-07", + "time": "1p", + "home_team": "Atlanta Falcons", + "away_team": "Seattle Seahawks", + "home_team_abbrev": "ATL", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nfl_atl", + "away_team_canonical_id": "team_nfl_sea", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251207_col_phi", + "sport": "NHL", + "season": "2025", + "date": "2025-12-07", + "time": "1p", + "home_team": "Philadelphia Flyers", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "PHI", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_col", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251207_bos_tor", + "sport": "NBA", + "season": "2025", + "date": "2025-12-07", + "time": "3:30p", + "home_team": "Toronto Raptors", + "away_team": "Boston Celtics", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_bos", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251207_den_lv", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-07T21:05:00Z", + "season": "2025", + "date": "2025-12-07", + "time": "1:05p", + "home_team": "Las Vegas Raiders", + "away_team": "Denver Broncos", + "home_team_abbrev": "LV", + "away_team_abbrev": "DEN", "home_team_canonical_id": "team_nfl_lv", "away_team_canonical_id": "team_nfl_den", + "venue": "Allegiant Stadium", "stadium_canonical_id": "stadium_nfl_allegiant_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251207_chi_gb", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-07T21:25:00Z", - "home_team_canonical_id": "team_nfl_gb", - "away_team_canonical_id": "team_nfl_chi", - "stadium_canonical_id": "stadium_nfl_lambeau_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251207_lar_ari", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-07T21:25:00Z", - "home_team_canonical_id": "team_nfl_ari", - "away_team_canonical_id": "team_nfl_lar", - "stadium_canonical_id": "stadium_nfl_state_farm_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251207_lar_ari", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-07T21:25:00Z", - "home_team_canonical_id": "team_nfl_ari", - "away_team_canonical_id": "team_nfl_lar", - "stadium_canonical_id": "stadium_nfl_state_farm_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251207_chi_gb", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-07T21:25:00Z", + "season": "2025", + "date": "2025-12-07", + "time": "3:25p", + "home_team": "Green Bay Packers", + "away_team": "Chicago Bears", + "home_team_abbrev": "GB", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nfl_gb", "away_team_canonical_id": "team_nfl_chi", + "venue": "Lambeau Field", "stadium_canonical_id": "stadium_nfl_lambeau_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251208_hou_kc", + "canonical_id": "game_nfl_2026_20251207_lar_ari", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-12-08T01:20:00Z", - "home_team_canonical_id": "team_nfl_kc", - "away_team_canonical_id": "team_nfl_hou", - "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", + "date": "2025-12-07", + "time": "2:25p", + "home_team": "Arizona Cardinals", + "away_team": "Los Angeles Rams", + "home_team_abbrev": "ARI", + "away_team_abbrev": "LAR", + "home_team_canonical_id": "team_nfl_ari", + "away_team_canonical_id": "team_nfl_lar", + "venue": "State Farm Stadium", + "stadium_canonical_id": "stadium_nfl_state_farm_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251207_sj_car", + "sport": "NHL", + "season": "2025", + "date": "2025-12-07", + "time": "5p", + "home_team": "Carolina Hurricanes", + "away_team": "San Jose Sharks", + "home_team_abbrev": "CAR", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_sj", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251207_nyi_fla", + "sport": "NHL", + "season": "2025", + "date": "2025-12-07", + "time": "5p", + "home_team": "Florida Panthers", + "away_team": "New York Islanders", + "home_team_abbrev": "FLA", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251207_den_cho", + "sport": "NBA", + "season": "2025", + "date": "2025-12-07", + "time": "6p", + "home_team": "Charlotte Hornets", + "away_team": "Denver Nuggets", + "home_team_abbrev": "CHA", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_den", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251207_por_mem", + "sport": "NBA", + "season": "2025", + "date": "2025-12-07", + "time": "5p", + "home_team": "Memphis Grizzlies", + "away_team": "Portland Blazers", + "home_team_abbrev": "MEM", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_por", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251207_pit_dal", + "sport": "NHL", + "season": "2025", + "date": "2025-12-07", + "time": "5p", + "home_team": "Dallas Stars", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "DAL", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_pit", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251207_gsw_chi", + "sport": "NBA", + "season": "2025", + "date": "2025-12-07", + "time": "6p", + "home_team": "Chicago Bulls", + "away_team": "Golden State Warriors", + "home_team_abbrev": "CHI", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_gsw", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251207_cbj_was", + "sport": "NHL", + "season": "2025", + "date": "2025-12-07", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "WAS", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251207_vgk_nyr", + "sport": "NHL", + "season": "2025", + "date": "2025-12-07", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "NYR", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251207_stl_mtl", + "sport": "NHL", + "season": "2025", + "date": "2025-12-07", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "St. Louis Blues", + "home_team_abbrev": "MTL", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251207_lal_phi", + "sport": "NBA", + "season": "2025", + "date": "2025-12-07", + "time": "4:30p", + "home_team": "Philadelphia 76ers", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_lal", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251207_okc_uta", + "sport": "NBA", + "season": "2025", + "date": "2025-12-07", + "time": "6p", + "home_team": "Utah Jazz", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "UTA", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_okc", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251207_chi_ana", + "sport": "NHL", + "season": "2025", + "date": "2025-12-07", + "time": "5p", + "home_team": "Anaheim Ducks", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "ANA", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251208_hou_kc", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-08T01:20:00Z", + "season": "2025", + "date": "2025-12-07", + "time": "7:20p", + "home_team": "Kansas City Chiefs", + "away_team": "Houston Texans", + "home_team_abbrev": "KC", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nfl_kc", "away_team_canonical_id": "team_nfl_hou", + "venue": "Arrowhead Stadium", "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251208_sac_ind", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-08T05:00:00Z", + "season": "2025", + "date": "2025-12-08", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Sacramento Kings", + "home_team_abbrev": "IND", + "away_team_abbrev": "SAC", "home_team_canonical_id": "team_nba_ind", "away_team_canonical_id": "team_nba_sac", + "venue": "Gainbridge Fieldhouse", "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251208_tb_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-08T05:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251208_phx_min", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-08T06:00:00Z", + "season": "2025", + "date": "2025-12-08", + "time": "6:30p", + "home_team": "Minnesota Timberwolves", + "away_team": "Phoenix Suns", + "home_team_abbrev": "MIN", + "away_team_abbrev": "PHX", "home_team_canonical_id": "team_nba_min", "away_team_canonical_id": "team_nba_phx", + "venue": "Target Center", "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251208_tb_tor", + "sport": "NHL", + "season": "2025", + "date": "2025-12-08", + "time": "7:30p", + "home_team": "Toronto Maple Leafs", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "TOR", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251208_sas_nop", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-08T06:00:00Z", + "season": "2025", + "date": "2025-12-08", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "NOP", + "away_team_abbrev": "SAS", "home_team_canonical_id": "team_nba_nop", "away_team_canonical_id": "team_nba_sas", + "venue": "Smoothie King Center", "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251208_buf_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-08T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251208_la_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-08T07:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251208_min_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-08T08:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251208_det_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-08T08:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_rogers_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251209_phi_lac", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-09T01:15:00Z", - "home_team_canonical_id": "team_nfl_lac", - "away_team_canonical_id": "team_nfl_phi", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251209_phi_lac", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-09T01:15:00Z", + "season": "2025", + "date": "2025-12-08", + "time": "5:15p", + "home_team": "Los Angeles Chargers", + "away_team": "Philadelphia Eagles", + "home_team_abbrev": "LAC", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nfl_lac", "away_team_canonical_id": "team_nfl_phi", + "venue": "SoFi Stadium", "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251208_la_ari", + "sport": "NHL", + "season": "2025", + "date": "2025-12-08", + "time": "7p", + "home_team": "Utah Club", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "ARI", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_la", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251208_buf_cgy", + "sport": "NHL", + "season": "2025", + "date": "2025-12-08", + "time": "7p", + "home_team": "Calgary Flames", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "CGY", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251208_min_sea", + "sport": "NHL", + "season": "2025", + "date": "2025-12-08", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Minnesota Wild", + "home_team_abbrev": "SEA", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_min", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251208_det_van", + "sport": "NHL", + "season": "2025", + "date": "2025-12-08", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "VAN", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_det", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251209_mia_orl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-09T05:00:00Z", + "season": "2025", + "date": "2025-12-09", + "time": "6p", + "home_team": "Orlando Magic", + "away_team": "Miami Heat", + "home_team_abbrev": "ORL", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_nba_orl", "away_team_canonical_id": "team_nba_mia", + "venue": "Kia Center", "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251209_nyk_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-09T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251209_cbj_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-09T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251209_tb_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-09T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251209_vgk_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-09T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251209_njd_ott", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-09T05:00:00Z", + "season": "2025", + "date": "2025-12-09", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "New Jersey Devils", + "home_team_abbrev": "OTT", + "away_team_abbrev": "NJ", "home_team_canonical_id": "team_nhl_ott", "away_team_canonical_id": "team_nhl_njd", + "venue": "Canadian Tire Centre", "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251209_sj_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-09T05:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251209_ana_pit", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-09T05:00:00Z", + "season": "2025", + "date": "2025-12-09", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "PIT", + "away_team_abbrev": "ANA", "home_team_canonical_id": "team_nhl_pit", "away_team_canonical_id": "team_nhl_ana", + "venue": "PPG Paints Arena", "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251209_col_nsh", + "canonical_id": "game_nhl_2025_20251209_sj_phi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-09T06:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "season": "2025", + "date": "2025-12-09", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "San Jose Sharks", + "home_team_abbrev": "PHI", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251209_bos_stl", + "canonical_id": "game_nhl_2025_20251209_vgk_nyi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-09T06:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_enterprise_center", + "season": "2025", + "date": "2025-12-09", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "NYI", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251209_tb_mtl", + "sport": "NHL", + "season": "2025", + "date": "2025-12-09", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "MTL", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251209_cbj_car", + "sport": "NHL", + "season": "2025", + "date": "2025-12-09", + "time": "7:30p", + "home_team": "Carolina Hurricanes", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "CAR", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251209_dal_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-09T06:00:00Z", + "season": "2025", + "date": "2025-12-09", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "Dallas Stars", + "home_team_abbrev": "WPG", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_dal", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251209_bos_stl", + "sport": "NHL", + "season": "2025", + "date": "2025-12-09", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Boston Bruins", + "home_team_abbrev": "STL", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251209_nyk_tor", + "sport": "NBA", + "season": "2025", + "date": "2025-12-09", + "time": "8:30p", + "home_team": "Toronto Raptors", + "away_team": "New York Knicks", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251209_buf_edm", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-09T07:00:00Z", + "season": "2025", + "date": "2025-12-09", + "time": "7p", + "home_team": "Edmonton Oilers", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "EDM", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nhl_edm", "away_team_canonical_id": "team_nhl_buf", + "venue": "Rogers Place", "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251209_col_nsh", + "sport": "NHL", + "season": "2025", + "date": "2025-12-09", + "time": "8:30p", + "home_team": "Nashville Predators", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "NSH", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_col", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251210_phx_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-10T06:00:00Z", + "season": "2025", + "date": "2025-12-10", + "time": "6:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "Phoenix Suns", + "home_team_abbrev": "OKC", + "away_team_abbrev": "PHX", "home_team_canonical_id": "team_nba_okc", "away_team_canonical_id": "team_nba_phx", + "venue": "Paycom Center", "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251210_nyr_chi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-10T06:00:00Z", + "season": "2025", + "date": "2025-12-10", + "time": "6:30p", + "home_team": "Chicago Blackhawks", + "away_team": "New York Rangers", + "home_team_abbrev": "CHI", + "away_team_abbrev": "NYR", "home_team_canonical_id": "team_nhl_chi", "away_team_canonical_id": "team_nhl_nyr", + "venue": "United Center", "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251210_det_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-10T07:00:00Z", + "season": "2025", + "date": "2025-12-10", + "time": "6:30p", + "home_team": "Calgary Flames", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "CGY", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nhl_cgy", "away_team_canonical_id": "team_nhl_det", + "venue": "Scotiabank Saddledome", "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251210_fla_ari", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-10T07:00:00Z", + "season": "2025", + "date": "2025-12-10", + "time": "7p", + "home_team": "Utah Club", + "away_team": "Florida Panthers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "FLA", "home_team_canonical_id": "team_nhl_ari", "away_team_canonical_id": "team_nhl_fla", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251210_sas_lal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-10T08:00:00Z", + "season": "2025", + "date": "2025-12-10", + "time": "7p", + "home_team": "Los Angeles Lakers", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "LAL", + "away_team_abbrev": "SAS", "home_team_canonical_id": "team_nba_lal", "away_team_canonical_id": "team_nba_sas", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251210_la_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-10T08:00:00Z", + "season": "2025", + "date": "2025-12-10", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "SEA", + "away_team_abbrev": "LA", "home_team_canonical_id": "team_nhl_sea", "away_team_canonical_id": "team_nhl_la", + "venue": "Climate Pledge Arena", "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251211_ott_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-11T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251211_tb_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-11T05:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251211_ana_nyi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-11T05:00:00Z", + "season": "2025", + "date": "2025-12-11", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "NYI", + "away_team_abbrev": "ANA", "home_team_canonical_id": "team_nhl_nyi", "away_team_canonical_id": "team_nhl_ana", + "venue": "UBS Arena", "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251211_vgk_phi", + "canonical_id": "game_nhl_2025_20251211_tb_njd", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-11T05:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251211_mtl_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-11T05:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "season": "2025", + "date": "2025-12-11", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "NJ", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251211_sj_tor", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-11T05:00:00Z", + "season": "2025", + "date": "2025-12-11", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "San Jose Sharks", + "home_team_abbrev": "TOR", + "away_team_abbrev": "SJ", "home_team_canonical_id": "team_nhl_tor", "away_team_canonical_id": "team_nhl_sj", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251211_ott_cbj", + "sport": "NHL", + "season": "2025", + "date": "2025-12-11", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Ottawa Senators", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251211_car_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-11T05:00:00Z", + "season": "2025", + "date": "2025-12-11", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "WAS", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nhl_was", "away_team_canonical_id": "team_nhl_car", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251211_vgk_phi", + "sport": "NHL", + "season": "2025", + "date": "2025-12-11", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "PHI", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251211_mtl_pit", + "sport": "NHL", + "season": "2025", + "date": "2025-12-11", + "time": "7:30p", + "home_team": "Pittsburgh Penguins", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "PIT", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251211_lac_hou", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-11T06:00:00Z", + "season": "2025", + "date": "2025-12-11", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "LAC", "home_team_canonical_id": "team_nba_hou", "away_team_canonical_id": "team_nba_lac", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251211_bos_mil", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-11T06:00:00Z", + "season": "2025", + "date": "2025-12-11", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Boston Celtics", + "home_team_abbrev": "MIL", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_nba_mil", "away_team_canonical_id": "team_nba_bos", + "venue": "Fiserv Forum", "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251211_por_nop", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-11T06:00:00Z", + "season": "2025", + "date": "2025-12-11", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Portland Blazers", + "home_team_abbrev": "NOP", + "away_team_abbrev": "POR", "home_team_canonical_id": "team_nba_nop", "away_team_canonical_id": "team_nba_por", + "venue": "Smoothie King Center", "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251211_dal_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-11T06:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251211_stl_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-11T06:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251211_bos_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-11T06:00:00Z", + "season": "2025", + "date": "2025-12-11", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "Boston Bruins", + "home_team_abbrev": "WPG", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_bos", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251211_fla_col", + "canonical_id": "game_nhl_2025_20251211_dal_min", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-11T07:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251211_det_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-11T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251211_den_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-11T08:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251211_buf_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-11T08:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_rogers_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251212_atl_tb", - "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-12-12T01:15:00Z", - "home_team_canonical_id": "team_nfl_tb", - "away_team_canonical_id": "team_nfl_atl", - "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", + "date": "2025-12-11", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "Dallas Stars", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251211_stl_nsh", + "sport": "NHL", + "season": "2025", + "date": "2025-12-11", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "St. Louis Blues", + "home_team_abbrev": "NSH", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251212_atl_tb", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-12T01:15:00Z", + "season": "2025", + "date": "2025-12-11", + "time": "8:15p", + "home_team": "Tampa Bay Buccaneers", + "away_team": "Atlanta Falcons", + "home_team_abbrev": "TB", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nfl_tb", "away_team_canonical_id": "team_nfl_atl", + "venue": "Raymond James Stadium", "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251211_det_edm", + "sport": "NHL", + "season": "2025", + "date": "2025-12-11", + "time": "7p", + "home_team": "Edmonton Oilers", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "EDM", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_det", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251211_fla_col", + "sport": "NHL", + "season": "2025", + "date": "2025-12-11", + "time": "7:30p", + "home_team": "Colorado Avalanche", + "away_team": "Florida Panthers", + "home_team_abbrev": "COL", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251211_den_sac", + "sport": "NBA", + "season": "2025", + "date": "2025-12-11", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Denver Nuggets", + "home_team_abbrev": "SAC", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_den", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251211_buf_van", + "sport": "NHL", + "season": "2025", + "date": "2025-12-11", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "VAN", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251212_chi_cho", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-12T05:00:00Z", + "season": "2025", + "date": "2025-12-12", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Chicago Bulls", + "home_team_abbrev": "CHA", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nba_cho", "away_team_canonical_id": "team_nba_chi", + "venue": "Spectrum Center", "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251212_atl_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-12T05:00:00Z", + "season": "2025", + "date": "2025-12-12", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "DET", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nba_det", "away_team_canonical_id": "team_nba_atl", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251212_cle_was", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-12T05:00:00Z", + "season": "2025", + "date": "2025-12-12", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "WAS", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nba_was", "away_team_canonical_id": "team_nba_cle", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251212_uta_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-12T06:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251212_brk_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-12T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251212_chi_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-12T06:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251212_sea_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-12T07:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251212_ind_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-12T08:00:00Z", + "season": "2025", + "date": "2025-12-12", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Indiana Pacers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "IND", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_ind", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251212_uta_mem", + "sport": "NBA", + "season": "2025", + "date": "2025-12-12", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Utah Jazz", + "home_team_abbrev": "MEM", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_uta", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251212_chi_stl", + "sport": "NHL", + "season": "2025", + "date": "2025-12-12", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "STL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251212_brk_dal", + "sport": "NBA", + "season": "2025", + "date": "2025-12-12", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "DAL", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_brk", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251212_sea_ari", + "sport": "NHL", + "season": "2025", + "date": "2025-12-12", + "time": "7p", + "home_team": "Utah Club", + "away_team": "Seattle Kraken", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251212_min_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-12T08:00:00Z", + "season": "2025", + "date": "2025-12-12", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "GSW", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nba_gsw", "away_team_canonical_id": "team_nba_min", + "venue": "Chase Center", "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251213_nyk_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-13T05:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251213_vgk_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251213_ana_njd", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-13T05:00:00Z", + "season": "2025", + "date": "2025-12-13", + "time": "12:30p", + "home_team": "New Jersey Devils", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "NJ", + "away_team_abbrev": "ANA", "home_team_canonical_id": "team_nhl_njd", "away_team_canonical_id": "team_nhl_ana", + "venue": "Prudential Center", "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251213_tb_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251213_mtl_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251213_car_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251213_sj_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251213_edm_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251213_sas_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-13T06:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251213_det_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-13T06:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251213_fla_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-13T06:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251213_ott_min", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-13T06:00:00Z", + "season": "2025", + "date": "2025-12-13", + "time": "1p", + "home_team": "Minnesota Wild", + "away_team": "Ottawa Senators", + "home_team_abbrev": "MIN", + "away_team_abbrev": "OTT", "home_team_canonical_id": "team_nhl_min", "away_team_canonical_id": "team_nhl_ott", + "venue": "Xcel Energy Center", "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251213_sj_pit", + "sport": "NHL", + "season": "2025", + "date": "2025-12-13", + "time": "3p", + "home_team": "Pittsburgh Penguins", + "away_team": "San Jose Sharks", + "home_team_abbrev": "PIT", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_sj", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251213_tb_nyi", + "sport": "NHL", + "season": "2025", + "date": "2025-12-13", + "time": "3:30p", + "home_team": "New York Islanders", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "NYI", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_tb", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251213_nyk_orl", + "sport": "NBA", + "season": "2025", + "date": "2025-12-13", + "time": "5:30p", + "home_team": "Orlando Magic", + "away_team": "New York Knicks", + "home_team_abbrev": "ORL", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251213_mtl_nyr", + "sport": "NHL", + "season": "2025", + "date": "2025-12-13", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "NYR", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251213_was_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-13T06:00:00Z", + "season": "2025", + "date": "2025-12-13", + "time": "6p", + "home_team": "Winnipeg Jets", + "away_team": "Washington Capitals", + "home_team_abbrev": "WPG", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_was", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251213_edm_tor", + "sport": "NHL", + "season": "2025", + "date": "2025-12-13", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251213_car_phi", + "sport": "NHL", + "season": "2025", + "date": "2025-12-13", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_car", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251213_vgk_cbj", + "sport": "NHL", + "season": "2025", + "date": "2025-12-13", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251213_fla_dal", + "sport": "NHL", + "season": "2025", + "date": "2025-12-13", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Florida Panthers", + "home_team_abbrev": "DAL", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_fla", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251213_det_chi", + "sport": "NHL", + "season": "2025", + "date": "2025-12-13", + "time": "7p", + "home_team": "Chicago Blackhawks", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "CHI", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_det", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251213_sas_okc", + "sport": "NBA", + "season": "2025", + "date": "2025-12-13", + "time": "8p", + "home_team": "Oklahoma City Thunder", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "OKC", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_sas", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251213_nsh_col", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-13T07:00:00Z", + "season": "2025", + "date": "2025-12-13", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "Nashville Predators", + "home_team_abbrev": "COL", + "away_team_abbrev": "NSH", "home_team_canonical_id": "team_nhl_col", "away_team_canonical_id": "team_nhl_nsh", + "venue": "Ball Arena", "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251213_cgy_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-13T08:00:00Z", + "season": "2025", + "date": "2025-12-13", + "time": "7p", + "home_team": "Los Angeles Kings", + "away_team": "Calgary Flames", + "home_team_abbrev": "LA", + "away_team_abbrev": "CGY", "home_team_canonical_id": "team_nhl_la", "away_team_canonical_id": "team_nhl_cgy", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251214_was_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-14T05:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251214_phi_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-14T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251214_mil_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-14T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251214_lal_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-14T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251214_phi_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-14T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251214_edm_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-14T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251214_van_njd", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-14T05:00:00Z", + "season": "2025", + "date": "2025-12-14", + "time": "12:30p", + "home_team": "New Jersey Devils", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "NJ", + "away_team_abbrev": "VAN", "home_team_canonical_id": "team_nhl_njd", "away_team_canonical_id": "team_nhl_van", + "venue": "Prudential Center", "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251214_ari_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-14T05:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251214_cho_cle", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-14T06:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251214_nop_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-14T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251214_sac_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-14T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251214_bos_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-14T06:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251214_gsw_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-14T08:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251214_buf_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-14T08:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251214_cle_chi", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-14T18:00:00Z", - "home_team_canonical_id": "team_nfl_chi", - "away_team_canonical_id": "team_nfl_cle", - "stadium_canonical_id": "stadium_nfl_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251214_bal_cin", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-14T18:00:00Z", - "home_team_canonical_id": "team_nfl_cin", - "away_team_canonical_id": "team_nfl_bal", - "stadium_canonical_id": "stadium_nfl_paycor_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251214_lac_kc", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-14T18:00:00Z", - "home_team_canonical_id": "team_nfl_kc", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251214_buf_ne", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-14T18:00:00Z", - "home_team_canonical_id": "team_nfl_ne", - "away_team_canonical_id": "team_nfl_buf", - "stadium_canonical_id": "stadium_nfl_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251214_was_nyg", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-14T18:00:00Z", - "home_team_canonical_id": "team_nfl_nyg", - "away_team_canonical_id": "team_nfl_was", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251214_lv_phi", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-14T18:00:00Z", - "home_team_canonical_id": "team_nfl_phi", - "away_team_canonical_id": "team_nfl_lv", - "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251214_nyj_jax", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-14T18:00:00Z", - "home_team_canonical_id": "team_nfl_jax", - "away_team_canonical_id": "team_nfl_nyj", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251214_ari_hou", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-14T18:00:00Z", - "home_team_canonical_id": "team_nfl_hou", - "away_team_canonical_id": "team_nfl_ari", - "stadium_canonical_id": "stadium_nfl_nrg_stadium", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251214_was_nyg", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-14T18:00:00Z", + "season": "2025", + "date": "2025-12-14", + "time": "1p", + "home_team": "New York Giants", + "away_team": "Washington Commanders", + "home_team_abbrev": "NYG", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nfl_nyg", "away_team_canonical_id": "team_nfl_was", + "venue": "MetLife Stadium", "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251214_nyj_jax", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-14T18:00:00Z", - "home_team_canonical_id": "team_nfl_jax", - "away_team_canonical_id": "team_nfl_nyj", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251214_lv_phi", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-14T18:00:00Z", - "home_team_canonical_id": "team_nfl_phi", - "away_team_canonical_id": "team_nfl_lv", - "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251214_lac_kc", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-14T18:00:00Z", - "home_team_canonical_id": "team_nfl_kc", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251214_cle_chi", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-14T18:00:00Z", + "season": "2025", + "date": "2025-12-14", + "time": "12p", + "home_team": "Chicago Bears", + "away_team": "Cleveland Browns", + "home_team_abbrev": "CHI", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nfl_chi", "away_team_canonical_id": "team_nfl_cle", + "venue": "Soldier Field", "stadium_canonical_id": "stadium_nfl_soldier_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251214_buf_ne", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-14T18:00:00Z", - "home_team_canonical_id": "team_nfl_ne", - "away_team_canonical_id": "team_nfl_buf", - "stadium_canonical_id": "stadium_nfl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251214_bal_cin", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-14T18:00:00Z", + "season": "2025", + "date": "2025-12-14", + "time": "1p", + "home_team": "Cincinnati Bengals", + "away_team": "Baltimore Ravens", + "home_team_abbrev": "CIN", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_nfl_cin", "away_team_canonical_id": "team_nfl_bal", + "venue": "Paycor Stadium", "stadium_canonical_id": "stadium_nfl_paycor_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251214_lac_kc", + "sport": "NFL", + "season": "2025", + "date": "2025-12-14", + "time": "12p", + "home_team": "Kansas City Chiefs", + "away_team": "Los Angeles Chargers", + "home_team_abbrev": "KC", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nfl_kc", + "away_team_canonical_id": "team_nfl_lac", + "venue": "Arrowhead Stadium", + "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251214_buf_ne", + "sport": "NFL", + "season": "2025", + "date": "2025-12-14", + "time": "1p", + "home_team": "New England Patriots", + "away_team": "Buffalo Bills", + "home_team_abbrev": "NE", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nfl_ne", + "away_team_canonical_id": "team_nfl_buf", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_nfl_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251214_lv_phi", + "sport": "NFL", + "season": "2025", + "date": "2025-12-14", + "time": "1p", + "home_team": "Philadelphia Eagles", + "away_team": "Las Vegas Raiders", + "home_team_abbrev": "PHI", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_nfl_phi", + "away_team_canonical_id": "team_nfl_lv", + "venue": "Lincoln Financial Field", + "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251214_nyj_jax", + "sport": "NFL", + "season": "2025", + "date": "2025-12-14", + "time": "1p", + "home_team": "Jacksonville Jaguars", + "away_team": "New York Jets", + "home_team_abbrev": "JAX", + "away_team_abbrev": "NYJ", + "home_team_canonical_id": "team_nfl_jax", + "away_team_canonical_id": "team_nfl_nyj", + "venue": "EverBank Stadium", + "stadium_canonical_id": "stadium_nfl_everbank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251214_ari_hou", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-14T18:00:00Z", + "season": "2025", + "date": "2025-12-14", + "time": "12p", + "home_team": "Houston Texans", + "away_team": "Arizona Cardinals", + "home_team_abbrev": "HOU", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_nfl_hou", "away_team_canonical_id": "team_nfl_ari", + "venue": "NRG Stadium", "stadium_canonical_id": "stadium_nfl_nrg_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251214_gb_den", - "sport": "NFL", + "canonical_id": "game_nba_2025_20251214_was_ind", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-12-14T21:25:00Z", - "home_team_canonical_id": "team_nfl_den", - "away_team_canonical_id": "team_nfl_gb", - "stadium_canonical_id": "stadium_nfl_empower_field", + "date": "2025-12-14", + "time": "3p", + "home_team": "Indiana Pacers", + "away_team": "Washington Wizards", + "home_team_abbrev": "IND", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_was", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251214_det_lar", - "sport": "NFL", + "canonical_id": "game_nhl_2025_20251214_ari_pit", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-12-14T21:25:00Z", - "home_team_canonical_id": "team_nfl_lar", - "away_team_canonical_id": "team_nfl_det", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "date": "2025-12-14", + "time": "3p", + "home_team": "Pittsburgh Penguins", + "away_team": "Utah Club", + "home_team_abbrev": "PIT", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_ari", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251214_car_no", - "sport": "NFL", + "canonical_id": "game_nba_2025_20251214_cho_cle", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-12-14T21:25:00Z", - "home_team_canonical_id": "team_nfl_no", - "away_team_canonical_id": "team_nfl_car", - "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251214_ten_sf", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-14T21:25:00Z", - "home_team_canonical_id": "team_nfl_sf", - "away_team_canonical_id": "team_nfl_ten", - "stadium_canonical_id": "stadium_nfl_levis_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251214_ind_sea", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-14T21:25:00Z", - "home_team_canonical_id": "team_nfl_sea", - "away_team_canonical_id": "team_nfl_ind", - "stadium_canonical_id": "stadium_nfl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251214_ten_sf", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-14T21:25:00Z", - "home_team_canonical_id": "team_nfl_sf", - "away_team_canonical_id": "team_nfl_ten", - "stadium_canonical_id": "stadium_nfl_levis_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251214_ind_sea", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-14T21:25:00Z", - "home_team_canonical_id": "team_nfl_sea", - "away_team_canonical_id": "team_nfl_ind", - "stadium_canonical_id": "stadium_nfl_lumen_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251214_gb_den", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-14T21:25:00Z", - "home_team_canonical_id": "team_nfl_den", - "away_team_canonical_id": "team_nfl_gb", - "stadium_canonical_id": "stadium_nfl_empower_field_at_mile_high", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251214_det_lar", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-14T21:25:00Z", - "home_team_canonical_id": "team_nfl_lar", - "away_team_canonical_id": "team_nfl_det", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "date": "2025-12-14", + "time": "2:30p", + "home_team": "Cleveland Cavaliers", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_cho", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251214_car_no", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-14T21:25:00Z", + "season": "2025", + "date": "2025-12-14", + "time": "3:25p", + "home_team": "New Orleans Saints", + "away_team": "Carolina Panthers", + "home_team_abbrev": "NO", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nfl_no", "away_team_canonical_id": "team_nfl_car", + "venue": "Caesars Superdome", "stadium_canonical_id": "stadium_nfl_caesars_superdome", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251215_min_dal", + "canonical_id": "game_nfl_2026_20251214_det_lar", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-12-15T01:20:00Z", - "home_team_canonical_id": "team_nfl_dal", - "away_team_canonical_id": "team_nfl_min", - "stadium_canonical_id": "stadium_nfl_att_stadium", + "date": "2025-12-14", + "time": "1:25p", + "home_team": "Los Angeles Rams", + "away_team": "Detroit Lions", + "home_team_abbrev": "LAR", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nfl_lar", + "away_team_canonical_id": "team_nfl_det", + "venue": "SoFi Stadium", + "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251214_ind_sea", + "sport": "NFL", + "season": "2025", + "date": "2025-12-14", + "time": "1:25p", + "home_team": "Seattle Seahawks", + "away_team": "Indianapolis Colts", + "home_team_abbrev": "SEA", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nfl_sea", + "away_team_canonical_id": "team_nfl_ind", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_nfl_lumen_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251214_ten_sf", + "sport": "NFL", + "season": "2025", + "date": "2025-12-14", + "time": "1:25p", + "home_team": "San Francisco 49ers", + "away_team": "Tennessee Titans", + "home_team_abbrev": "SF", + "away_team_abbrev": "TEN", + "home_team_canonical_id": "team_nfl_sf", + "away_team_canonical_id": "team_nfl_ten", + "venue": "Levi's Stadium", + "stadium_canonical_id": "stadium_nfl_levis_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251214_gb_den", + "sport": "NFL", + "season": "2025", + "date": "2025-12-14", + "time": "2:25p", + "home_team": "Denver Broncos", + "away_team": "Green Bay Packers", + "home_team_abbrev": "DEN", + "away_team_abbrev": "GB", + "home_team_canonical_id": "team_nfl_den", + "away_team_canonical_id": "team_nfl_gb", + "venue": "Empower Field at Mile High", + "stadium_canonical_id": "stadium_nfl_empower_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251214_phi_car", + "sport": "NHL", + "season": "2025", + "date": "2025-12-14", + "time": "5p", + "home_team": "Carolina Hurricanes", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "CAR", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_phi", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251214_mil_brk", + "sport": "NBA", + "season": "2025", + "date": "2025-12-14", + "time": "6p", + "home_team": "Brooklyn Nets", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "BKN", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_mil", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251214_phi_atl", + "sport": "NBA", + "season": "2025", + "date": "2025-12-14", + "time": "6p", + "home_team": "Atlanta Hawks", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_phi", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251214_bos_min", + "sport": "NHL", + "season": "2025", + "date": "2025-12-14", + "time": "5p", + "home_team": "Minnesota Wild", + "away_team": "Boston Bruins", + "home_team_abbrev": "MIN", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251214_sac_min", + "sport": "NBA", + "season": "2025", + "date": "2025-12-14", + "time": "6p", + "home_team": "Minnesota Timberwolves", + "away_team": "Sacramento Kings", + "home_team_abbrev": "MIN", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_sac", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251214_nop_chi", + "sport": "NBA", + "season": "2025", + "date": "2025-12-14", + "time": "6p", + "home_team": "Chicago Bulls", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "CHI", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_nop", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251214_edm_mtl", + "sport": "NHL", + "season": "2025", + "date": "2025-12-14", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "MTL", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251214_lal_phx", + "sport": "NBA", + "season": "2025", + "date": "2025-12-14", + "time": "8p", + "home_team": "Phoenix Suns", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "PHX", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_lal", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251214_buf_sea", + "sport": "NHL", + "season": "2025", + "date": "2025-12-14", + "time": "5p", + "home_team": "Seattle Kraken", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "SEA", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251215_min_dal", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-15T01:20:00Z", + "season": "2025", + "date": "2025-12-14", + "time": "7:20p", + "home_team": "Dallas Cowboys", + "away_team": "Minnesota Vikings", + "home_team_abbrev": "DAL", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nfl_dal", "away_team_canonical_id": "team_nfl_min", + "venue": "AT&T Stadium", "stadium_canonical_id": "stadium_nfl_att_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251214_gsw_por", + "sport": "NBA", + "season": "2025", + "date": "2025-12-14", + "time": "6p", + "home_team": "Portland Blazers", + "away_team": "Golden State Warriors", + "home_team_abbrev": "POR", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251215_det_bos", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-15T05:00:00Z", + "season": "2025", + "date": "2025-12-15", + "time": "7p", + "home_team": "Boston Celtics", + "away_team": "Detroit Pistons", + "home_team_abbrev": "BOS", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nba_bos", "away_team_canonical_id": "team_nba_det", + "venue": "TD Garden", "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251215_tor_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-15T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251215_ana_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-15T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251215_fla_tb", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-15T05:00:00Z", + "season": "2025", + "date": "2025-12-15", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Florida Panthers", + "home_team_abbrev": "TB", + "away_team_abbrev": "FLA", "home_team_canonical_id": "team_nhl_tb", "away_team_canonical_id": "team_nhl_fla", + "venue": "Amalie Arena", "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251215_la_dal", + "canonical_id": "game_nhl_2025_20251215_ana_nyr", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-15T06:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "season": "2025", + "date": "2025-12-15", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "NYR", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251215_nsh_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-15T06:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_enterprise_center", + "canonical_id": "game_nba_2025_20251215_tor_mia", + "sport": "NBA", + "season": "2025", + "date": "2025-12-15", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Toronto Raptors", + "home_team_abbrev": "MIA", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_tor", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251215_ott_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-15T06:00:00Z", + "season": "2025", + "date": "2025-12-15", + "time": "6:30p", + "home_team": "Winnipeg Jets", + "away_team": "Ottawa Senators", + "home_team_abbrev": "WPG", + "away_team_abbrev": "OTT", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_ott", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251215_dal_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-15T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251215_hou_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-15T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251215_mem_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-15T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251216_mia_pit", - "sport": "NFL", + "canonical_id": "game_nhl_2025_20251215_la_dal", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-12-16T01:15:00Z", - "home_team_canonical_id": "team_nfl_pit", - "away_team_canonical_id": "team_nfl_mia", - "stadium_canonical_id": "stadium_nfl_acrisure_stadium", + "date": "2025-12-15", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "DAL", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_la", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251215_nsh_stl", + "sport": "NHL", + "season": "2025", + "date": "2025-12-15", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Nashville Predators", + "home_team_abbrev": "STL", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251216_mia_pit", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-16T01:15:00Z", + "season": "2025", + "date": "2025-12-15", + "time": "8:15p", + "home_team": "Pittsburgh Steelers", + "away_team": "Miami Dolphins", + "home_team_abbrev": "PIT", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_nfl_pit", "away_team_canonical_id": "team_nfl_mia", + "venue": "Acrisure Stadium", "stadium_canonical_id": "stadium_nfl_acrisure_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251216_sas_nyk", + "canonical_id": "game_nba_2025_20251215_dal_uta", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-16T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_madison_square_garden", + "season": "2025", + "date": "2025-12-15", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "UTA", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_dal", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251215_hou_den", + "sport": "NBA", + "season": "2025", + "date": "2025-12-15", + "time": "7:30p", + "home_team": "Denver Nuggets", + "away_team": "Houston Rockets", + "home_team_abbrev": "DEN", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_hou", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251215_mem_lac", + "sport": "NBA", + "season": "2025", + "date": "2025-12-15", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "LAC", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_mem", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251216_ari_bos", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-16T05:00:00Z", + "season": "2025", + "date": "2025-12-16", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Utah Club", + "home_team_abbrev": "BOS", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_nhl_bos", "away_team_canonical_id": "team_nhl_ari", + "venue": "TD Garden", "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251216_ana_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-16T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251216_nyi_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-16T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251216_phi_mtl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-16T05:00:00Z", + "season": "2025", + "date": "2025-12-16", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "MTL", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nhl_mtl", "away_team_canonical_id": "team_nhl_phi", + "venue": "Bell Centre", "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251216_van_nyr", + "canonical_id": "game_nhl_2025_20251216_ana_cbj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-16T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251216_edm_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-16T05:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "season": "2025", + "date": "2025-12-16", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251216_chi_tor", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-16T05:00:00Z", + "season": "2025", + "date": "2025-12-16", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nhl_tor", "away_team_canonical_id": "team_nhl_chi", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251216_van_nyr", + "sport": "NHL", + "season": "2025", + "date": "2025-12-16", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "NYR", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_van", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251216_nyi_det", + "sport": "NHL", + "season": "2025", + "date": "2025-12-16", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "New York Islanders", + "home_team_abbrev": "DET", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251216_edm_pit", + "sport": "NHL", + "season": "2025", + "date": "2025-12-16", + "time": "7:30p", + "home_team": "Pittsburgh Penguins", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_edm", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251216_was_min", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-16T06:00:00Z", + "season": "2025", + "date": "2025-12-16", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "Washington Capitals", + "home_team_abbrev": "MIN", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nhl_min", "away_team_canonical_id": "team_nhl_was", + "venue": "Xcel Energy Center", "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251216_sas_nyk", + "sport": "NBA", + "season": "2025", + "date": "2025-12-16", + "time": "8:30p", + "home_team": "New York Knicks", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "NYK", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_sas", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251216_col_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-16T08:00:00Z", + "season": "2025", + "date": "2025-12-16", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "SEA", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_nhl_sea", "away_team_canonical_id": "team_nhl_col", + "venue": "Climate Pledge Arena", "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251216_cgy_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-16T08:00:00Z", + "season": "2025", + "date": "2025-12-16", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Calgary Flames", + "home_team_abbrev": "SJ", + "away_team_abbrev": "CGY", "home_team_canonical_id": "team_nhl_sj", "away_team_canonical_id": "team_nhl_cgy", + "venue": "SAP Center", "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251217_ari_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-17T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251217_la_fla", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-17T05:00:00Z", + "season": "2025", + "date": "2025-12-17", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "FLA", + "away_team_abbrev": "LA", "home_team_canonical_id": "team_nhl_fla", "away_team_canonical_id": "team_nhl_la", + "venue": "Amerant Bank Arena", "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251217_cle_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-17T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_united_center", + "canonical_id": "game_nhl_2025_20251217_ari_det", + "sport": "NHL", + "season": "2025", + "date": "2025-12-17", + "time": "7:30p", + "home_team": "Detroit Red Wings", + "away_team": "Utah Club", + "home_team_abbrev": "DET", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251217_mem_min", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-17T06:00:00Z", + "season": "2025", + "date": "2025-12-17", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "MIN", + "away_team_abbrev": "MEM", "home_team_canonical_id": "team_nba_min", "away_team_canonical_id": "team_nba_mem", + "venue": "Target Center", "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251217_cle_chi", + "sport": "NBA", + "season": "2025", + "date": "2025-12-17", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "CHI", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_cle", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251217_car_nsh", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-17T06:00:00Z", + "season": "2025", + "date": "2025-12-17", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "NSH", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nhl_nsh", "away_team_canonical_id": "team_nhl_car", + "venue": "Bridgestone Arena", "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251217_wpg_stl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-17T06:00:00Z", + "season": "2025", + "date": "2025-12-17", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "STL", + "away_team_abbrev": "WPG", "home_team_canonical_id": "team_nhl_stl", "away_team_canonical_id": "team_nhl_wpg", + "venue": "Enterprise Center", "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251217_njd_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-17T08:00:00Z", + "season": "2025", + "date": "2025-12-17", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "New Jersey Devils", + "home_team_abbrev": "VGK", + "away_team_abbrev": "NJ", "home_team_canonical_id": "team_nhl_vgk", "away_team_canonical_id": "team_nhl_njd", + "venue": "T-Mobile Arena", "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251218_atl_cho", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T05:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251218_nyk_ind", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T05:00:00Z", + "season": "2025", + "date": "2025-12-18", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "New York Knicks", + "home_team_abbrev": "IND", + "away_team_abbrev": "NYK", "home_team_canonical_id": "team_nba_ind", "away_team_canonical_id": "team_nba_nyk", + "venue": "Gainbridge Fieldhouse", "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251218_mia_brk", + "canonical_id": "game_nba_2025_20251218_atl_cho", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251218_gsw_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251218_edm_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251218_phi_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T05:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251218_min_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251218_chi_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251218_pit_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T05:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "season": "2025", + "date": "2025-12-18", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "CHA", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_atl", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251218_la_tb", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T05:00:00Z", + "season": "2025", + "date": "2025-12-18", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "TB", + "away_team_abbrev": "LA", "home_team_canonical_id": "team_nhl_tb", "away_team_canonical_id": "team_nhl_la", + "venue": "Amalie Arena", "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251218_pit_ott", + "sport": "NHL", + "season": "2025", + "date": "2025-12-18", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "OTT", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_pit", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251218_tor_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T05:00:00Z", + "season": "2025", + "date": "2025-12-18", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "WAS", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_nhl_was", "away_team_canonical_id": "team_nhl_tor", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251218_chi_mtl", + "sport": "NHL", + "season": "2025", + "date": "2025-12-18", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "MTL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251218_edm_bos", + "sport": "NHL", + "season": "2025", + "date": "2025-12-18", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_edm", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251218_min_cbj", + "sport": "NHL", + "season": "2025", + "date": "2025-12-18", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Minnesota Wild", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_min", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251218_mia_brk", + "sport": "NBA", + "season": "2025", + "date": "2025-12-18", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Miami Heat", + "home_team_abbrev": "BKN", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_mia", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251218_phi_buf", + "sport": "NHL", + "season": "2025", + "date": "2025-12-18", + "time": "7:30p", + "home_team": "Buffalo Sabres", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "BUF", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_phi", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251218_tor_mil", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T06:00:00Z", + "season": "2025", + "date": "2025-12-18", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Toronto Raptors", + "home_team_abbrev": "MIL", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_nba_mil", "away_team_canonical_id": "team_nba_tor", + "venue": "Fiserv Forum", "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251218_hou_nop", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T06:00:00Z", + "season": "2025", + "date": "2025-12-18", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Houston Rockets", + "home_team_abbrev": "NOP", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nba_nop", "away_team_canonical_id": "team_nba_hou", + "venue": "Smoothie King Center", "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251218_lac_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T06:00:00Z", + "season": "2025", + "date": "2025-12-18", + "time": "7p", + "home_team": "Oklahoma City Thunder", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "OKC", + "away_team_abbrev": "LAC", "home_team_canonical_id": "team_nba_okc", "away_team_canonical_id": "team_nba_lac", + "venue": "Paycom Center", "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251218_was_sas", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T06:00:00Z", + "season": "2025", + "date": "2025-12-18", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Washington Wizards", + "home_team_abbrev": "SAS", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nba_sas", "away_team_canonical_id": "team_nba_was", + "venue": "Frost Bank Center", "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251218_det_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251218_nyr_stl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T06:00:00Z", + "season": "2025", + "date": "2025-12-18", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "New York Rangers", + "home_team_abbrev": "STL", + "away_team_abbrev": "NYR", "home_team_canonical_id": "team_nhl_stl", "away_team_canonical_id": "team_nhl_nyr", + "venue": "Enterprise Center", "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251218_orl_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251218_lal_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251218_sea_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251218_sac_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T08:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251218_dal_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-18T08:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251219_lar_sea", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-19T01:15:00Z", - "home_team_canonical_id": "team_nfl_sea", - "away_team_canonical_id": "team_nfl_lar", - "stadium_canonical_id": "stadium_nfl_lumen_field", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251219_lar_sea", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-19T01:15:00Z", + "season": "2025", + "date": "2025-12-18", + "time": "5:15p", + "home_team": "Seattle Seahawks", + "away_team": "Los Angeles Rams", + "home_team_abbrev": "SEA", + "away_team_abbrev": "LAR", "home_team_canonical_id": "team_nfl_sea", "away_team_canonical_id": "team_nfl_lar", + "venue": "Lumen Field", "stadium_canonical_id": "stadium_nfl_lumen_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251219_mia_bos", + "canonical_id": "game_nba_2025_20251218_det_dal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-19T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_td_garden", + "season": "2025", + "date": "2025-12-18", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Detroit Pistons", + "home_team_abbrev": "DAL", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_det", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251218_orl_den", + "sport": "NBA", + "season": "2025", + "date": "2025-12-18", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Orlando Magic", + "home_team_abbrev": "DEN", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_orl", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251218_lal_uta", + "sport": "NBA", + "season": "2025", + "date": "2025-12-18", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "UTA", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_lal", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251218_gsw_phx", + "sport": "NBA", + "season": "2025", + "date": "2025-12-18", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "Golden State Warriors", + "home_team_abbrev": "PHX", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251218_sea_cgy", + "sport": "NHL", + "season": "2025", + "date": "2025-12-18", + "time": "7p", + "home_team": "Calgary Flames", + "away_team": "Seattle Kraken", + "home_team_abbrev": "CGY", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251218_sac_por", + "sport": "NBA", + "season": "2025", + "date": "2025-12-18", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Sacramento Kings", + "home_team_abbrev": "POR", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_sac", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251218_dal_sj", + "sport": "NHL", + "season": "2025", + "date": "2025-12-18", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Dallas Stars", + "home_team_abbrev": "SJ", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_dal", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251219_phi_nyk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-19T05:00:00Z", + "season": "2025", + "date": "2025-12-19", + "time": "7p", + "home_team": "New York Knicks", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "NYK", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nba_nyk", "away_team_canonical_id": "team_nba_phi", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251219_sas_atl", + "canonical_id": "game_nba_2025_20251219_mia_bos", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-19T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251219_car_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-19T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "season": "2025", + "date": "2025-12-19", + "time": "7p", + "home_team": "Boston Celtics", + "away_team": "Miami Heat", + "home_team_abbrev": "BOS", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_mia", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251219_van_nyi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-19T05:00:00Z", + "season": "2025", + "date": "2025-12-19", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "NYI", + "away_team_abbrev": "VAN", "home_team_canonical_id": "team_nhl_nyi", "away_team_canonical_id": "team_nhl_van", + "venue": "UBS Arena", "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251219_car_fla", + "sport": "NHL", + "season": "2025", + "date": "2025-12-19", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "FLA", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_car", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251219_chi_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-19T06:00:00Z", + "season": "2025", + "date": "2025-12-19", + "time": "6:30p", + "home_team": "Cleveland Cavaliers", + "away_team": "Chicago Bulls", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nba_cle", "away_team_canonical_id": "team_nba_chi", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251219_okc_min", + "canonical_id": "game_nba_2025_20251219_sas_atl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-19T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_target_center", + "season": "2025", + "date": "2025-12-19", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "ATL", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_sas", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251219_wpg_col", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-19T07:00:00Z", + "season": "2025", + "date": "2025-12-19", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "COL", + "away_team_abbrev": "WPG", "home_team_canonical_id": "team_nhl_col", "away_team_canonical_id": "team_nhl_wpg", + "venue": "Ball Arena", "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251219_njd_ari", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-19T07:00:00Z", + "season": "2025", + "date": "2025-12-19", + "time": "7p", + "home_team": "Utah Club", + "away_team": "New Jersey Devils", + "home_team_abbrev": "ARI", + "away_team_abbrev": "NJ", "home_team_canonical_id": "team_nhl_ari", "away_team_canonical_id": "team_nhl_njd", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251219_okc_min", + "sport": "NBA", + "season": "2025", + "date": "2025-12-19", + "time": "8:30p", + "home_team": "Minnesota Timberwolves", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "MIN", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_okc", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251219_dal_ana", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-19T08:00:00Z", + "season": "2025", + "date": "2025-12-19", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Dallas Stars", + "home_team_abbrev": "ANA", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nhl_ana", "away_team_canonical_id": "team_nhl_dal", + "venue": "Honda Center", "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251220_bos_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251220_cho_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T05:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251220_van_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251220_nyi_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T05:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251220_stl_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251220_pit_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251220_phi_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251220_chi_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T05:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251220_car_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T05:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251220_det_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T05:00:00Z", + "season": "2025", + "date": "2025-12-20", + "time": "12:30p", + "home_team": "Washington Capitals", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "WAS", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nhl_was", "away_team_canonical_id": "team_nhl_det", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251220_ind_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T06:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "canonical_id": "game_nhl_2025_20251220_phi_nyr", + "sport": "NHL", + "season": "2025", + "date": "2025-12-20", + "time": "12:30p", + "home_team": "New York Rangers", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "NYR", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_phi", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251220_was_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T06:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_fedexforum", + "canonical_id": "game_nhl_2025_20251220_chi_ott", + "sport": "NHL", + "season": "2025", + "date": "2025-12-20", + "time": "3p", + "home_team": "Ottawa Senators", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "OTT", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251220_edm_min", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T06:00:00Z", + "season": "2025", + "date": "2025-12-20", + "time": "2p", + "home_team": "Minnesota Wild", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "EDM", "home_team_canonical_id": "team_nhl_min", "away_team_canonical_id": "team_nhl_edm", + "venue": "Xcel Energy Center", "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251220_tor_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T06:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251220_hou_den", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T07:00:00Z", + "season": "2025", + "date": "2025-12-20", + "time": "3p", + "home_team": "Denver Nuggets", + "away_team": "Houston Rockets", + "home_team_abbrev": "DEN", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nba_den", "away_team_canonical_id": "team_nba_hou", + "venue": "Ball Arena", "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251220_orl_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251220_vgk_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251220_dal_phi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T08:00:00Z", - "home_team_canonical_id": "team_nba_phi", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251220_phx_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T08:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251220_por_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T08:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251220_lal_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251220_cbj_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T08:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251220_sea_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-20T08:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251220_phi_was", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-20T22:00:00Z", - "home_team_canonical_id": "team_nfl_was", - "away_team_canonical_id": "team_nfl_phi", - "stadium_canonical_id": "stadium_nfl_northwest_stadium", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251220_phi_was", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-20T22:00:00Z", + "season": "2025", + "date": "2025-12-20", + "time": "5p", + "home_team": "Washington Commanders", + "away_team": "Philadelphia Eagles", + "home_team_abbrev": "WAS", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nfl_was", "away_team_canonical_id": "team_nfl_phi", + "venue": "Northwest Stadium", "stadium_canonical_id": "stadium_nfl_northwest_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251221_gb_chi", - "sport": "NFL", + "canonical_id": "game_nhl_2025_20251220_nyi_buf", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-12-21T01:20:00Z", - "home_team_canonical_id": "team_nfl_chi", - "away_team_canonical_id": "team_nfl_gb", - "stadium_canonical_id": "stadium_nfl_soldier_field", + "date": "2025-12-20", + "time": "5p", + "home_team": "Buffalo Sabres", + "away_team": "New York Islanders", + "home_team_abbrev": "BUF", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251220_stl_fla", + "sport": "NHL", + "season": "2025", + "date": "2025-12-20", + "time": "6p", + "home_team": "Florida Panthers", + "away_team": "St. Louis Blues", + "home_team_abbrev": "FLA", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251220_ind_nop", + "sport": "NBA", + "season": "2025", + "date": "2025-12-20", + "time": "6p", + "home_team": "New Orleans Pelicans", + "away_team": "Indiana Pacers", + "home_team_abbrev": "NOP", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_ind", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251220_bos_tor", + "sport": "NBA", + "season": "2025", + "date": "2025-12-20", + "time": "7p", + "home_team": "Toronto Raptors", + "away_team": "Boston Celtics", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_bos", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251220_dal_phi", + "sport": "NBA", + "season": "2025", + "date": "2025-12-20", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "PHI", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_dal", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251220_van_bos", + "sport": "NHL", + "season": "2025", + "date": "2025-12-20", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "BOS", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_van", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251220_car_tb", + "sport": "NHL", + "season": "2025", + "date": "2025-12-20", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "TB", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_car", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251220_tor_nsh", + "sport": "NHL", + "season": "2025", + "date": "2025-12-20", + "time": "6p", + "home_team": "Nashville Predators", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "NSH", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251220_pit_mtl", + "sport": "NHL", + "season": "2025", + "date": "2025-12-20", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "MTL", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_pit", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251220_cho_det", + "sport": "NBA", + "season": "2025", + "date": "2025-12-20", + "time": "7:30p", + "home_team": "Detroit Pistons", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "DET", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_cho", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251220_was_mem", + "sport": "NBA", + "season": "2025", + "date": "2025-12-20", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Washington Wizards", + "home_team_abbrev": "MEM", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_was", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251221_gb_chi", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-21T01:20:00Z", + "season": "2025", + "date": "2025-12-20", + "time": "7:20p", + "home_team": "Chicago Bears", + "away_team": "Green Bay Packers", + "home_team_abbrev": "CHI", + "away_team_abbrev": "GB", "home_team_canonical_id": "team_nfl_chi", "away_team_canonical_id": "team_nfl_gb", + "venue": "Soldier Field", "stadium_canonical_id": "stadium_nfl_soldier_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251221_chi_atl", + "canonical_id": "game_nba_2025_20251220_phx_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-21T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_state_farm_arena", + "season": "2025", + "date": "2025-12-20", + "time": "5:30p", + "home_team": "Golden State Warriors", + "away_team": "Phoenix Suns", + "home_team_abbrev": "GSW", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_phx", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251221_tor_brk", + "canonical_id": "game_nba_2025_20251220_orl_uta", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-21T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_barclays_center", + "season": "2025", + "date": "2025-12-20", + "time": "7:30p", + "home_team": "Utah Jazz", + "away_team": "Orlando Magic", + "home_team_abbrev": "UTA", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_orl", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251221_mia_nyk", + "canonical_id": "game_nba_2025_20251220_por_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-21T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251221_sas_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-21T05:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251221_ott_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-21T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251221_was_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-21T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251221_buf_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-21T05:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251221_mtl_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-21T05:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251221_mil_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-21T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251221_tor_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-21T06:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251221_col_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-21T06:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251221_nyr_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-21T06:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251221_vgk_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-21T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251221_wpg_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-21T07:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251221_hou_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-21T08:00:00Z", + "season": "2025", + "date": "2025-12-20", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Portland Blazers", + "home_team_abbrev": "SAC", + "away_team_abbrev": "POR", "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_por", + "venue": "Golden 1 Center", "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251221_buf_cle", - "sport": "NFL", + "canonical_id": "game_nhl_2025_20251220_vgk_cgy", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-12-21T18:00:00Z", - "home_team_canonical_id": "team_nfl_cle", - "away_team_canonical_id": "team_nfl_buf", - "stadium_canonical_id": "stadium_nfl_huntington_bank_field", + "date": "2025-12-20", + "time": "8p", + "home_team": "Calgary Flames", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "CGY", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251221_lac_dal", - "sport": "NFL", + "canonical_id": "game_nhl_2025_20251220_sea_sj", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-12-21T18:00:00Z", - "home_team_canonical_id": "team_nfl_dal", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "stadium_nfl_att_stadium", + "date": "2025-12-20", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Seattle Kraken", + "home_team_abbrev": "SJ", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_sea", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251221_kc_ten", - "sport": "NFL", + "canonical_id": "game_nhl_2025_20251220_cbj_ana", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-12-21T18:00:00Z", - "home_team_canonical_id": "team_nfl_ten", - "away_team_canonical_id": "team_nfl_kc", - "stadium_canonical_id": "stadium_nfl_nissan_stadium", + "date": "2025-12-20", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "ANA", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251221_cin_mia", - "sport": "NFL", + "canonical_id": "game_nba_2025_20251220_lal_lac", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-12-21T18:00:00Z", - "home_team_canonical_id": "team_nfl_mia", - "away_team_canonical_id": "team_nfl_cin", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251221_nyj_no", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-21T18:00:00Z", - "home_team_canonical_id": "team_nfl_no", - "away_team_canonical_id": "team_nfl_nyj", - "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251221_min_nyg", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-21T18:00:00Z", - "home_team_canonical_id": "team_nfl_nyg", - "away_team_canonical_id": "team_nfl_min", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251221_tb_car", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-21T18:00:00Z", - "home_team_canonical_id": "team_nfl_car", - "away_team_canonical_id": "team_nfl_tb", - "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251221_tb_car", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-21T18:00:00Z", - "home_team_canonical_id": "team_nfl_car", - "away_team_canonical_id": "team_nfl_tb", - "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251221_nyj_no", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-21T18:00:00Z", - "home_team_canonical_id": "team_nfl_no", - "away_team_canonical_id": "team_nfl_nyj", - "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251221_min_nyg", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-21T18:00:00Z", - "home_team_canonical_id": "team_nfl_nyg", - "away_team_canonical_id": "team_nfl_min", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251221_lac_dal", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-21T18:00:00Z", - "home_team_canonical_id": "team_nfl_dal", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "stadium_nfl_att_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251221_kc_ten", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-21T18:00:00Z", - "home_team_canonical_id": "team_nfl_ten", - "away_team_canonical_id": "team_nfl_kc", - "stadium_canonical_id": "stadium_nfl_nissan_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251221_cin_mia", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-21T18:00:00Z", - "home_team_canonical_id": "team_nfl_mia", - "away_team_canonical_id": "team_nfl_cin", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", + "date": "2025-12-20", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "LAC", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_lal", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251221_buf_cle", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-21T18:00:00Z", + "season": "2025", + "date": "2025-12-21", + "time": "1p", + "home_team": "Cleveland Browns", + "away_team": "Buffalo Bills", + "home_team_abbrev": "CLE", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nfl_cle", "away_team_canonical_id": "team_nfl_buf", + "venue": "Huntington Bank Field", "stadium_canonical_id": "stadium_nfl_huntington_bank_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251221_jax_den", + "canonical_id": "game_nfl_2026_20251221_tb_car", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-12-21T21:05:00Z", - "home_team_canonical_id": "team_nfl_den", - "away_team_canonical_id": "team_nfl_jax", - "stadium_canonical_id": "stadium_nfl_empower_field", + "date": "2025-12-21", + "time": "1p", + "home_team": "Carolina Panthers", + "away_team": "Tampa Bay Buccaneers", + "home_team_abbrev": "CAR", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nfl_car", + "away_team_canonical_id": "team_nfl_tb", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251221_atl_ari", + "canonical_id": "game_nfl_2026_20251221_min_nyg", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-12-21T21:05:00Z", - "home_team_canonical_id": "team_nfl_ari", - "away_team_canonical_id": "team_nfl_atl", - "stadium_canonical_id": "stadium_nfl_state_farm_stadium", + "date": "2025-12-21", + "time": "1p", + "home_team": "New York Giants", + "away_team": "Minnesota Vikings", + "home_team_abbrev": "NYG", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nfl_nyg", + "away_team_canonical_id": "team_nfl_min", + "venue": "MetLife Stadium", + "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2026_20251221_jax_den", + "canonical_id": "game_nfl_2026_20251221_nyj_no", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-21T21:05:00Z", - "home_team_canonical_id": "team_nfl_den", - "away_team_canonical_id": "team_nfl_jax", - "stadium_canonical_id": "stadium_nfl_empower_field_at_mile_high", + "season": "2025", + "date": "2025-12-21", + "time": "12p", + "home_team": "New Orleans Saints", + "away_team": "New York Jets", + "home_team_abbrev": "NO", + "away_team_abbrev": "NYJ", + "home_team_canonical_id": "team_nfl_no", + "away_team_canonical_id": "team_nfl_nyj", + "venue": "Caesars Superdome", + "stadium_canonical_id": "stadium_nfl_caesars_superdome", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251221_cin_mia", + "sport": "NFL", + "season": "2025", + "date": "2025-12-21", + "time": "1p", + "home_team": "Miami Dolphins", + "away_team": "Cincinnati Bengals", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_nfl_mia", + "away_team_canonical_id": "team_nfl_cin", + "venue": "Hard Rock Stadium", + "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251221_kc_ten", + "sport": "NFL", + "season": "2025", + "date": "2025-12-21", + "time": "12p", + "home_team": "Tennessee Titans", + "away_team": "Kansas City Chiefs", + "home_team_abbrev": "TEN", + "away_team_abbrev": "KC", + "home_team_canonical_id": "team_nfl_ten", + "away_team_canonical_id": "team_nfl_kc", + "venue": "Nissan Stadium", + "stadium_canonical_id": "stadium_nfl_nissan_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251221_lac_dal", + "sport": "NFL", + "season": "2025", + "date": "2025-12-21", + "time": "12p", + "home_team": "Dallas Cowboys", + "away_team": "Los Angeles Chargers", + "home_team_abbrev": "DAL", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nfl_dal", + "away_team_canonical_id": "team_nfl_lac", + "venue": "AT&T Stadium", + "stadium_canonical_id": "stadium_nfl_att_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251221_was_det", + "sport": "NHL", + "season": "2025", + "date": "2025-12-21", + "time": "1p", + "home_team": "Detroit Red Wings", + "away_team": "Washington Capitals", + "home_team_abbrev": "DET", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_was", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251221_chi_atl", + "sport": "NBA", + "season": "2025", + "date": "2025-12-21", + "time": "3:30p", + "home_team": "Atlanta Hawks", + "away_team": "Chicago Bulls", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_chi", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251221_atl_ari", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-21T21:05:00Z", + "season": "2025", + "date": "2025-12-21", + "time": "2:05p", + "home_team": "Arizona Cardinals", + "away_team": "Atlanta Falcons", + "home_team_abbrev": "ARI", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nfl_ari", "away_team_canonical_id": "team_nfl_atl", + "venue": "State Farm Stadium", "stadium_canonical_id": "stadium_nfl_state_farm_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251221_pit_det", + "canonical_id": "game_nfl_2026_20251221_jax_den", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-12-21T21:25:00Z", - "home_team_canonical_id": "team_nfl_det", - "away_team_canonical_id": "team_nfl_pit", - "stadium_canonical_id": "stadium_nfl_ford_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251221_lv_hou", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-21T21:25:00Z", - "home_team_canonical_id": "team_nfl_hou", - "away_team_canonical_id": "team_nfl_lv", - "stadium_canonical_id": "stadium_nfl_nrg_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251221_pit_det", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-21T21:25:00Z", - "home_team_canonical_id": "team_nfl_det", - "away_team_canonical_id": "team_nfl_pit", - "stadium_canonical_id": "stadium_nfl_ford_field", + "date": "2025-12-21", + "time": "2:05p", + "home_team": "Denver Broncos", + "away_team": "Jacksonville Jaguars", + "home_team_abbrev": "DEN", + "away_team_abbrev": "JAX", + "home_team_canonical_id": "team_nfl_den", + "away_team_canonical_id": "team_nfl_jax", + "venue": "Empower Field at Mile High", + "stadium_canonical_id": "stadium_nfl_empower_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251221_lv_hou", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-21T21:25:00Z", + "season": "2025", + "date": "2025-12-21", + "time": "3:25p", + "home_team": "Houston Texans", + "away_team": "Las Vegas Raiders", + "home_team_abbrev": "HOU", + "away_team_abbrev": "LV", "home_team_canonical_id": "team_nfl_hou", "away_team_canonical_id": "team_nfl_lv", + "venue": "NRG Stadium", "stadium_canonical_id": "stadium_nfl_nrg_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251222_ne_bal", + "canonical_id": "game_nfl_2026_20251221_pit_det", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-12-22T01:20:00Z", - "home_team_canonical_id": "team_nfl_bal", - "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", + "date": "2025-12-21", + "time": "4:25p", + "home_team": "Detroit Lions", + "away_team": "Pittsburgh Steelers", + "home_team_abbrev": "DET", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nfl_det", + "away_team_canonical_id": "team_nfl_pit", + "venue": "Ford Field", + "stadium_canonical_id": "stadium_nfl_ford_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251221_mia_nyk", + "sport": "NBA", + "season": "2025", + "date": "2025-12-21", + "time": "6p", + "home_team": "New York Knicks", + "away_team": "Miami Heat", + "home_team_abbrev": "NYK", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_mia", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251221_tor_brk", + "sport": "NBA", + "season": "2025", + "date": "2025-12-21", + "time": "6p", + "home_team": "Brooklyn Nets", + "away_team": "Toronto Raptors", + "home_team_abbrev": "BKN", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_tor", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251221_col_min", + "sport": "NHL", + "season": "2025", + "date": "2025-12-21", + "time": "5p", + "home_team": "Minnesota Wild", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "MIN", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_col", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251221_sas_was", + "sport": "NBA", + "season": "2025", + "date": "2025-12-21", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "WAS", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_sas", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251221_mil_min", + "sport": "NBA", + "season": "2025", + "date": "2025-12-21", + "time": "6p", + "home_team": "Minnesota Timberwolves", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "MIN", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_mil", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251221_ott_bos", + "sport": "NHL", + "season": "2025", + "date": "2025-12-21", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Ottawa Senators", + "home_team_abbrev": "BOS", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_ott", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251221_wpg_ari", + "sport": "NHL", + "season": "2025", + "date": "2025-12-21", + "time": "5p", + "home_team": "Utah Club", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "ARI", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251221_mtl_pit", + "sport": "NHL", + "season": "2025", + "date": "2025-12-21", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "PIT", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251221_nyr_nsh", + "sport": "NHL", + "season": "2025", + "date": "2025-12-21", + "time": "6p", + "home_team": "Nashville Predators", + "away_team": "New York Rangers", + "home_team_abbrev": "NSH", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251221_buf_njd", + "sport": "NHL", + "season": "2025", + "date": "2025-12-21", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "NJ", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251221_tor_dal", + "sport": "NHL", + "season": "2025", + "date": "2025-12-21", + "time": "6p", + "home_team": "Dallas Stars", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "DAL", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_tor", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251221_vgk_edm", + "sport": "NHL", + "season": "2025", + "date": "2025-12-21", + "time": "6p", + "home_team": "Edmonton Oilers", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "EDM", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251222_ne_bal", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-22T01:20:00Z", + "season": "2025", + "date": "2025-12-21", + "time": "8:20p", + "home_team": "Baltimore Ravens", + "away_team": "New England Patriots", + "home_team_abbrev": "BAL", + "away_team_abbrev": "NE", "home_team_canonical_id": "team_nfl_bal", "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_mt_bank_stadium", + "venue": "M&T Bank Stadium", + "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251222_ind_bos", + "canonical_id": "game_nba_2025_20251221_hou_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-22T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251222_van_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-22T05:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251222_stl_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-22T05:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_amalie_arena", + "season": "2025", + "date": "2025-12-21", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Houston Rockets", + "home_team_abbrev": "SAC", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_hou", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251222_cho_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-22T06:00:00Z", + "season": "2025", + "date": "2025-12-22", + "time": "6p", + "home_team": "Cleveland Cavaliers", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CHA", "home_team_canonical_id": "team_nba_cle", "away_team_canonical_id": "team_nba_cho", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251222_stl_tb", + "sport": "NHL", + "season": "2025", + "date": "2025-12-22", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "St. Louis Blues", + "home_team_abbrev": "TB", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251222_ind_bos", + "sport": "NBA", + "season": "2025", + "date": "2025-12-22", + "time": "7:30p", + "home_team": "Boston Celtics", + "away_team": "Indiana Pacers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_ind", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251222_van_phi", + "sport": "NHL", + "season": "2025", + "date": "2025-12-22", + "time": "7:30p", + "home_team": "Philadelphia Flyers", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "PHI", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_van", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251222_dal_nop", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-22T06:00:00Z", + "season": "2025", + "date": "2025-12-22", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "NOP", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nba_nop", "away_team_canonical_id": "team_nba_dal", + "venue": "Smoothie King Center", "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251222_mem_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-22T06:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251222_uta_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-22T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251222_orl_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-22T08:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251222_det_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-22T08:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251222_sea_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-22T08:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251222_cbj_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-22T08:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251223_sf_ind", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-23T01:15:00Z", - "home_team_canonical_id": "team_nfl_ind", - "away_team_canonical_id": "team_nfl_sf", - "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251223_sf_ind", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-23T01:15:00Z", + "season": "2025", + "date": "2025-12-22", + "time": "8:15p", + "home_team": "Indianapolis Colts", + "away_team": "San Francisco 49ers", + "home_team_abbrev": "IND", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_nfl_ind", "away_team_canonical_id": "team_nfl_sf", + "venue": "Lucas Oil Stadium", "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251223_was_cho", + "canonical_id": "game_nba_2025_20251222_uta_den", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T05:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_spectrum_center", + "season": "2025", + "date": "2025-12-22", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Utah Jazz", + "home_team_abbrev": "DEN", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_uta", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251223_chi_atl", + "canonical_id": "game_nba_2025_20251222_mem_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_state_farm_arena", + "season": "2025", + "date": "2025-12-22", + "time": "8:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "OKC", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_mem", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251223_mil_ind", + "canonical_id": "game_nba_2025_20251222_orl_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T05:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "season": "2025", + "date": "2025-12-22", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Orlando Magic", + "home_team_abbrev": "GSW", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_orl", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251223_tor_mia", + "canonical_id": "game_nba_2025_20251222_det_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_kaseya_center", + "season": "2025", + "date": "2025-12-22", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Detroit Pistons", + "home_team_abbrev": "POR", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_det", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251223_lal_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251223_mtl_bos", + "canonical_id": "game_nhl_2025_20251222_sea_ana", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_td_garden", + "season": "2025", + "date": "2025-12-22", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Seattle Kraken", + "home_team_abbrev": "ANA", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251223_fla_car", + "canonical_id": "game_nhl_2025_20251222_cbj_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251223_dal_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251223_njd_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251223_buf_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T05:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "season": "2025", + "date": "2025-12-22", + "time": "7p", + "home_team": "Los Angeles Kings", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "LA", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251223_pit_tor", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T05:00:00Z", + "season": "2025", + "date": "2025-12-23", + "time": "4p", + "home_team": "Toronto Maple Leafs", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "TOR", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_nhl_tor", "away_team_canonical_id": "team_nhl_pit", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251223_nyr_was", + "canonical_id": "game_nhl_2025_20251223_dal_det", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T05:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "season": "2025", + "date": "2025-12-23", + "time": "6:30p", + "home_team": "Detroit Red Wings", + "away_team": "Dallas Stars", + "home_team_abbrev": "DET", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251223_nop_cle", + "canonical_id": "game_nba_2025_20251223_was_cho", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T06:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251223_den_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251223_nyk_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251223_okc_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T06:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251223_phi_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T06:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251223_nsh_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T06:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251223_mem_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251223_ari_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T07:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251223_cgy_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_rogers_place", + "season": "2025", + "date": "2025-12-23", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Washington Wizards", + "home_team_abbrev": "CHA", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_was", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251223_brk_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T08:00:00Z", + "season": "2025", + "date": "2025-12-23", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "PHI", + "away_team_abbrev": "BKN", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_brk", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251223_orl_por", + "canonical_id": "game_nhl_2025_20251223_buf_ott", + "sport": "NHL", + "season": "2025", + "date": "2025-12-23", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "OTT", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251223_mtl_bos", + "sport": "NHL", + "season": "2025", + "date": "2025-12-23", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "BOS", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251223_njd_nyi", + "sport": "NHL", + "season": "2025", + "date": "2025-12-23", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "New Jersey Devils", + "home_team_abbrev": "NYI", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_njd", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251223_nyr_was", + "sport": "NHL", + "season": "2025", + "date": "2025-12-23", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "New York Rangers", + "home_team_abbrev": "WAS", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251223_fla_car", + "sport": "NHL", + "season": "2025", + "date": "2025-12-23", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Florida Panthers", + "home_team_abbrev": "CAR", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_fla", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251223_nop_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T08:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_moda_center", + "season": "2025", + "date": "2025-12-23", + "time": "6:30p", + "home_team": "Cleveland Cavaliers", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "CLE", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_nop", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251223_tor_mia", + "sport": "NBA", + "season": "2025", + "date": "2025-12-23", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Toronto Raptors", + "home_team_abbrev": "MIA", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_tor", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251223_mil_ind", + "sport": "NBA", + "season": "2025", + "date": "2025-12-23", + "time": "7:30p", + "home_team": "Indiana Pacers", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "IND", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_mil", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251223_chi_atl", + "sport": "NBA", + "season": "2025", + "date": "2025-12-23", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Chicago Bulls", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_chi", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251223_nyk_min", + "sport": "NBA", + "season": "2025", + "date": "2025-12-23", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "New York Knicks", + "home_team_abbrev": "MIN", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251223_den_dal", + "sport": "NBA", + "season": "2025", + "date": "2025-12-23", + "time": "7p", + "home_team": "Dallas Mavericks", + "away_team": "Denver Nuggets", + "home_team_abbrev": "DAL", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_den", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251223_nsh_min", + "sport": "NHL", + "season": "2025", + "date": "2025-12-23", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "Nashville Predators", + "home_team_abbrev": "MIN", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251223_okc_sas", + "sport": "NBA", + "season": "2025", + "date": "2025-12-23", + "time": "7:30p", + "home_team": "San Antonio Spurs", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "SAS", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_okc", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251223_lal_phx", + "sport": "NBA", + "season": "2025", + "date": "2025-12-23", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "PHX", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_lal", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251223_mem_uta", + "sport": "NBA", + "season": "2025", + "date": "2025-12-23", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "UTA", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_mem", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251223_ari_col", + "sport": "NHL", + "season": "2025", + "date": "2025-12-23", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "Utah Club", + "home_team_abbrev": "COL", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251223_phi_chi", + "sport": "NHL", + "season": "2025", + "date": "2025-12-23", + "time": "8p", + "home_team": "Chicago Blackhawks", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "CHI", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_phi", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251223_cgy_edm", + "sport": "NHL", + "season": "2025", + "date": "2025-12-23", + "time": "7p", + "home_team": "Edmonton Oilers", + "away_team": "Calgary Flames", + "home_team_abbrev": "EDM", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251223_det_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T08:00:00Z", + "season": "2025", + "date": "2025-12-23", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Detroit Pistons", + "home_team_abbrev": "SAC", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nba_sac", "away_team_canonical_id": "team_nba_det", + "venue": "Golden 1 Center", "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251223_hou_lac", + "canonical_id": "game_nba_2025_20251223_orl_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_intuit_dome", + "season": "2025", + "date": "2025-12-23", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Orlando Magic", + "home_team_abbrev": "POR", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_orl", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251223_sea_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T08:00:00Z", + "season": "2025", + "date": "2025-12-23", + "time": "7p", + "home_team": "Los Angeles Kings", + "away_team": "Seattle Kraken", + "home_team_abbrev": "LA", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_nhl_la", "away_team_canonical_id": "team_nhl_sea", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251223_sj_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-23T08:00:00Z", + "season": "2025", + "date": "2025-12-23", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "San Jose Sharks", + "home_team_abbrev": "VGK", + "away_team_abbrev": "SJ", "home_team_canonical_id": "team_nhl_vgk", "away_team_canonical_id": "team_nhl_sj", + "venue": "T-Mobile Arena", "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251223_hou_lac", + "sport": "NBA", + "season": "2025", + "date": "2025-12-23", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Houston Rockets", + "home_team_abbrev": "LAC", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_hou", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251225_cle_nyk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-25T05:00:00Z", + "season": "2025", + "date": "2025-12-25", + "time": "12p", + "home_team": "New York Knicks", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "NYK", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nba_nyk", "away_team_canonical_id": "team_nba_cle", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251225_sas_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-25T06:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251225_min_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-25T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251225_dal_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-25T08:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251225_hou_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-25T08:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251225_dal_was", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-25T18:00:00Z", - "home_team_canonical_id": "team_nfl_was", - "away_team_canonical_id": "team_nfl_dal", - "stadium_canonical_id": "stadium_nfl_northwest_stadium", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251225_dal_was", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-25T18:00:00Z", + "season": "2025", + "date": "2025-12-25", + "time": "1p", + "home_team": "Washington Commanders", + "away_team": "Dallas Cowboys", + "home_team_abbrev": "WAS", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nfl_was", "away_team_canonical_id": "team_nfl_dal", + "venue": "Northwest Stadium", "stadium_canonical_id": "stadium_nfl_northwest_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251225_det_min", - "sport": "NFL", + "canonical_id": "game_nba_2025_20251225_sas_okc", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-12-25T21:30:00Z", - "home_team_canonical_id": "team_nfl_min", - "away_team_canonical_id": "team_nfl_det", - "stadium_canonical_id": "stadium_nfl_us_bank_stadium", + "date": "2025-12-25", + "time": "1:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "OKC", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_sas", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251225_det_min", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-25T21:30:00Z", + "season": "2025", + "date": "2025-12-25", + "time": "3:30p", + "home_team": "Minnesota Vikings", + "away_team": "Detroit Lions", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nfl_min", "away_team_canonical_id": "team_nfl_det", + "venue": "U.S. Bank Stadium", "stadium_canonical_id": "stadium_nfl_us_bank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251226_den_kc", - "sport": "NFL", + "canonical_id": "game_nba_2025_20251225_dal_gsw", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-12-26T01:15:00Z", - "home_team_canonical_id": "team_nfl_kc", - "away_team_canonical_id": "team_nfl_den", - "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", + "date": "2025-12-25", + "time": "2p", + "home_team": "Golden State Warriors", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "GSW", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_dal", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251225_hou_lal", + "sport": "NBA", + "season": "2025", + "date": "2025-12-25", + "time": "5p", + "home_team": "Los Angeles Lakers", + "away_team": "Houston Rockets", + "home_team_abbrev": "LAL", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_hou", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251226_den_kc", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-26T01:15:00Z", + "season": "2025", + "date": "2025-12-25", + "time": "7:15p", + "home_team": "Kansas City Chiefs", + "away_team": "Denver Broncos", + "home_team_abbrev": "KC", + "away_team_abbrev": "DEN", "home_team_canonical_id": "team_nfl_kc", "away_team_canonical_id": "team_nfl_den", + "venue": "Arrowhead Stadium", "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251226_mia_atl", + "canonical_id": "game_nba_2025_20251225_min_den", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-26T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251226_bos_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-26T05:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251226_cho_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-26T05:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_kia_center", + "season": "2025", + "date": "2025-12-25", + "time": "8:30p", + "home_team": "Denver Nuggets", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "DEN", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_min", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251226_tor_was", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-26T05:00:00Z", + "season": "2025", + "date": "2025-12-26", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Toronto Raptors", + "home_team_abbrev": "WAS", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_nba_was", "away_team_canonical_id": "team_nba_tor", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251226_bos_ind", + "sport": "NBA", + "season": "2025", + "date": "2025-12-26", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Boston Celtics", + "home_team_abbrev": "IND", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_bos", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251226_mia_atl", + "sport": "NBA", + "season": "2025", + "date": "2025-12-26", + "time": "7p", + "home_team": "Atlanta Hawks", + "away_team": "Miami Heat", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_mia", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251226_cho_orl", + "sport": "NBA", + "season": "2025", + "date": "2025-12-26", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "ORL", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_cho", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251226_phi_chi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-26T06:00:00Z", + "season": "2025", + "date": "2025-12-26", + "time": "6:30p", + "home_team": "Chicago Bulls", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "CHI", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nba_chi", "away_team_canonical_id": "team_nba_phi", + "venue": "United Center", "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251226_mil_mem", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-26T06:00:00Z", + "season": "2025", + "date": "2025-12-26", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "MEM", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_nba_mem", "away_team_canonical_id": "team_nba_mil", + "venue": "FedExForum", "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251226_phx_nop", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-26T06:00:00Z", + "season": "2025", + "date": "2025-12-26", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Phoenix Suns", + "home_team_abbrev": "NOP", + "away_team_abbrev": "PHX", "home_team_canonical_id": "team_nba_nop", "away_team_canonical_id": "team_nba_phx", + "venue": "Smoothie King Center", "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251226_det_uta", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-26T07:00:00Z", + "season": "2025", + "date": "2025-12-26", + "time": "7:30p", + "home_team": "Utah Jazz", + "away_team": "Detroit Pistons", + "home_team_abbrev": "UTA", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nba_uta", "away_team_canonical_id": "team_nba_det", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251226_lac_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-26T08:00:00Z", + "season": "2025", + "date": "2025-12-26", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "POR", + "away_team_abbrev": "LAC", "home_team_canonical_id": "team_nba_por", "away_team_canonical_id": "team_nba_lac", + "venue": "Moda Center", "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251227_den_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T05:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251227_nyk_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251227_ind_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251227_bos_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T05:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251227_det_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251227_tb_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251227_was_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T05:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251227_nyr_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251227_ott_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T05:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251227_phx_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T06:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251227_mil_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251227_cle_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T06:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251227_brk_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251227_uta_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T06:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251227_chi_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T06:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251227_nsh_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T06:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251227_min_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T06:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251227_edm_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251227_dal_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T08:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251227_ana_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T08:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251227_sj_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T08:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_rogers_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251227_col_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-27T08:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251227_hou_lac", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-27T21:30:00Z", - "home_team_canonical_id": "team_nfl_lac", - "away_team_canonical_id": "team_nfl_hou", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251227_hou_lac", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-27T21:30:00Z", + "season": "2025", + "date": "2025-12-27", + "time": "1:30p", + "home_team": "Los Angeles Chargers", + "away_team": "Houston Texans", + "home_team_abbrev": "LAC", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nfl_lac", "away_team_canonical_id": "team_nfl_hou", + "venue": "SoFi Stadium", "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251228_bal_gb", - "sport": "NFL", + "canonical_id": "game_nba_2025_20251227_dal_sac", + "sport": "NBA", "season": "2025", - "game_datetime_utc": "2025-12-28T01:00:00Z", - "home_team_canonical_id": "team_nfl_gb", - "away_team_canonical_id": "team_nfl_bal", - "stadium_canonical_id": "stadium_nfl_lambeau_field", + "date": "2025-12-27", + "time": "2p", + "home_team": "Sacramento Kings", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "SAC", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_dal", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251227_nyr_nyi", + "sport": "NHL", + "season": "2025", + "date": "2025-12-27", + "time": "6p", + "home_team": "New York Islanders", + "away_team": "New York Rangers", + "home_team_abbrev": "NYI", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251227_den_orl", + "sport": "NBA", + "season": "2025", + "date": "2025-12-27", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Denver Nuggets", + "home_team_abbrev": "ORL", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_den", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251227_phx_nop", + "sport": "NBA", + "season": "2025", + "date": "2025-12-27", + "time": "6p", + "home_team": "New Orleans Pelicans", + "away_team": "Phoenix Suns", + "home_team_abbrev": "NOP", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_phx", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251227_min_wpg", + "sport": "NHL", + "season": "2025", + "date": "2025-12-27", + "time": "6p", + "home_team": "Winnipeg Jets", + "away_team": "Minnesota Wild", + "home_team_abbrev": "WPG", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_min", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251227_ott_tor", + "sport": "NHL", + "season": "2025", + "date": "2025-12-27", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Ottawa Senators", + "home_team_abbrev": "TOR", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251227_was_njd", + "sport": "NHL", + "season": "2025", + "date": "2025-12-27", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Washington Capitals", + "home_team_abbrev": "NJ", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_was", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251227_tb_fla", + "sport": "NHL", + "season": "2025", + "date": "2025-12-27", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "FLA", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251227_det_car", + "sport": "NHL", + "season": "2025", + "date": "2025-12-27", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "CAR", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_det", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251227_bos_buf", + "sport": "NHL", + "season": "2025", + "date": "2025-12-27", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Boston Bruins", + "home_team_abbrev": "BUF", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_bos", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251227_cle_hou", + "sport": "NBA", + "season": "2025", + "date": "2025-12-27", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_cle", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251227_nyk_atl", + "sport": "NBA", + "season": "2025", + "date": "2025-12-27", + "time": "8p", + "home_team": "Atlanta Hawks", + "away_team": "New York Knicks", + "home_team_abbrev": "ATL", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_nyk", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251227_mil_chi", + "sport": "NBA", + "season": "2025", + "date": "2025-12-27", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "CHI", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_mil", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251227_uta_sas", + "sport": "NBA", + "season": "2025", + "date": "2025-12-27", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Utah Jazz", + "home_team_abbrev": "SAS", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_uta", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251227_brk_min", + "sport": "NBA", + "season": "2025", + "date": "2025-12-27", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "MIN", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_brk", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251227_ind_mia", + "sport": "NBA", + "season": "2025", + "date": "2025-12-27", + "time": "8p", + "home_team": "Miami Heat", + "away_team": "Indiana Pacers", + "home_team_abbrev": "MIA", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_ind", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251228_bal_gb", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-28T01:00:00Z", + "season": "2025", + "date": "2025-12-27", + "time": "7p", + "home_team": "Green Bay Packers", + "away_team": "Baltimore Ravens", + "home_team_abbrev": "GB", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_nfl_gb", "away_team_canonical_id": "team_nfl_bal", + "venue": "Lambeau Field", "stadium_canonical_id": "stadium_nfl_lambeau_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251228_gsw_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-28T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251228_mem_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-28T05:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251228_nyi_cbj", + "canonical_id": "game_nhl_2025_20251227_nsh_stl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "season": "2025", + "date": "2025-12-27", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Nashville Predators", + "home_team_abbrev": "STL", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251228_tor_det", + "canonical_id": "game_nhl_2025_20251227_chi_dal", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "season": "2025", + "date": "2025-12-27", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "DAL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_chi", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251228_mtl_tb", + "canonical_id": "game_nhl_2025_20251227_ana_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_amalie_arena", + "season": "2025", + "date": "2025-12-27", + "time": "6p", + "home_team": "Los Angeles Kings", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "LA", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251228_phi_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-28T06:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251228_pit_chi", + "canonical_id": "game_nhl_2025_20251227_edm_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-28T06:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_united_center", + "season": "2025", + "date": "2025-12-27", + "time": "8p", + "home_team": "Calgary Flames", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "CGY", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251228_bos_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-28T08:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251228_det_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-28T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251228_sac_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-28T08:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251228_phi_sea", + "canonical_id": "game_nhl_2025_20251227_sj_van", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-28T08:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251228_ari_cin", - "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-12-28T18:00:00Z", - "home_team_canonical_id": "team_nfl_cin", - "away_team_canonical_id": "team_nfl_ari", - "stadium_canonical_id": "stadium_nfl_paycor_stadium", + "date": "2025-12-27", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "San Jose Sharks", + "home_team_abbrev": "VAN", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251228_pit_cle", - "sport": "NFL", + "canonical_id": "game_nhl_2025_20251227_col_vgk", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-12-28T18:00:00Z", - "home_team_canonical_id": "team_nfl_cle", - "away_team_canonical_id": "team_nfl_pit", - "stadium_canonical_id": "stadium_nfl_huntington_bank_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251228_no_ten", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-28T18:00:00Z", - "home_team_canonical_id": "team_nfl_ten", - "away_team_canonical_id": "team_nfl_no", - "stadium_canonical_id": "stadium_nfl_nissan_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251228_jax_ind", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-28T18:00:00Z", - "home_team_canonical_id": "team_nfl_ind", - "away_team_canonical_id": "team_nfl_jax", - "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251228_tb_mia", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-28T18:00:00Z", - "home_team_canonical_id": "team_nfl_mia", - "away_team_canonical_id": "team_nfl_tb", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251228_ne_nyj", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-28T18:00:00Z", - "home_team_canonical_id": "team_nfl_nyj", - "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251228_sea_car", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-28T18:00:00Z", - "home_team_canonical_id": "team_nfl_car", - "away_team_canonical_id": "team_nfl_sea", - "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251228_tb_mia", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-28T18:00:00Z", - "home_team_canonical_id": "team_nfl_mia", - "away_team_canonical_id": "team_nfl_tb", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251228_sea_car", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-28T18:00:00Z", - "home_team_canonical_id": "team_nfl_car", - "away_team_canonical_id": "team_nfl_sea", - "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251228_pit_cle", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-28T18:00:00Z", - "home_team_canonical_id": "team_nfl_cle", - "away_team_canonical_id": "team_nfl_pit", - "stadium_canonical_id": "stadium_nfl_huntington_bank_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251228_no_ten", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-28T18:00:00Z", - "home_team_canonical_id": "team_nfl_ten", - "away_team_canonical_id": "team_nfl_no", - "stadium_canonical_id": "stadium_nfl_nissan_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20251228_ne_nyj", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-28T18:00:00Z", - "home_team_canonical_id": "team_nfl_nyj", - "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "date": "2025-12-27", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "VGK", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_col", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251228_jax_ind", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-28T18:00:00Z", + "season": "2025", + "date": "2025-12-28", + "time": "1p", + "home_team": "Indianapolis Colts", + "away_team": "Jacksonville Jaguars", + "home_team_abbrev": "IND", + "away_team_abbrev": "JAX", "home_team_canonical_id": "team_nfl_ind", "away_team_canonical_id": "team_nfl_jax", + "venue": "Lucas Oil Stadium", "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251228_no_ten", + "sport": "NFL", + "season": "2025", + "date": "2025-12-28", + "time": "12p", + "home_team": "Tennessee Titans", + "away_team": "New Orleans Saints", + "home_team_abbrev": "TEN", + "away_team_abbrev": "NO", + "home_team_canonical_id": "team_nfl_ten", + "away_team_canonical_id": "team_nfl_no", + "venue": "Nissan Stadium", + "stadium_canonical_id": "stadium_nfl_nissan_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251228_tb_mia", + "sport": "NFL", + "season": "2025", + "date": "2025-12-28", + "time": "1p", + "home_team": "Miami Dolphins", + "away_team": "Tampa Bay Buccaneers", + "home_team_abbrev": "MIA", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nfl_mia", + "away_team_canonical_id": "team_nfl_tb", + "venue": "Hard Rock Stadium", + "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251228_ne_nyj", + "sport": "NFL", + "season": "2025", + "date": "2025-12-28", + "time": "1p", + "home_team": "New York Jets", + "away_team": "New England Patriots", + "home_team_abbrev": "NYJ", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_nfl_nyj", + "away_team_canonical_id": "team_nfl_ne", + "venue": "MetLife Stadium", + "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20251228_pit_cle", + "sport": "NFL", + "season": "2025", + "date": "2025-12-28", + "time": "1p", + "home_team": "Cleveland Browns", + "away_team": "Pittsburgh Steelers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nfl_cle", + "away_team_canonical_id": "team_nfl_pit", + "venue": "Huntington Bank Field", + "stadium_canonical_id": "stadium_nfl_huntington_bank_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251228_ari_cin", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-28T18:00:00Z", + "season": "2025", + "date": "2025-12-28", + "time": "1p", + "home_team": "Cincinnati Bengals", + "away_team": "Arizona Cardinals", + "home_team_abbrev": "CIN", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_nfl_cin", "away_team_canonical_id": "team_nfl_ari", + "venue": "Paycor Stadium", "stadium_canonical_id": "stadium_nfl_paycor_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251228_nyg_lv", + "canonical_id": "game_nfl_2026_20251228_sea_car", "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-12-28T21:05:00Z", - "home_team_canonical_id": "team_nfl_lv", - "away_team_canonical_id": "team_nfl_nyg", - "stadium_canonical_id": "stadium_nfl_allegiant_stadium", + "date": "2025-12-28", + "time": "1p", + "home_team": "Carolina Panthers", + "away_team": "Seattle Seahawks", + "home_team_abbrev": "CAR", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nfl_car", + "away_team_canonical_id": "team_nfl_sea", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251228_phi_okc", + "sport": "NBA", + "season": "2025", + "date": "2025-12-28", + "time": "2:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "OKC", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_phi", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251228_gsw_tor", + "sport": "NBA", + "season": "2025", + "date": "2025-12-28", + "time": "3:30p", + "home_team": "Toronto Raptors", + "away_team": "Golden State Warriors", + "home_team_abbrev": "TOR", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251228_nyg_lv", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-28T21:05:00Z", + "season": "2025", + "date": "2025-12-28", + "time": "1:05p", + "home_team": "Las Vegas Raiders", + "away_team": "New York Giants", + "home_team_abbrev": "LV", + "away_team_abbrev": "NYG", "home_team_canonical_id": "team_nfl_lv", "away_team_canonical_id": "team_nfl_nyg", + "venue": "Allegiant Stadium", "stadium_canonical_id": "stadium_nfl_allegiant_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251228_phi_buf", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2025-12-28T21:25:00Z", - "home_team_canonical_id": "team_nfl_buf", - "away_team_canonical_id": "team_nfl_phi", - "stadium_canonical_id": "stadium_nfl_highmark_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251228_phi_buf", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-28T21:25:00Z", + "season": "2025", + "date": "2025-12-28", + "time": "4:25p", + "home_team": "Buffalo Bills", + "away_team": "Philadelphia Eagles", + "home_team_abbrev": "BUF", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nfl_buf", "away_team_canonical_id": "team_nfl_phi", + "venue": "Highmark Stadium", "stadium_canonical_id": "stadium_nfl_highmark_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20251229_chi_sf", - "sport": "NFL", + "canonical_id": "game_nhl_2025_20251228_nyi_cbj", + "sport": "NHL", "season": "2025", - "game_datetime_utc": "2025-12-29T01:20:00Z", - "home_team_canonical_id": "team_nfl_sf", - "away_team_canonical_id": "team_nfl_chi", - "stadium_canonical_id": "stadium_nfl_levis_stadium", + "date": "2025-12-28", + "time": "5p", + "home_team": "Columbus Blue Jackets", + "away_team": "New York Islanders", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251228_mtl_tb", + "sport": "NHL", + "season": "2025", + "date": "2025-12-28", + "time": "5p", + "home_team": "Tampa Bay Lightning", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "TB", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251228_mem_was", + "sport": "NBA", + "season": "2025", + "date": "2025-12-28", + "time": "6p", + "home_team": "Washington Wizards", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "WAS", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_mem", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251228_bos_por", + "sport": "NBA", + "season": "2025", + "date": "2025-12-28", + "time": "3p", + "home_team": "Portland Blazers", + "away_team": "Boston Celtics", + "home_team_abbrev": "POR", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_bos", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251228_pit_chi", + "sport": "NHL", + "season": "2025", + "date": "2025-12-28", + "time": "6p", + "home_team": "Chicago Blackhawks", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "CHI", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_pit", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251228_tor_det", + "sport": "NHL", + "season": "2025", + "date": "2025-12-28", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "DET", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251228_phi_sea", + "sport": "NHL", + "season": "2025", + "date": "2025-12-28", + "time": "5p", + "home_team": "Seattle Kraken", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_phi", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251229_chi_sf", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-29T01:20:00Z", + "season": "2025", + "date": "2025-12-28", + "time": "5:20p", + "home_team": "San Francisco 49ers", + "away_team": "Chicago Bears", + "home_team_abbrev": "SF", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nfl_sf", "away_team_canonical_id": "team_nfl_chi", + "venue": "Levi's Stadium", "stadium_canonical_id": "stadium_nfl_levis_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251228_det_lac", + "sport": "NBA", + "season": "2025", + "date": "2025-12-28", + "time": "6p", + "home_team": "Los Angeles Clippers", + "away_team": "Detroit Pistons", + "home_team_abbrev": "LAC", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_det", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251228_sac_lal", + "sport": "NBA", + "season": "2025", + "date": "2025-12-28", + "time": "6:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Sacramento Kings", + "home_team_abbrev": "LAL", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_sac", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251229_mil_cho", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T05:00:00Z", + "season": "2025", + "date": "2025-12-29", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "CHA", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_nba_cho", "away_team_canonical_id": "team_nba_mil", + "venue": "Spectrum Center", "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251229_phx_was", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T05:00:00Z", + "season": "2025", + "date": "2025-12-29", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Phoenix Suns", + "home_team_abbrev": "WAS", + "away_team_abbrev": "PHX", "home_team_canonical_id": "team_nba_was", "away_team_canonical_id": "team_nba_phx", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251229_gsw_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251229_den_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251229_orl_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251229_nyr_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251229_was_fla", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T05:00:00Z", + "season": "2025", + "date": "2025-12-29", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Washington Capitals", + "home_team_abbrev": "FLA", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nhl_fla", "away_team_canonical_id": "team_nhl_was", + "venue": "Amerant Bank Arena", "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251229_cbj_ott", + "canonical_id": "game_nhl_2025_20251229_nyr_car", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T05:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "season": "2025", + "date": "2025-12-29", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "New York Rangers", + "home_team_abbrev": "CAR", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251229_min_chi", + "canonical_id": "game_nba_2025_20251229_den_mia", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_united_center", + "season": "2025", + "date": "2025-12-29", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Denver Nuggets", + "home_team_abbrev": "MIA", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_den", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251229_ind_hou", + "canonical_id": "game_nba_2025_20251229_gsw_brk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T06:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_toyota_center", + "season": "2025", + "date": "2025-12-29", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Golden State Warriors", + "home_team_abbrev": "BKN", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251229_nyk_nop", + "canonical_id": "game_nba_2025_20251229_orl_tor", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T06:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251229_atl_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T06:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251229_cle_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T06:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251229_buf_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T06:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_enterprise_center", + "season": "2025", + "date": "2025-12-29", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "Orlando Magic", + "home_team_abbrev": "TOR", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_orl", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251229_edm_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T06:00:00Z", + "season": "2025", + "date": "2025-12-29", + "time": "6:30p", + "home_team": "Winnipeg Jets", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "WPG", + "away_team_abbrev": "EDM", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_edm", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20251229_bos_cgy", + "canonical_id": "game_nhl_2025_20251229_cbj_ott", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251229_la_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T07:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251229_nsh_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T07:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251229_dal_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T08:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251229_sj_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T08:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251229_van_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T08:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251229_min_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-29T08:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20251230_lar_atl", - "sport": "NFL", "season": "2025", - "game_datetime_utc": "2025-12-30T01:15:00Z", - "home_team_canonical_id": "team_nfl_atl", - "away_team_canonical_id": "team_nfl_lar", - "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", + "date": "2025-12-29", + "time": "7:30p", + "home_team": "Ottawa Senators", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "OTT", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251229_nyk_nop", + "sport": "NBA", + "season": "2025", + "date": "2025-12-29", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "New York Knicks", + "home_team_abbrev": "NOP", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251229_atl_okc", + "sport": "NBA", + "season": "2025", + "date": "2025-12-29", + "time": "7p", + "home_team": "Oklahoma City Thunder", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "OKC", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_atl", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251229_cle_sas", + "sport": "NBA", + "season": "2025", + "date": "2025-12-29", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "SAS", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_cle", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251229_min_chi", + "sport": "NBA", + "season": "2025", + "date": "2025-12-29", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "CHI", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_min", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251229_ind_hou", + "sport": "NBA", + "season": "2025", + "date": "2025-12-29", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Indiana Pacers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_ind", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251229_buf_stl", + "sport": "NHL", + "season": "2025", + "date": "2025-12-29", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "STL", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20251230_lar_atl", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2025-12-30T01:15:00Z", + "season": "2025", + "date": "2025-12-29", + "time": "8:15p", + "home_team": "Atlanta Falcons", + "away_team": "Los Angeles Rams", + "home_team_abbrev": "ATL", + "away_team_abbrev": "LAR", "home_team_canonical_id": "team_nfl_atl", "away_team_canonical_id": "team_nfl_lar", + "venue": "Mercedes-Benz Stadium", "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251229_nsh_ari", + "sport": "NHL", + "season": "2025", + "date": "2025-12-29", + "time": "7p", + "home_team": "Utah Club", + "away_team": "Nashville Predators", + "home_team_abbrev": "ARI", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251229_bos_cgy", + "sport": "NHL", + "season": "2025", + "date": "2025-12-29", + "time": "7p", + "home_team": "Calgary Flames", + "away_team": "Boston Bruins", + "home_team_abbrev": "CGY", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251229_la_col", + "sport": "NHL", + "season": "2025", + "date": "2025-12-29", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "COL", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_la", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251229_sj_ana", + "sport": "NHL", + "season": "2025", + "date": "2025-12-29", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "San Jose Sharks", + "home_team_abbrev": "ANA", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251229_van_sea", + "sport": "NHL", + "season": "2025", + "date": "2025-12-29", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "SEA", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_van", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251229_min_vgk", + "sport": "NHL", + "season": "2025", + "date": "2025-12-29", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Minnesota Wild", + "home_team_abbrev": "VGK", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_min", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251229_dal_por", + "sport": "NBA", + "season": "2025", + "date": "2025-12-29", + "time": "7:30p", + "home_team": "Portland Blazers", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "POR", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_dal", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251230_mtl_fla", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-30T05:00:00Z", + "season": "2025", + "date": "2025-12-30", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "FLA", + "away_team_abbrev": "MTL", "home_team_canonical_id": "team_nhl_fla", "away_team_canonical_id": "team_nhl_mtl", + "venue": "Amerant Bank Arena", "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251230_car_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-30T05:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251230_njd_tor", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-30T05:00:00Z", + "season": "2025", + "date": "2025-12-30", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "New Jersey Devils", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NJ", "home_team_canonical_id": "team_nhl_tor", "away_team_canonical_id": "team_nhl_njd", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251230_car_pit", + "sport": "NHL", + "season": "2025", + "date": "2025-12-30", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_car", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251230_phi_mem", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-30T06:00:00Z", + "season": "2025", + "date": "2025-12-30", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "MEM", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nba_mem", "away_team_canonical_id": "team_nba_phi", + "venue": "FedExForum", "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251230_nyi_chi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-30T06:00:00Z", + "season": "2025", + "date": "2025-12-30", + "time": "7:30p", + "home_team": "Chicago Blackhawks", + "away_team": "New York Islanders", + "home_team_abbrev": "CHI", + "away_team_abbrev": "NYI", "home_team_canonical_id": "team_nhl_chi", "away_team_canonical_id": "team_nhl_nyi", + "venue": "United Center", "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20251230_bos_uta", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-30T07:00:00Z", + "season": "2025", + "date": "2025-12-30", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Boston Celtics", + "home_team_abbrev": "UTA", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_nba_uta", "away_team_canonical_id": "team_nba_bos", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251230_det_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-30T08:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251230_sac_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-30T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251230_phi_van", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-30T08:00:00Z", + "season": "2025", + "date": "2025-12-30", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "VAN", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nhl_van", "away_team_canonical_id": "team_nhl_phi", + "venue": "Rogers Arena", "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251231_gsw_cho", + "canonical_id": "game_nba_2025_20251230_det_lal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-31T05:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_spectrum_center", + "season": "2025", + "date": "2025-12-30", + "time": "7:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Detroit Pistons", + "home_team_abbrev": "LAL", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_det", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251231_min_atl", + "canonical_id": "game_nba_2025_20251230_sac_lac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-31T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251231_orl_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-31T05:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251231_den_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-31T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251231_njd_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-31T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251231_wpg_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-31T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "season": "2025", + "date": "2025-12-30", + "time": "8p", + "home_team": "Los Angeles Clippers", + "away_team": "Sacramento Kings", + "home_team_abbrev": "LAC", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_sac", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251231_nyr_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-31T05:00:00Z", + "season": "2025", + "date": "2025-12-31", + "time": "12:30p", + "home_team": "Washington Capitals", + "away_team": "New York Rangers", + "home_team_abbrev": "WAS", + "away_team_abbrev": "NYR", "home_team_canonical_id": "team_nhl_was", "away_team_canonical_id": "team_nhl_nyr", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251231_phx_cle", + "canonical_id": "game_nba_2025_20251231_gsw_cho", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-31T06:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_toyota_center", + "season": "2025", + "date": "2025-12-31", + "time": "1p", + "home_team": "Charlotte Hornets", + "away_team": "Golden State Warriors", + "home_team_abbrev": "CHA", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251231_nop_chi", + "canonical_id": "game_nba_2025_20251231_orl_ind", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-31T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_united_center", + "season": "2025", + "date": "2025-12-31", + "time": "3p", + "home_team": "Indiana Pacers", + "away_team": "Orlando Magic", + "home_team_abbrev": "IND", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_orl", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20251231_nyk_sas", + "canonical_id": "game_nba_2025_20251231_min_atl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-31T06:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251231_was_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-31T06:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20251231_por_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2025-12-31T06:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251231_buf_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-31T06:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251231_phi_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-31T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251231_stl_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-31T07:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251231_bos_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-31T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251231_tb_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-31T08:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20251231_min_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-31T08:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_sap_center", + "season": "2025", + "date": "2025-12-31", + "time": "3p", + "home_team": "Atlanta Hawks", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_min", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20251231_nsh_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2025-12-31T08:00:00Z", + "season": "2025", + "date": "2025-12-31", + "time": "12p", + "home_team": "Vegas Golden Knights", + "away_team": "Nashville Predators", + "home_team_abbrev": "VGK", + "away_team_abbrev": "NSH", "home_team_canonical_id": "team_nhl_vgk", "away_team_canonical_id": "team_nhl_nsh", + "venue": "T-Mobile Arena", "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260101_hou_brk", + "canonical_id": "game_nba_2025_20251231_phx_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-01T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_barclays_center", + "season": "2025", + "date": "2025-12-31", + "time": "2:30p", + "home_team": "Cleveland Cavaliers", + "away_team": "Phoenix Suns", + "home_team_abbrev": "CLE", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_phx", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260101_mia_det", + "canonical_id": "game_nhl_2025_20251231_tb_ana", + "sport": "NHL", + "season": "2025", + "date": "2025-12-31", + "time": "1p", + "home_team": "Anaheim Ducks", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "ANA", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251231_min_sj", + "sport": "NHL", + "season": "2025", + "date": "2025-12-31", + "time": "1p", + "home_team": "San Jose Sharks", + "away_team": "Minnesota Wild", + "home_team_abbrev": "SJ", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_min", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251231_wpg_det", + "sport": "NHL", + "season": "2025", + "date": "2025-12-31", + "time": "6:30p", + "home_team": "Detroit Red Wings", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "DET", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251231_nop_chi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-01T05:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "season": "2026", + "date": "2025-12-31", + "time": "6p", + "home_team": "Chicago Bulls", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "CHI", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_nop", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260101_mtl_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-01T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_pnc_arena", + "canonical_id": "game_nba_2025_20251231_nyk_sas", + "sport": "NBA", + "season": "2026", + "date": "2025-12-31", + "time": "6p", + "home_team": "San Antonio Spurs", + "away_team": "New York Knicks", + "home_team_abbrev": "SAS", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260101_ari_nyi", + "canonical_id": "game_nhl_2025_20251231_njd_cbj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-01T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_ubs_arena", + "season": "2026", + "date": "2025-12-31", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "New Jersey Devils", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_njd", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251231_den_tor", + "sport": "NBA", + "season": "2026", + "date": "2025-12-31", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "Denver Nuggets", + "home_team_abbrev": "TOR", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_den", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251231_was_mil", + "sport": "NBA", + "season": "2026", + "date": "2025-12-31", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Washington Wizards", + "home_team_abbrev": "MIL", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_was", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20251231_por_okc", + "sport": "NBA", + "season": "2026", + "date": "2025-12-31", + "time": "7p", + "home_team": "Oklahoma City Thunder", + "away_team": "Portland Blazers", + "home_team_abbrev": "OKC", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_por", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251231_buf_dal", + "sport": "NHL", + "season": "2026", + "date": "2025-12-31", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "DAL", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_buf", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251231_stl_col", + "sport": "NHL", + "season": "2026", + "date": "2025-12-31", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "St. Louis Blues", + "home_team_abbrev": "COL", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251231_bos_edm", + "sport": "NHL", + "season": "2026", + "date": "2025-12-31", + "time": "7:30p", + "home_team": "Edmonton Oilers", + "away_team": "Boston Bruins", + "home_team_abbrev": "EDM", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20251231_phi_cgy", + "sport": "NHL", + "season": "2026", + "date": "2025-12-31", + "time": "7:30p", + "home_team": "Calgary Flames", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "CGY", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_phi", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260101_was_ott", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-01T05:00:00Z", + "season": "2026", + "date": "2026-01-01", + "time": "1p", + "home_team": "Ottawa Senators", + "away_team": "Washington Capitals", + "home_team_abbrev": "OTT", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nhl_ott", "away_team_canonical_id": "team_nhl_was", + "venue": "Canadian Tire Centre", "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260101_det_pit", + "canonical_id": "game_nhl_2025_20260101_ari_nyi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-01T05:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "season": "2026", + "date": "2026-01-01", + "time": "3p", + "home_team": "New York Islanders", + "away_team": "Utah Club", + "home_team_abbrev": "NYI", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_ari", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260101_wpg_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-01T05:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260101_phi_dal", + "canonical_id": "game_nba_2025_20260101_hou_brk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-01T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_american_airlines_center", + "season": "2026", + "date": "2026-01-01", + "time": "6p", + "home_team": "Brooklyn Nets", + "away_team": "Houston Rockets", + "home_team_abbrev": "BKN", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_hou", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260101_dal_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-01T06:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260101_bos_sac", + "canonical_id": "game_nba_2025_20260101_mia_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-01T08:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260101_uta_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-01T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_intuit_dome", + "season": "2026", + "date": "2026-01-01", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Miami Heat", + "home_team_abbrev": "DET", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_mia", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260101_tb_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-01T08:00:00Z", + "season": "2026", + "date": "2026-01-01", + "time": "4p", + "home_team": "Los Angeles Kings", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "LA", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_nhl_la", "away_team_canonical_id": "team_nhl_tb", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260101_mtl_car", + "sport": "NHL", + "season": "2026", + "date": "2026-01-01", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "CAR", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260101_det_pit", + "sport": "NHL", + "season": "2026", + "date": "2026-01-01", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "PIT", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_det", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260101_wpg_tor", + "sport": "NHL", + "season": "2026", + "date": "2026-01-01", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "TOR", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260101_phi_dal", + "sport": "NBA", + "season": "2026", + "date": "2026-01-01", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "DAL", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_phi", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260101_dal_chi", + "sport": "NHL", + "season": "2026", + "date": "2026-01-01", + "time": "7:30p", + "home_team": "Chicago Blackhawks", + "away_team": "Dallas Stars", + "home_team_abbrev": "CHI", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_dal", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260101_bos_sac", + "sport": "NBA", + "season": "2026", + "date": "2026-01-01", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Boston Celtics", + "home_team_abbrev": "SAC", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_bos", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260101_nsh_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-01T08:00:00Z", + "season": "2026", + "date": "2026-01-01", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Nashville Predators", + "home_team_abbrev": "SEA", + "away_team_abbrev": "NSH", "home_team_canonical_id": "team_nhl_sea", "away_team_canonical_id": "team_nhl_nsh", + "venue": "Climate Pledge Arena", "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260102_sas_ind", + "canonical_id": "game_nba_2025_20260101_uta_lac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-02T05:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260102_brk_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-02T05:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260102_atl_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-02T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260102_sac_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-02T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260102_nyr_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-02T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260102_den_cle", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-02T06:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260102_orl_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-02T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260102_cho_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-02T06:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260102_por_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-02T06:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "season": "2026", + "date": "2026-01-01", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Utah Jazz", + "home_team_abbrev": "LAC", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_uta", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260102_vgk_stl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-02T06:00:00Z", + "season": "2026", + "date": "2026-01-02", + "time": "2p", + "home_team": "St. Louis Blues", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "STL", + "away_team_abbrev": "VGK", "home_team_canonical_id": "team_nhl_stl", "away_team_canonical_id": "team_nhl_vgk", + "venue": "Enterprise Center", "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260102_brk_was", + "sport": "NBA", + "season": "2026", + "date": "2026-01-02", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "WAS", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_brk", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260102_sas_ind", + "sport": "NBA", + "season": "2026", + "date": "2026-01-02", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "IND", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_sas", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260102_atl_nyk", + "sport": "NBA", + "season": "2026", + "date": "2026-01-02", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "NYK", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_atl", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260102_den_cle", + "sport": "NBA", + "season": "2026", + "date": "2026-01-02", + "time": "6:30p", + "home_team": "Cleveland Cavaliers", + "away_team": "Denver Nuggets", + "home_team_abbrev": "CLE", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_den", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260102_por_nop", + "sport": "NBA", + "season": "2026", + "date": "2026-01-02", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Portland Blazers", + "home_team_abbrev": "NOP", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_por", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260102_orl_chi", + "sport": "NBA", + "season": "2026", + "date": "2026-01-02", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Orlando Magic", + "home_team_abbrev": "CHI", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_orl", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260102_cho_mil", + "sport": "NBA", + "season": "2026", + "date": "2026-01-02", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_cho", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260102_nyr_fla", + "sport": "NHL", + "season": "2026", + "date": "2026-01-02", + "time": "8p", + "home_team": "Florida Panthers", + "away_team": "New York Rangers", + "home_team_abbrev": "FLA", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260102_sac_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-01-02", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "Sacramento Kings", + "home_team_abbrev": "PHX", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_sac", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260102_okc_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-02T08:00:00Z", + "season": "2026", + "date": "2026-01-02", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "GSW", + "away_team_abbrev": "OKC", "home_team_canonical_id": "team_nba_gsw", "away_team_canonical_id": "team_nba_okc", + "venue": "Chase Center", "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260102_mem_lal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-02T08:00:00Z", + "season": "2026", + "date": "2026-01-02", + "time": "7:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "LAL", + "away_team_abbrev": "MEM", "home_team_canonical_id": "team_nba_lal", "away_team_canonical_id": "team_nba_mem", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260102_min_ana", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-02T08:00:00Z", + "season": "2026", + "date": "2026-01-02", + "time": "7:30p", + "home_team": "Anaheim Ducks", + "away_team": "Minnesota Wild", + "home_team_abbrev": "ANA", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nhl_ana", "away_team_canonical_id": "team_nhl_min", + "venue": "Honda Center", "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260102_sea_van", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-02T08:00:00Z", + "season": "2026", + "date": "2026-01-02", + "time": "7:30p", + "home_team": "Vancouver Canucks", + "away_team": "Seattle Kraken", + "home_team_abbrev": "VAN", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_nhl_van", "away_team_canonical_id": "team_nhl_sea", + "venue": "Rogers Arena", "stadium_canonical_id": "stadium_nhl_rogers_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260103_min_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260103_phi_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260103_atl_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260103_col_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260103_buf_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260103_pit_det", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T05:00:00Z", + "season": "2026", + "date": "2026-01-03", + "time": "12p", + "home_team": "Detroit Red Wings", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "DET", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_nhl_det", "away_team_canonical_id": "team_nhl_pit", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260103_ari_njd", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T05:00:00Z", + "season": "2026", + "date": "2026-01-03", + "time": "3p", + "home_team": "New Jersey Devils", + "away_team": "Utah Club", + "home_team_abbrev": "NJ", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_nhl_njd", "away_team_canonical_id": "team_nhl_ari", + "venue": "Prudential Center", "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260103_tor_nyi", + "canonical_id": "game_nhl_2025_20260103_buf_cbj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260103_wpg_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T05:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260103_chi_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T05:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260103_cho_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260103_por_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T06:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260103_hou_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260103_mtl_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T06:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260103_nsh_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "season": "2026", + "date": "2026-01-03", + "time": "3p", + "home_team": "Columbus Blue Jackets", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260103_phi_edm", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T07:00:00Z", + "season": "2026", + "date": "2026-01-03", + "time": "1:30p", + "home_team": "Edmonton Oilers", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "EDM", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nhl_edm", "away_team_canonical_id": "team_nhl_phi", + "venue": "Rogers Place", "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260103_uta_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T08:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260103_bos_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260103_min_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T08:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260103_tb_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T08:00:00Z", + "season": "2026", + "date": "2026-01-03", + "time": "1p", + "home_team": "San Jose Sharks", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "SJ", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_nhl_sj", "away_team_canonical_id": "team_nhl_tb", + "venue": "SAP Center", "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260103_bos_van", + "canonical_id": "game_nhl_2025_20260103_mtl_stl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-03T08:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_rogers_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20260103_car_tb", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-03T21:30:00Z", - "home_team_canonical_id": "team_nfl_tb", - "away_team_canonical_id": "team_nfl_car", - "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", + "season": "2026", + "date": "2026-01-03", + "time": "3p", + "home_team": "St. Louis Blues", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "STL", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260103_car_tb", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-03T21:30:00Z", + "season": "2026", + "date": "2026-01-03", + "time": "4:30p", + "home_team": "Tampa Bay Buccaneers", + "away_team": "Carolina Panthers", + "home_team_abbrev": "TB", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nfl_tb", "away_team_canonical_id": "team_nfl_car", + "venue": "Raymond James Stadium", "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20260104_sea_sf", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-04T01:00:00Z", - "home_team_canonical_id": "team_nfl_sf", - "away_team_canonical_id": "team_nfl_sea", - "stadium_canonical_id": "stadium_nfl_levis_stadium", + "canonical_id": "game_nba_2025_20260103_min_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-01-03", + "time": "5p", + "home_team": "Miami Heat", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "MIA", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_min", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260103_wpg_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-01-03", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "OTT", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260103_nsh_cgy", + "sport": "NHL", + "season": "2026", + "date": "2026-01-03", + "time": "5p", + "home_team": "Calgary Flames", + "away_team": "Nashville Predators", + "home_team_abbrev": "CGY", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260103_chi_was", + "sport": "NHL", + "season": "2026", + "date": "2026-01-03", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "WAS", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260103_col_car", + "sport": "NHL", + "season": "2026", + "date": "2026-01-03", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "CAR", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_col", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260103_tor_nyi", + "sport": "NHL", + "season": "2026", + "date": "2026-01-03", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "NYI", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_tor", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260103_phi_nyk", + "sport": "NBA", + "season": "2026", + "date": "2026-01-03", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "NYK", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_phi", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260103_atl_tor", + "sport": "NBA", + "season": "2026", + "date": "2026-01-03", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "TOR", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_atl", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260103_por_sas", + "sport": "NBA", + "season": "2026", + "date": "2026-01-03", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Portland Blazers", + "home_team_abbrev": "SAS", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_por", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260103_cho_chi", + "sport": "NBA", + "season": "2026", + "date": "2026-01-03", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "CHI", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_cho", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260104_sea_sf", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-04T01:00:00Z", + "season": "2026", + "date": "2026-01-03", + "time": "5p", + "home_team": "San Francisco 49ers", + "away_team": "Seattle Seahawks", + "home_team_abbrev": "SF", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_nfl_sf", "away_team_canonical_id": "team_nfl_sea", + "venue": "Levi's Stadium", "stadium_canonical_id": "stadium_nfl_levis_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260104_ind_orl", + "canonical_id": "game_nba_2025_20260103_hou_dal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-04T05:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_kia_center", + "season": "2026", + "date": "2026-01-03", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Houston Rockets", + "home_team_abbrev": "DAL", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_hou", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260104_den_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-04T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260104_nop_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-04T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260104_min_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-04T05:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260104_okc_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-04T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260104_pit_cbj", + "canonical_id": "game_nhl_2025_20260103_min_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-04T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "season": "2026", + "date": "2026-01-03", + "time": "6p", + "home_team": "Los Angeles Kings", + "away_team": "Minnesota Wild", + "home_team_abbrev": "LA", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_min", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260104_col_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-04T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260104_car_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-04T05:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260104_det_cle", + "canonical_id": "game_nba_2025_20260103_uta_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-04T06:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_toyota_center", + "season": "2026", + "date": "2026-01-03", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Utah Jazz", + "home_team_abbrev": "GSW", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_uta", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260104_vgk_chi", + "canonical_id": "game_nhl_2025_20260103_bos_van", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-04T06:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_united_center", + "season": "2026", + "date": "2026-01-03", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Boston Bruins", + "home_team_abbrev": "VAN", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260104_mtl_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-04T06:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260104_mil_sac", + "canonical_id": "game_nba_2025_20260103_bos_lac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-04T08:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260104_mem_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-04T08:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20260104_no_atl", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-04T18:00:00Z", - "home_team_canonical_id": "team_nfl_atl", - "away_team_canonical_id": "team_nfl_no", - "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20260104_cle_cin", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-04T18:00:00Z", - "home_team_canonical_id": "team_nfl_cin", - "away_team_canonical_id": "team_nfl_cle", - "stadium_canonical_id": "stadium_nfl_paycor_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20260104_gb_min", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-04T18:00:00Z", - "home_team_canonical_id": "team_nfl_min", - "away_team_canonical_id": "team_nfl_gb", - "stadium_canonical_id": "stadium_nfl_us_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20260104_dal_nyg", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-04T18:00:00Z", - "home_team_canonical_id": "team_nfl_nyg", - "away_team_canonical_id": "team_nfl_dal", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20260104_ten_jax", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-04T18:00:00Z", - "home_team_canonical_id": "team_nfl_jax", - "away_team_canonical_id": "team_nfl_ten", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20260104_ind_hou", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-04T18:00:00Z", - "home_team_canonical_id": "team_nfl_hou", - "away_team_canonical_id": "team_nfl_ind", - "stadium_canonical_id": "stadium_nfl_nrg_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20260104_ten_jax", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-04T18:00:00Z", - "home_team_canonical_id": "team_nfl_jax", - "away_team_canonical_id": "team_nfl_ten", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20260104_no_atl", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-04T18:00:00Z", - "home_team_canonical_id": "team_nfl_atl", - "away_team_canonical_id": "team_nfl_no", - "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", + "season": "2026", + "date": "2026-01-03", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Boston Celtics", + "home_team_abbrev": "LAC", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_bos", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260104_ind_hou", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-04T18:00:00Z", + "season": "2026", + "date": "2026-01-04", + "time": "12p", + "home_team": "Houston Texans", + "away_team": "Indianapolis Colts", + "home_team_abbrev": "HOU", + "away_team_abbrev": "IND", "home_team_canonical_id": "team_nfl_hou", "away_team_canonical_id": "team_nfl_ind", + "venue": "NRG Stadium", "stadium_canonical_id": "stadium_nfl_nrg_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260104_gb_min", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-04T18:00:00Z", + "season": "2026", + "date": "2026-01-04", + "time": "12p", + "home_team": "Minnesota Vikings", + "away_team": "Green Bay Packers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "GB", "home_team_canonical_id": "team_nfl_min", "away_team_canonical_id": "team_nfl_gb", + "venue": "U.S. Bank Stadium", "stadium_canonical_id": "stadium_nfl_us_bank_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20260104_dal_nyg", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-04T18:00:00Z", - "home_team_canonical_id": "team_nfl_nyg", - "away_team_canonical_id": "team_nfl_dal", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260104_cle_cin", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-04T18:00:00Z", + "season": "2026", + "date": "2026-01-04", + "time": "1p", + "home_team": "Cincinnati Bengals", + "away_team": "Cleveland Browns", + "home_team_abbrev": "CIN", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nfl_cin", "away_team_canonical_id": "team_nfl_cle", + "venue": "Paycor Stadium", "stadium_canonical_id": "stadium_nfl_paycor_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20260104_nyj_buf", + "canonical_id": "game_nfl_2026_20260104_no_atl", "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-04T21:25:00Z", - "home_team_canonical_id": "team_nfl_buf", - "away_team_canonical_id": "team_nfl_nyj", - "stadium_canonical_id": "stadium_nfl_highmark_stadium", + "season": "2026", + "date": "2026-01-04", + "time": "1p", + "home_team": "Atlanta Falcons", + "away_team": "New Orleans Saints", + "home_team_abbrev": "ATL", + "away_team_abbrev": "NO", + "home_team_canonical_id": "team_nfl_atl", + "away_team_canonical_id": "team_nfl_no", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20260104_det_chi", + "canonical_id": "game_nfl_2026_20260104_ten_jax", "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-04T21:25:00Z", - "home_team_canonical_id": "team_nfl_chi", - "away_team_canonical_id": "team_nfl_det", - "stadium_canonical_id": "stadium_nfl_soldier_field", + "season": "2026", + "date": "2026-01-04", + "time": "1p", + "home_team": "Jacksonville Jaguars", + "away_team": "Tennessee Titans", + "home_team_abbrev": "JAX", + "away_team_abbrev": "TEN", + "home_team_canonical_id": "team_nfl_jax", + "away_team_canonical_id": "team_nfl_ten", + "venue": "EverBank Stadium", + "stadium_canonical_id": "stadium_nfl_everbank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20260104_lac_den", + "canonical_id": "game_nfl_2026_20260104_dal_nyg", "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-04T21:25:00Z", - "home_team_canonical_id": "team_nfl_den", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "stadium_nfl_empower_field", + "season": "2026", + "date": "2026-01-04", + "time": "1p", + "home_team": "New York Giants", + "away_team": "Dallas Cowboys", + "home_team_abbrev": "NYG", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nfl_nyg", + "away_team_canonical_id": "team_nfl_dal", + "venue": "MetLife Stadium", + "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20260104_kc_lv", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-04T21:25:00Z", - "home_team_canonical_id": "team_nfl_lv", - "away_team_canonical_id": "team_nfl_kc", - "stadium_canonical_id": "stadium_nfl_allegiant_stadium", + "canonical_id": "game_nba_2025_20260104_det_cle", + "sport": "NBA", + "season": "2026", + "date": "2026-01-04", + "time": "1p", + "home_team": "Cleveland Cavaliers", + "away_team": "Detroit Pistons", + "home_team_abbrev": "CLE", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_det", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20260104_ari_lar", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-04T21:25:00Z", - "home_team_canonical_id": "team_nfl_lar", - "away_team_canonical_id": "team_nfl_ari", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "canonical_id": "game_nhl_2025_20260104_mtl_dal", + "sport": "NHL", + "season": "2026", + "date": "2026-01-04", + "time": "1p", + "home_team": "Dallas Stars", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "DAL", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20260104_mia_ne", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-04T21:25:00Z", - "home_team_canonical_id": "team_nfl_ne", - "away_team_canonical_id": "team_nfl_mia", - "stadium_canonical_id": "stadium_nfl_gillette_stadium", + "canonical_id": "game_nba_2025_20260104_ind_orl", + "sport": "NBA", + "season": "2026", + "date": "2026-01-04", + "time": "3p", + "home_team": "Orlando Magic", + "away_team": "Indiana Pacers", + "home_team_abbrev": "ORL", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_ind", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20260104_was_phi", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-04T21:25:00Z", - "home_team_canonical_id": "team_nfl_phi", - "away_team_canonical_id": "team_nfl_was", - "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", + "canonical_id": "game_nhl_2025_20260104_pit_cbj", + "sport": "NHL", + "season": "2026", + "date": "2026-01-04", + "time": "3p", + "home_team": "Columbus Blue Jackets", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_pit", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2026_20260104_was_phi", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-04T21:25:00Z", - "home_team_canonical_id": "team_nfl_phi", - "away_team_canonical_id": "team_nfl_was", - "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20260104_nyj_buf", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-04T21:25:00Z", - "home_team_canonical_id": "team_nfl_buf", - "away_team_canonical_id": "team_nfl_nyj", - "stadium_canonical_id": "stadium_nfl_highmark_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20260104_mia_ne", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-04T21:25:00Z", - "home_team_canonical_id": "team_nfl_ne", - "away_team_canonical_id": "team_nfl_mia", - "stadium_canonical_id": "stadium_nfl_gillette_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2026_20260104_lac_den", - "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-04T21:25:00Z", - "home_team_canonical_id": "team_nfl_den", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "stadium_nfl_empower_field_at_mile_high", + "canonical_id": "game_nba_2025_20260104_den_brk", + "sport": "NBA", + "season": "2026", + "date": "2026-01-04", + "time": "3:30p", + "home_team": "Brooklyn Nets", + "away_team": "Denver Nuggets", + "home_team_abbrev": "BKN", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_den", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260104_kc_lv", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-04T21:25:00Z", + "season": "2026", + "date": "2026-01-04", + "time": "1:25p", + "home_team": "Las Vegas Raiders", + "away_team": "Kansas City Chiefs", + "home_team_abbrev": "LV", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_nfl_lv", "away_team_canonical_id": "team_nfl_kc", + "venue": "Allegiant Stadium", "stadium_canonical_id": "stadium_nfl_allegiant_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2026_20260104_det_chi", + "canonical_id": "game_nfl_2026_20260104_was_phi", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-04T21:25:00Z", - "home_team_canonical_id": "team_nfl_chi", - "away_team_canonical_id": "team_nfl_det", - "stadium_canonical_id": "stadium_nfl_soldier_field", + "season": "2026", + "date": "2026-01-04", + "time": "4:25p", + "home_team": "Philadelphia Eagles", + "away_team": "Washington Commanders", + "home_team_abbrev": "PHI", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nfl_phi", + "away_team_canonical_id": "team_nfl_was", + "venue": "Lincoln Financial Field", + "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20260104_mia_ne", + "sport": "NFL", + "season": "2026", + "date": "2026-01-04", + "time": "4:25p", + "home_team": "New England Patriots", + "away_team": "Miami Dolphins", + "home_team_abbrev": "NE", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nfl_ne", + "away_team_canonical_id": "team_nfl_mia", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_nfl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260104_ari_lar", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-04T21:25:00Z", + "season": "2026", + "date": "2026-01-04", + "time": "1:25p", + "home_team": "Los Angeles Rams", + "away_team": "Arizona Cardinals", + "home_team_abbrev": "LAR", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_nfl_lar", "away_team_canonical_id": "team_nfl_ari", + "venue": "SoFi Stadium", "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20260105_bal_pit", + "canonical_id": "game_nfl_2026_20260104_lac_den", "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-05T01:20:00Z", - "home_team_canonical_id": "team_nfl_pit", - "away_team_canonical_id": "team_nfl_bal", - "stadium_canonical_id": "stadium_nfl_acrisure_stadium", + "season": "2026", + "date": "2026-01-04", + "time": "2:25p", + "home_team": "Denver Broncos", + "away_team": "Los Angeles Chargers", + "home_team_abbrev": "DEN", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nfl_den", + "away_team_canonical_id": "team_nfl_lac", + "venue": "Empower Field at Mile High", + "stadium_canonical_id": "stadium_nfl_empower_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20260104_det_chi", + "sport": "NFL", + "season": "2026", + "date": "2026-01-04", + "time": "3:25p", + "home_team": "Chicago Bears", + "away_team": "Detroit Lions", + "home_team_abbrev": "CHI", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nfl_chi", + "away_team_canonical_id": "team_nfl_det", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_nfl_soldier_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nfl_2026_20260104_nyj_buf", + "sport": "NFL", + "season": "2026", + "date": "2026-01-04", + "time": "4:25p", + "home_team": "Buffalo Bills", + "away_team": "New York Jets", + "home_team_abbrev": "BUF", + "away_team_abbrev": "NYJ", + "home_team_canonical_id": "team_nfl_buf", + "away_team_canonical_id": "team_nfl_nyj", + "venue": "Highmark Stadium", + "stadium_canonical_id": "stadium_nfl_highmark_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260104_col_fla", + "sport": "NHL", + "season": "2026", + "date": "2026-01-04", + "time": "5p", + "home_team": "Florida Panthers", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "FLA", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_col", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260104_min_was", + "sport": "NBA", + "season": "2026", + "date": "2026-01-04", + "time": "6p", + "home_team": "Washington Wizards", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "WAS", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_min", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260104_nop_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-01-04", + "time": "6p", + "home_team": "Miami Heat", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "MIA", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_nop", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260104_vgk_chi", + "sport": "NHL", + "season": "2026", + "date": "2026-01-04", + "time": "6p", + "home_team": "Chicago Blackhawks", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "CHI", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260104_car_njd", + "sport": "NHL", + "season": "2026", + "date": "2026-01-04", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "NJ", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_car", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260104_okc_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-01-04", + "time": "8p", + "home_team": "Phoenix Suns", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "PHX", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_okc", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260105_bal_pit", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-05T01:20:00Z", + "season": "2026", + "date": "2026-01-04", + "time": "8:20p", + "home_team": "Pittsburgh Steelers", + "away_team": "Baltimore Ravens", + "home_team_abbrev": "PIT", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_nfl_pit", "away_team_canonical_id": "team_nfl_bal", + "venue": "Acrisure Stadium", "stadium_canonical_id": "stadium_nfl_acrisure_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260104_mil_sac", + "sport": "NBA", + "season": "2026", + "date": "2026-01-04", + "time": "6p", + "home_team": "Sacramento Kings", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "SAC", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_mil", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260104_mem_lal", + "sport": "NBA", + "season": "2026", + "date": "2026-01-04", + "time": "6:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "LAL", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_mem", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260105_nyk_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-05T05:00:00Z", + "season": "2026", + "date": "2026-01-05", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "New York Knicks", + "home_team_abbrev": "DET", + "away_team_abbrev": "NYK", "home_team_canonical_id": "team_nba_det", "away_team_canonical_id": "team_nba_nyk", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260105_chi_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-05T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260105_atl_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-05T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260105_ari_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-05T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260105_det_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-05T05:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260105_ana_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-05T05:00:00Z", + "season": "2026", + "date": "2026-01-05", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "WAS", + "away_team_abbrev": "ANA", "home_team_canonical_id": "team_nhl_was", "away_team_canonical_id": "team_nhl_ana", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260105_phx_hou", + "canonical_id": "game_nhl_2025_20260105_ari_nyr", + "sport": "NHL", + "season": "2026", + "date": "2026-01-05", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Utah Club", + "home_team_abbrev": "NYR", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260105_atl_tor", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-05T06:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_toyota_center", + "season": "2026", + "date": "2026-01-05", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "TOR", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_atl", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260105_chi_bos", + "sport": "NBA", + "season": "2026", + "date": "2026-01-05", + "time": "7:30p", + "home_team": "Boston Celtics", + "away_team": "Chicago Bulls", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_chi", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260105_det_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-01-05", + "time": "7:30p", + "home_team": "Ottawa Senators", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "OTT", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_det", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260105_cho_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-05T06:00:00Z", + "season": "2026", + "date": "2026-01-05", + "time": "7p", + "home_team": "Oklahoma City Thunder", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "OKC", + "away_team_abbrev": "CHA", "home_team_canonical_id": "team_nba_okc", "away_team_canonical_id": "team_nba_cho", + "venue": "Paycom Center", "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260105_sea_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-05T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "canonical_id": "game_nba_2025_20260105_phx_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-01-05", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Phoenix Suns", + "home_team_abbrev": "HOU", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_phx", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260105_den_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-05T08:00:00Z", + "season": "2026", + "date": "2026-01-05", + "time": "5:30p", + "home_team": "Philadelphia 76ers", + "away_team": "Denver Nuggets", + "home_team_abbrev": "PHI", + "away_team_abbrev": "DEN", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_den", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260105_gsw_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-05T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_intuit_dome", + "canonical_id": "game_nhl_2025_20260105_sea_cgy", + "sport": "NHL", + "season": "2026", + "date": "2026-01-05", + "time": "7:30p", + "home_team": "Calgary Flames", + "away_team": "Seattle Kraken", + "home_team_abbrev": "CGY", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260105_uta_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-05T08:00:00Z", + "season": "2026", + "date": "2026-01-05", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Utah Jazz", + "home_team_abbrev": "POR", + "away_team_abbrev": "UTA", "home_team_canonical_id": "team_nba_por", "away_team_canonical_id": "team_nba_uta", + "venue": "Moda Center", "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260105_gsw_lac", + "sport": "NBA", + "season": "2026", + "date": "2026-01-05", + "time": "7p", + "home_team": "Los Angeles Clippers", + "away_team": "Golden State Warriors", + "home_team_abbrev": "LAC", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260105_min_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-05T08:00:00Z", + "season": "2026", + "date": "2026-01-05", + "time": "7:30p", + "home_team": "Los Angeles Kings", + "away_team": "Minnesota Wild", + "home_team_abbrev": "LA", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nhl_la", "away_team_canonical_id": "team_nhl_min", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260106_cle_ind", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-06T05:00:00Z", + "season": "2026", + "date": "2026-01-06", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "IND", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nba_ind", "away_team_canonical_id": "team_nba_cle", + "venue": "Gainbridge Fieldhouse", "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260106_orl_was", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-06T05:00:00Z", + "season": "2026", + "date": "2026-01-06", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Orlando Magic", + "home_team_abbrev": "WAS", + "away_team_abbrev": "ORL", "home_team_canonical_id": "team_nba_was", "away_team_canonical_id": "team_nba_orl", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260106_van_buf", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-06T05:00:00Z", + "season": "2026", + "date": "2026-01-06", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "BUF", + "away_team_abbrev": "VAN", "home_team_canonical_id": "team_nhl_buf", "away_team_canonical_id": "team_nhl_van", + "venue": "KeyBank Center", "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260106_dal_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-06T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260106_njd_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-06T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260106_ana_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-06T05:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260106_col_tb", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-06T05:00:00Z", + "season": "2026", + "date": "2026-01-06", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "TB", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_nhl_tb", "away_team_canonical_id": "team_nhl_col", + "venue": "Amalie Arena", "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260106_ana_phi", + "sport": "NHL", + "season": "2026", + "date": "2026-01-06", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "PHI", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260106_dal_car", + "sport": "NHL", + "season": "2026", + "date": "2026-01-06", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Dallas Stars", + "home_team_abbrev": "CAR", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_dal", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260106_njd_nyi", + "sport": "NHL", + "season": "2026", + "date": "2026-01-06", + "time": "7:30p", + "home_team": "New York Islanders", + "away_team": "New Jersey Devils", + "home_team_abbrev": "NYI", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_njd", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260106_fla_tor", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-06T05:00:00Z", + "season": "2026", + "date": "2026-01-06", + "time": "7:30p", + "home_team": "Toronto Maple Leafs", + "away_team": "Florida Panthers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "FLA", "home_team_canonical_id": "team_nhl_tor", "away_team_canonical_id": "team_nhl_fla", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260106_sas_mem", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-06T06:00:00Z", + "season": "2026", + "date": "2026-01-06", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "MEM", + "away_team_abbrev": "SAS", "home_team_canonical_id": "team_nba_mem", "away_team_canonical_id": "team_nba_sas", + "venue": "FedExForum", "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260106_mia_min", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-06T06:00:00Z", + "season": "2026", + "date": "2026-01-06", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "Miami Heat", + "home_team_abbrev": "MIN", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_nba_min", "away_team_canonical_id": "team_nba_mia", + "venue": "Target Center", "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260106_lal_nop", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-06T06:00:00Z", + "season": "2026", + "date": "2026-01-06", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "NOP", + "away_team_abbrev": "LAL", "home_team_canonical_id": "team_nba_nop", "away_team_canonical_id": "team_nba_lal", + "venue": "Smoothie King Center", "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260106_vgk_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-06T06:00:00Z", + "season": "2026", + "date": "2026-01-06", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "WPG", + "away_team_abbrev": "VGK", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_vgk", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260106_nsh_edm", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-06T07:00:00Z", + "season": "2026", + "date": "2026-01-06", + "time": "7p", + "home_team": "Edmonton Oilers", + "away_team": "Nashville Predators", + "home_team_abbrev": "EDM", + "away_team_abbrev": "NSH", "home_team_canonical_id": "team_nhl_edm", "away_team_canonical_id": "team_nhl_nsh", + "venue": "Rogers Place", "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260106_dal_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-06T08:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260106_bos_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-06T08:00:00Z", + "season": "2026", + "date": "2026-01-06", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Boston Bruins", + "home_team_abbrev": "SEA", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_nhl_sea", "away_team_canonical_id": "team_nhl_bos", + "venue": "Climate Pledge Arena", "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260106_cbj_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-06T08:00:00Z", + "season": "2026", + "date": "2026-01-06", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "SJ", + "away_team_abbrev": "CBJ", "home_team_canonical_id": "team_nhl_sj", "away_team_canonical_id": "team_nhl_cbj", + "venue": "SAP Center", "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260107_den_bos", + "canonical_id": "game_nba_2025_20260106_dal_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-07T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260107_tor_cho", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-07T05:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_spectrum_center", + "season": "2026", + "date": "2026-01-06", + "time": "8p", + "home_team": "Sacramento Kings", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "SAC", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_dal", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260107_chi_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-07T05:00:00Z", + "season": "2026", + "date": "2026-01-07", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Chicago Bulls", + "home_team_abbrev": "DET", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nba_det", "away_team_canonical_id": "team_nba_chi", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260107_nop_atl", + "canonical_id": "game_nba_2025_20260107_den_bos", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-07T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260107_orl_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-07T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260107_lac_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-07T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260107_cgy_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-07T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260107_dal_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-07T05:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260107_phx_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-07T06:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260107_uta_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-07T06:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260107_lal_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-07T06:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260107_stl_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-07T06:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260107_ott_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-07T07:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_delta_center", + "season": "2026", + "date": "2026-01-07", + "time": "7p", + "home_team": "Boston Celtics", + "away_team": "Denver Nuggets", + "home_team_abbrev": "BOS", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_den", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260107_was_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-07T08:00:00Z", + "season": "2026", + "date": "2026-01-07", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Washington Wizards", + "home_team_abbrev": "PHI", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_was", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260107_tor_cho", + "sport": "NBA", + "season": "2026", + "date": "2026-01-07", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Toronto Raptors", + "home_team_abbrev": "CHA", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_tor", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260107_dal_was", + "sport": "NHL", + "season": "2026", + "date": "2026-01-07", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Dallas Stars", + "home_team_abbrev": "WAS", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260107_orl_brk", + "sport": "NBA", + "season": "2026", + "date": "2026-01-07", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Orlando Magic", + "home_team_abbrev": "BKN", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_orl", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260107_lac_nyk", + "sport": "NBA", + "season": "2026", + "date": "2026-01-07", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "NYK", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_lac", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260107_nop_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-01-07", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "ATL", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_nop", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260107_cgy_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-01-07", + "time": "7:30p", + "home_team": "Montreal Canadiens", + "away_team": "Calgary Flames", + "home_team_abbrev": "MTL", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260107_uta_okc", + "sport": "NBA", + "season": "2026", + "date": "2026-01-07", + "time": "7p", + "home_team": "Oklahoma City Thunder", + "away_team": "Utah Jazz", + "home_team_abbrev": "OKC", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_uta", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260107_phx_mem", + "sport": "NBA", + "season": "2026", + "date": "2026-01-07", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Phoenix Suns", + "home_team_abbrev": "MEM", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_phx", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260107_lal_sas", + "sport": "NBA", + "season": "2026", + "date": "2026-01-07", + "time": "8:30p", + "home_team": "San Antonio Spurs", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "SAS", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_lal", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260107_ott_ari", + "sport": "NHL", + "season": "2026", + "date": "2026-01-07", + "time": "7:30p", + "home_team": "Utah Club", + "away_team": "Ottawa Senators", + "home_team_abbrev": "ARI", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260107_stl_chi", + "sport": "NHL", + "season": "2026", + "date": "2026-01-07", + "time": "8:30p", + "home_team": "Chicago Blackhawks", + "away_team": "St. Louis Blues", + "home_team_abbrev": "CHI", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_stl", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260107_mil_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-07T08:00:00Z", + "season": "2026", + "date": "2026-01-07", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "GSW", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_nba_gsw", "away_team_canonical_id": "team_nba_mil", + "venue": "Chase Center", "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260107_hou_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-07T08:00:00Z", + "season": "2026", + "date": "2026-01-07", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Houston Rockets", + "home_team_abbrev": "POR", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nba_por", "away_team_canonical_id": "team_nba_hou", + "venue": "Moda Center", "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260107_sj_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-07T08:00:00Z", + "season": "2026", + "date": "2026-01-07", + "time": "7:30p", + "home_team": "Los Angeles Kings", + "away_team": "San Jose Sharks", + "home_team_abbrev": "LA", + "away_team_abbrev": "SJ", "home_team_canonical_id": "team_nhl_la", "away_team_canonical_id": "team_nhl_sj", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260108_ind_cho", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-08T05:00:00Z", + "season": "2026", + "date": "2026-01-08", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Indiana Pacers", + "home_team_abbrev": "CHA", + "away_team_abbrev": "IND", "home_team_canonical_id": "team_nba_cho", "away_team_canonical_id": "team_nba_ind", + "venue": "Spectrum Center", "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260108_cgy_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-08T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260108_ana_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-08T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260108_van_det", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-08T05:00:00Z", + "season": "2026", + "date": "2026-01-08", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "DET", + "away_team_abbrev": "VAN", "home_team_canonical_id": "team_nhl_det", "away_team_canonical_id": "team_nhl_van", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260108_fla_mtl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-08T05:00:00Z", + "season": "2026", + "date": "2026-01-08", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Florida Panthers", + "home_team_abbrev": "MTL", + "away_team_abbrev": "FLA", "home_team_canonical_id": "team_nhl_mtl", "away_team_canonical_id": "team_nhl_fla", + "venue": "Bell Centre", "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260108_buf_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-08T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260108_tor_phi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-08T05:00:00Z", + "season": "2026", + "date": "2026-01-08", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_nhl_phi", "away_team_canonical_id": "team_nhl_tor", + "venue": "Wells Fargo Center", "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260108_njd_pit", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-08T05:00:00Z", + "season": "2026", + "date": "2026-01-08", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "New Jersey Devils", + "home_team_abbrev": "PIT", + "away_team_abbrev": "NJ", "home_team_canonical_id": "team_nhl_pit", "away_team_canonical_id": "team_nhl_njd", + "venue": "PPG Paints Arena", "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260108_buf_nyr", + "sport": "NHL", + "season": "2026", + "date": "2026-01-08", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "NYR", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260108_cgy_bos", + "sport": "NHL", + "season": "2026", + "date": "2026-01-08", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Calgary Flames", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260108_ana_car", + "sport": "NHL", + "season": "2026", + "date": "2026-01-08", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "CAR", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_ana", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260108_cle_min", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-08T06:00:00Z", + "season": "2026", + "date": "2026-01-08", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nba_min", "away_team_canonical_id": "team_nba_cle", + "venue": "Target Center", "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260108_nyi_nsh", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-08T06:00:00Z", + "season": "2026", + "date": "2026-01-08", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "New York Islanders", + "home_team_abbrev": "NSH", + "away_team_abbrev": "NYI", "home_team_canonical_id": "team_nhl_nsh", "away_team_canonical_id": "team_nhl_nyi", + "venue": "Bridgestone Arena", "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260108_edm_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-08T06:00:00Z", + "season": "2026", + "date": "2026-01-08", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "WPG", + "away_team_abbrev": "EDM", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_edm", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260108_dal_uta", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-08T07:00:00Z", + "season": "2026", + "date": "2026-01-08", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "UTA", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nba_uta", "away_team_canonical_id": "team_nba_dal", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260108_ott_col", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-08T07:00:00Z", + "season": "2026", + "date": "2026-01-08", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "Ottawa Senators", + "home_team_abbrev": "COL", + "away_team_abbrev": "OTT", "home_team_canonical_id": "team_nhl_col", "away_team_canonical_id": "team_nhl_ott", + "venue": "Ball Arena", "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260108_min_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-08T08:00:00Z", + "season": "2026", + "date": "2026-01-08", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Minnesota Wild", + "home_team_abbrev": "SEA", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nhl_sea", "away_team_canonical_id": "team_nhl_min", + "venue": "Climate Pledge Arena", "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260108_cbj_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-08T08:00:00Z", + "season": "2026", + "date": "2026-01-08", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "VGK", + "away_team_abbrev": "CBJ", "home_team_canonical_id": "team_nhl_vgk", "away_team_canonical_id": "team_nhl_cbj", + "venue": "T-Mobile Arena", "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260109_tor_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-09T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_td_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260109_phi_orl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-09T05:00:00Z", + "season": "2026", + "date": "2026-01-09", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "ORL", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nba_orl", "away_team_canonical_id": "team_nba_phi", + "venue": "Kia Center", "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260109_tor_bos", + "sport": "NBA", + "season": "2026", + "date": "2026-01-09", + "time": "7p", + "home_team": "Boston Celtics", + "away_team": "Toronto Raptors", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_tor", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260109_nop_was", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-09T05:00:00Z", + "season": "2026", + "date": "2026-01-09", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "WAS", + "away_team_abbrev": "NOP", "home_team_canonical_id": "team_nba_was", "away_team_canonical_id": "team_nba_nop", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260109_lac_brk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-09T05:00:00Z", + "season": "2026", + "date": "2026-01-09", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "BKN", + "away_team_abbrev": "LAC", "home_team_canonical_id": "team_nba_brk", "away_team_canonical_id": "team_nba_lac", + "venue": "Barclays Center", "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260109_nyk_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-09T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260109_okc_mem", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-09T06:00:00Z", + "season": "2026", + "date": "2026-01-09", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "MEM", + "away_team_abbrev": "OKC", "home_team_canonical_id": "team_nba_mem", "away_team_canonical_id": "team_nba_okc", + "venue": "FedExForum", "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260109_was_chi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-09T06:00:00Z", + "season": "2026", + "date": "2026-01-09", + "time": "7p", + "home_team": "Chicago Blackhawks", + "away_team": "Washington Capitals", + "home_team_abbrev": "CHI", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nhl_chi", "away_team_canonical_id": "team_nhl_was", + "venue": "United Center", "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260109_la_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-09T06:00:00Z", + "season": "2026", + "date": "2026-01-09", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "WPG", + "away_team_abbrev": "LA", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_la", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260109_nyk_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-01-09", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "New York Knicks", + "home_team_abbrev": "PHX", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260109_atl_den", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-09T07:00:00Z", + "season": "2026", + "date": "2026-01-09", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "DEN", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nba_den", "away_team_canonical_id": "team_nba_atl", + "venue": "Ball Arena", "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260109_stl_ari", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-09T07:00:00Z", + "season": "2026", + "date": "2026-01-09", + "time": "7p", + "home_team": "Utah Club", + "away_team": "St. Louis Blues", + "home_team_abbrev": "ARI", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_nhl_ari", "away_team_canonical_id": "team_nhl_stl", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260109_sac_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-09T08:00:00Z", + "season": "2026", + "date": "2026-01-09", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Sacramento Kings", + "home_team_abbrev": "GSW", + "away_team_abbrev": "SAC", "home_team_canonical_id": "team_nba_gsw", "away_team_canonical_id": "team_nba_sac", + "venue": "Chase Center", "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260109_hou_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-09T08:00:00Z", + "season": "2026", + "date": "2026-01-09", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Houston Rockets", + "home_team_abbrev": "POR", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nba_por", "away_team_canonical_id": "team_nba_hou", + "venue": "Moda Center", "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260109_mil_lal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-09T08:00:00Z", + "season": "2026", + "date": "2026-01-09", + "time": "7:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "LAL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_nba_lal", "away_team_canonical_id": "team_nba_mil", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260110_mia_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T05:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260110_lac_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T05:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260110_sas_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260110_nyr_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260110_ana_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T05:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260110_sea_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260110_det_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260110_fla_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T05:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260110_tb_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T05:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260110_cgy_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T05:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260110_van_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T05:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260110_min_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T06:00:00Z", + "season": "2026", + "date": "2026-01-10", + "time": "12p", + "home_team": "Cleveland Cavaliers", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "CLE", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nba_cle", "away_team_canonical_id": "team_nba_min", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260110_dal_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260110_nyi_min", + "canonical_id": "game_nhl_2025_20260110_nyr_bos", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T06:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "season": "2026", + "date": "2026-01-10", + "time": "1p", + "home_team": "Boston Bruins", + "away_team": "New York Rangers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260110_chi_nsh", + "canonical_id": "game_nhl_2025_20260110_cgy_pit", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T06:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260110_cho_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_delta_center", + "season": "2026", + "date": "2026-01-10", + "time": "3:30p", + "home_team": "Pittsburgh Penguins", + "away_team": "Calgary Flames", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260110_cbj_col", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T07:00:00Z", + "season": "2026", + "date": "2026-01-10", + "time": "2p", + "home_team": "Colorado Avalanche", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "COL", + "away_team_abbrev": "CBJ", "home_team_canonical_id": "team_nhl_col", "away_team_canonical_id": "team_nhl_cbj", + "venue": "Ball Arena", "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260110_la_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260110_dal_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T08:00:00Z", + "season": "2026", + "date": "2026-01-10", + "time": "1p", + "home_team": "San Jose Sharks", + "away_team": "Dallas Stars", + "home_team_abbrev": "SJ", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nhl_sj", "away_team_canonical_id": "team_nhl_dal", + "venue": "SAP Center", "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260110_stl_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-10T08:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20260110_lar_car", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-10T21:30:00Z", - "home_team_canonical_id": "team_nfl_car", - "away_team_canonical_id": "team_nfl_lar", - "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260110_lar_car", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-10T21:30:00Z", + "season": "2026", + "date": "2026-01-10", + "time": "4:30p", + "home_team": "Carolina Panthers", + "away_team": "Los Angeles Rams", + "home_team_abbrev": "CAR", + "away_team_abbrev": "LAR", "home_team_canonical_id": "team_nfl_car", "away_team_canonical_id": "team_nfl_lar", + "venue": "Bank of America Stadium", "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20260111_gb_chi", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-11T01:00:00Z", - "home_team_canonical_id": "team_nfl_chi", - "away_team_canonical_id": "team_nfl_gb", - "stadium_canonical_id": "stadium_nfl_soldier_field", + "canonical_id": "game_nba_2025_20260110_mia_ind", + "sport": "NBA", + "season": "2026", + "date": "2026-01-10", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Miami Heat", + "home_team_abbrev": "IND", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_mia", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260110_ana_buf", + "sport": "NHL", + "season": "2026", + "date": "2026-01-10", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "BUF", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_ana", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260110_tb_phi", + "sport": "NHL", + "season": "2026", + "date": "2026-01-10", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260110_fla_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-01-10", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Florida Panthers", + "home_team_abbrev": "OTT", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260110_det_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-01-10", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "MTL", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_det", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260110_van_tor", + "sport": "NHL", + "season": "2026", + "date": "2026-01-10", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "TOR", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_van", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260110_sea_car", + "sport": "NHL", + "season": "2026", + "date": "2026-01-10", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Seattle Kraken", + "home_team_abbrev": "CAR", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_sea", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260110_lac_det", + "sport": "NBA", + "season": "2026", + "date": "2026-01-10", + "time": "7:30p", + "home_team": "Detroit Pistons", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "DET", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_lac", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260110_dal_chi", + "sport": "NBA", + "season": "2026", + "date": "2026-01-10", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "CHI", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_dal", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260110_sas_bos", + "sport": "NBA", + "season": "2026", + "date": "2026-01-10", + "time": "8p", + "home_team": "Boston Celtics", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "BOS", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_sas", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260111_gb_chi", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-11T01:00:00Z", + "season": "2026", + "date": "2026-01-10", + "time": "7p", + "home_team": "Chicago Bears", + "away_team": "Green Bay Packers", + "home_team_abbrev": "CHI", + "away_team_abbrev": "GB", "home_team_canonical_id": "team_nfl_chi", "away_team_canonical_id": "team_nfl_gb", + "venue": "Soldier Field", "stadium_canonical_id": "stadium_nfl_soldier_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260111_nop_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-11T05:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260111_phi_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-11T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260111_was_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-11T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260111_pit_bos", + "canonical_id": "game_nhl_2025_20260110_chi_nsh", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-11T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260111_brk_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-11T06:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260111_sas_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-11T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260111_mia_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-11T06:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260111_was_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-11T06:00:00Z", + "season": "2026", + "date": "2026-01-10", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "NSH", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Bridgestone Arena", "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260111_njd_wpg", + "canonical_id": "game_nhl_2025_20260110_nyi_min", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-11T06:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "season": "2026", + "date": "2026-01-10", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "New York Islanders", + "home_team_abbrev": "MIN", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260111_mil_den", + "canonical_id": "game_nba_2025_20260110_cho_uta", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-11T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_ball_arena", + "season": "2026", + "date": "2026-01-10", + "time": "7:30p", + "home_team": "Utah Jazz", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "UTA", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_cho", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260111_cbj_ari", + "canonical_id": "game_nhl_2025_20260110_la_edm", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-11T07:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_delta_center", + "season": "2026", + "date": "2026-01-10", + "time": "8p", + "home_team": "Edmonton Oilers", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "EDM", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_la", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260111_nyk_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-11T08:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260111_atl_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-11T08:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260111_hou_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-11T08:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260111_vgk_sj", + "canonical_id": "game_nhl_2025_20260110_stl_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-11T08:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20260111_buf_jax", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-11T18:00:00Z", - "home_team_canonical_id": "team_nfl_jax", - "away_team_canonical_id": "team_nfl_buf", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", + "season": "2026", + "date": "2026-01-10", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "St. Louis Blues", + "home_team_abbrev": "VGK", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_stl", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260111_buf_jax", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-11T18:00:00Z", + "season": "2026", + "date": "2026-01-11", + "time": "1p", + "home_team": "Jacksonville Jaguars", + "away_team": "Buffalo Bills", + "home_team_abbrev": "JAX", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nfl_jax", "away_team_canonical_id": "team_nfl_buf", + "venue": "EverBank Stadium", "stadium_canonical_id": "stadium_nfl_everbank_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20260111_sf_phi", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-11T21:30:00Z", - "home_team_canonical_id": "team_nfl_phi", - "away_team_canonical_id": "team_nfl_sf", - "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", + "canonical_id": "game_nhl_2025_20260111_njd_wpg", + "sport": "NHL", + "season": "2026", + "date": "2026-01-11", + "time": "1p", + "home_team": "Winnipeg Jets", + "away_team": "New Jersey Devils", + "home_team_abbrev": "WPG", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_njd", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260111_nop_orl", + "sport": "NBA", + "season": "2026", + "date": "2026-01-11", + "time": "3p", + "home_team": "Orlando Magic", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "ORL", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_nop", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260111_brk_mem", + "sport": "NBA", + "season": "2026", + "date": "2026-01-11", + "time": "2:30p", + "home_team": "Memphis Grizzlies", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "MEM", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_brk", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260111_sf_phi", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-11T21:30:00Z", + "season": "2026", + "date": "2026-01-11", + "time": "4:30p", + "home_team": "Philadelphia Eagles", + "away_team": "San Francisco 49ers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_nfl_phi", "away_team_canonical_id": "team_nfl_sf", + "venue": "Lincoln Financial Field", "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20260112_lac_ne", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-12T01:15:00Z", - "home_team_canonical_id": "team_nfl_ne", - "away_team_canonical_id": "team_nfl_lac", - "stadium_canonical_id": "stadium_nfl_gillette_stadium", + "canonical_id": "game_nhl_2025_20260111_pit_bos", + "sport": "NHL", + "season": "2026", + "date": "2026-01-11", + "time": "5p", + "home_team": "Boston Bruins", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "BOS", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_pit", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260111_nyk_por", + "sport": "NBA", + "season": "2026", + "date": "2026-01-11", + "time": "3p", + "home_team": "Portland Blazers", + "away_team": "New York Knicks", + "home_team_abbrev": "POR", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260111_phi_tor", + "sport": "NBA", + "season": "2026", + "date": "2026-01-11", + "time": "6p", + "home_team": "Toronto Raptors", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_phi", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260111_sas_min", + "sport": "NBA", + "season": "2026", + "date": "2026-01-11", + "time": "6p", + "home_team": "Minnesota Timberwolves", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "MIN", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_sas", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260111_mia_okc", + "sport": "NBA", + "season": "2026", + "date": "2026-01-11", + "time": "6p", + "home_team": "Oklahoma City Thunder", + "away_team": "Miami Heat", + "home_team_abbrev": "OKC", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_mia", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260111_cbj_ari", + "sport": "NHL", + "season": "2026", + "date": "2026-01-11", + "time": "5p", + "home_team": "Utah Club", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260111_was_nsh", + "sport": "NHL", + "season": "2026", + "date": "2026-01-11", + "time": "6p", + "home_team": "Nashville Predators", + "away_team": "Washington Capitals", + "home_team_abbrev": "NSH", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_was", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260111_was_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-01-11", + "time": "8p", + "home_team": "Phoenix Suns", + "away_team": "Washington Wizards", + "home_team_abbrev": "PHX", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_was", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260111_mil_den", + "sport": "NBA", + "season": "2026", + "date": "2026-01-11", + "time": "6p", + "home_team": "Denver Nuggets", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "DEN", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_mil", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260111_vgk_sj", + "sport": "NHL", + "season": "2026", + "date": "2026-01-11", + "time": "5p", + "home_team": "San Jose Sharks", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "SJ", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260112_lac_ne", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-12T01:15:00Z", + "season": "2026", + "date": "2026-01-11", + "time": "8:15p", + "home_team": "New England Patriots", + "away_team": "Los Angeles Chargers", + "home_team_abbrev": "NE", + "away_team_abbrev": "LAC", "home_team_canonical_id": "team_nfl_ne", "away_team_canonical_id": "team_nfl_lac", + "venue": "Gillette Stadium", "stadium_canonical_id": "stadium_nfl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260112_bos_ind", + "canonical_id": "game_nba_2025_20260111_atl_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-12T05:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "season": "2026", + "date": "2026-01-11", + "time": "5:30p", + "home_team": "Golden State Warriors", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "GSW", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_atl", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260112_phi_tor", + "canonical_id": "game_nba_2025_20260111_hou_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-12T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260112_fla_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-12T05:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260112_car_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-12T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260112_van_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-12T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260112_sea_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-12T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260112_tb_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-12T05:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "season": "2026", + "date": "2026-01-11", + "time": "6p", + "home_team": "Sacramento Kings", + "away_team": "Houston Rockets", + "home_team_abbrev": "SAC", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_hou", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260112_uta_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-12T06:00:00Z", + "season": "2026", + "date": "2026-01-12", + "time": "6p", + "home_team": "Cleveland Cavaliers", + "away_team": "Utah Jazz", + "home_team_abbrev": "CLE", + "away_team_abbrev": "UTA", "home_team_canonical_id": "team_nba_cle", "away_team_canonical_id": "team_nba_uta", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260112_brk_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-12T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260112_edm_chi", + "canonical_id": "game_nhl_2025_20260112_fla_buf", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-12T06:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_united_center", + "season": "2026", + "date": "2026-01-12", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Florida Panthers", + "home_team_abbrev": "BUF", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_fla", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260112_car_det", + "sport": "NHL", + "season": "2026", + "date": "2026-01-12", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "DET", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_car", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260112_sea_nyr", + "sport": "NHL", + "season": "2026", + "date": "2026-01-12", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Seattle Kraken", + "home_team_abbrev": "NYR", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260112_tb_phi", + "sport": "NHL", + "season": "2026", + "date": "2026-01-12", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260112_phi_tor", + "sport": "NBA", + "season": "2026", + "date": "2026-01-12", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_phi", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260112_bos_ind", + "sport": "NBA", + "season": "2026", + "date": "2026-01-12", + "time": "7:30p", + "home_team": "Indiana Pacers", + "away_team": "Boston Celtics", + "home_team_abbrev": "IND", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_bos", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260112_van_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-01-12", + "time": "7:30p", + "home_team": "Montreal Canadiens", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "MTL", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_van", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260112_njd_min", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-12T06:00:00Z", + "season": "2026", + "date": "2026-01-12", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "New Jersey Devils", + "home_team_abbrev": "MIN", + "away_team_abbrev": "NJ", "home_team_canonical_id": "team_nhl_min", "away_team_canonical_id": "team_nhl_njd", + "venue": "Xcel Energy Center", "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260112_tor_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-12T07:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260112_lal_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-12T08:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260112_cho_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-12T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260112_dal_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-12T08:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20260113_hou_pit", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-13T01:15:00Z", - "home_team_canonical_id": "team_nfl_pit", - "away_team_canonical_id": "team_nfl_hou", - "stadium_canonical_id": "stadium_nfl_acrisure_stadium", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260113_hou_pit", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-13T01:15:00Z", + "season": "2026", + "date": "2026-01-12", + "time": "8:15p", + "home_team": "Pittsburgh Steelers", + "away_team": "Houston Texans", + "home_team_abbrev": "PIT", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nfl_pit", "away_team_canonical_id": "team_nfl_hou", + "venue": "Acrisure Stadium", "stadium_canonical_id": "stadium_nfl_acrisure_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260113_phx_mia", + "canonical_id": "game_nba_2025_20260112_brk_dal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-13T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_kaseya_center", + "season": "2026", + "date": "2026-01-12", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "DAL", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_brk", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260113_det_bos", + "canonical_id": "game_nhl_2025_20260112_edm_chi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_td_garden", + "season": "2026", + "date": "2026-01-12", + "time": "7:30p", + "home_team": "Chicago Blackhawks", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "CHI", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_edm", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260112_lal_sac", + "sport": "NBA", + "season": "2026", + "date": "2026-01-12", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "SAC", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_lal", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260112_tor_col", + "sport": "NHL", + "season": "2026", + "date": "2026-01-12", + "time": "8p", + "home_team": "Colorado Avalanche", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "COL", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260112_dal_la", + "sport": "NHL", + "season": "2026", + "date": "2026-01-12", + "time": "7p", + "home_team": "Los Angeles Kings", + "away_team": "Dallas Stars", + "home_team_abbrev": "LA", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260112_cho_lac", + "sport": "NBA", + "season": "2026", + "date": "2026-01-12", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "LAC", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_cho", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260113_cgy_cbj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-13T05:00:00Z", + "season": "2026", + "date": "2026-01-13", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Calgary Flames", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "CGY", "home_team_canonical_id": "team_nhl_cbj", "away_team_canonical_id": "team_nhl_cgy", + "venue": "Nationwide Arena", "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260113_van_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260113_tb_pit", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-13T05:00:00Z", + "season": "2026", + "date": "2026-01-13", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "PIT", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_nhl_pit", "away_team_canonical_id": "team_nhl_tb", + "venue": "PPG Paints Arena", "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260113_van_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-01-13", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "OTT", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_van", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260113_mtl_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-13T05:00:00Z", + "season": "2026", + "date": "2026-01-13", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "WAS", + "away_team_abbrev": "MTL", "home_team_canonical_id": "team_nhl_was", "away_team_canonical_id": "team_nhl_mtl", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260113_chi_hou", + "canonical_id": "game_nba_2025_20260113_phx_mia", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-13T06:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_toyota_center", + "season": "2026", + "date": "2026-01-13", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Phoenix Suns", + "home_team_abbrev": "MIA", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_phx", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260113_min_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-13T06:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260113_den_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-13T06:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260113_sas_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-13T06:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260113_edm_nsh", + "canonical_id": "game_nhl_2025_20260113_det_bos", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-13T06:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "season": "2026", + "date": "2026-01-13", + "time": "7:30p", + "home_team": "Boston Bruins", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "BOS", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_det", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260113_car_stl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-13T06:00:00Z", + "season": "2026", + "date": "2026-01-13", + "time": "6:30p", + "home_team": "St. Louis Blues", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "STL", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nhl_stl", "away_team_canonical_id": "team_nhl_car", + "venue": "Enterprise Center", "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260113_den_nop", + "sport": "NBA", + "season": "2026", + "date": "2026-01-13", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Denver Nuggets", + "home_team_abbrev": "NOP", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_den", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260113_chi_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-01-13", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Chicago Bulls", + "home_team_abbrev": "HOU", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_chi", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260113_min_mil", + "sport": "NBA", + "season": "2026", + "date": "2026-01-13", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "MIL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_min", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260113_sas_okc", + "sport": "NBA", + "season": "2026", + "date": "2026-01-13", + "time": "7p", + "home_team": "Oklahoma City Thunder", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "OKC", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_sas", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260113_edm_nsh", + "sport": "NHL", + "season": "2026", + "date": "2026-01-13", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "NSH", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260113_nyi_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-13T06:00:00Z", + "season": "2026", + "date": "2026-01-13", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "New York Islanders", + "home_team_abbrev": "WPG", + "away_team_abbrev": "NYI", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_nyi", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260113_tor_ari", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-13T07:00:00Z", + "season": "2026", + "date": "2026-01-13", + "time": "8p", + "home_team": "Utah Club", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "ARI", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_nhl_ari", "away_team_canonical_id": "team_nhl_tor", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260113_atl_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-13T08:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260113_por_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-13T08:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_chase_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260113_dal_ana", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-13T08:00:00Z", + "season": "2026", + "date": "2026-01-13", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Dallas Stars", + "home_team_abbrev": "ANA", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nhl_ana", "away_team_canonical_id": "team_nhl_dal", + "venue": "Honda Center", "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260113_atl_lal", + "sport": "NBA", + "season": "2026", + "date": "2026-01-13", + "time": "7:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "LAL", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_atl", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260113_por_gsw", + "sport": "NBA", + "season": "2026", + "date": "2026-01-13", + "time": "8p", + "home_team": "Golden State Warriors", + "away_team": "Portland Blazers", + "home_team_abbrev": "GSW", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_por", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260114_tor_ind", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-14T05:00:00Z", + "season": "2026", + "date": "2026-01-14", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Toronto Raptors", + "home_team_abbrev": "IND", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_nba_ind", "away_team_canonical_id": "team_nba_tor", + "venue": "Gainbridge Fieldhouse", "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260114_phi_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-14T05:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260114_sea_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-14T05:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260114_ott_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-14T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260114_uta_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-14T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260114_brk_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-14T06:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260114_den_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-14T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260114_cle_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-14T08:00:00Z", + "season": "2026", + "date": "2026-01-14", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_cle", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260114_sea_njd", + "sport": "NHL", + "season": "2026", + "date": "2026-01-14", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Seattle Kraken", + "home_team_abbrev": "NJ", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260114_phi_buf", + "sport": "NHL", + "season": "2026", + "date": "2026-01-14", + "time": "7:30p", + "home_team": "Buffalo Sabres", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "BUF", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_phi", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260114_ott_nyr", + "sport": "NHL", + "season": "2026", + "date": "2026-01-14", + "time": "7:30p", + "home_team": "New York Rangers", + "away_team": "Ottawa Senators", + "home_team_abbrev": "NYR", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260114_uta_chi", + "sport": "NBA", + "season": "2026", + "date": "2026-01-14", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Utah Jazz", + "home_team_abbrev": "CHI", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_uta", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260114_brk_nop", + "sport": "NBA", + "season": "2026", + "date": "2026-01-14", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "NOP", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_brk", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260114_den_dal", + "sport": "NBA", + "season": "2026", + "date": "2026-01-14", + "time": "8:30p", + "home_team": "Dallas Mavericks", + "away_team": "Denver Nuggets", + "home_team_abbrev": "DAL", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_den", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260114_nyk_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-14T08:00:00Z", + "season": "2026", + "date": "2026-01-14", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "New York Knicks", + "home_team_abbrev": "SAC", + "away_team_abbrev": "NYK", "home_team_canonical_id": "team_nba_sac", "away_team_canonical_id": "team_nba_nyk", + "venue": "Golden 1 Center", "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260114_was_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-14T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260114_vgk_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-14T08:00:00Z", + "season": "2026", + "date": "2026-01-14", + "time": "7p", + "home_team": "Los Angeles Kings", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "LA", + "away_team_abbrev": "VGK", "home_team_canonical_id": "team_nhl_la", "away_team_canonical_id": "team_nhl_vgk", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260114_was_lac", + "sport": "NBA", + "season": "2026", + "date": "2026-01-14", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Washington Wizards", + "home_team_abbrev": "LAC", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_was", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260115_mem_orl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-15T05:00:00Z", + "season": "2026", + "date": "2026-01-15", + "time": "2p", + "home_team": "Orlando Magic", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "ORL", + "away_team_abbrev": "MEM", "home_team_canonical_id": "team_nba_orl", "away_team_canonical_id": "team_nba_mem", + "venue": "Kia Center", "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260115_phx_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-15T05:00:00Z", + "season": "2026", + "date": "2026-01-15", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Phoenix Suns", + "home_team_abbrev": "DET", + "away_team_abbrev": "PHX", "home_team_canonical_id": "team_nba_det", "away_team_canonical_id": "team_nba_phx", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260115_bos_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-15T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260115_sea_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-15T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260115_mtl_buf", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-15T05:00:00Z", + "season": "2026", + "date": "2026-01-15", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "BUF", + "away_team_abbrev": "MTL", "home_team_canonical_id": "team_nhl_buf", "away_team_canonical_id": "team_nhl_mtl", + "venue": "KeyBank Center", "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260115_van_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-15T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260115_phi_pit", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-15T05:00:00Z", + "season": "2026", + "date": "2026-01-15", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nhl_pit", "away_team_canonical_id": "team_nhl_phi", + "venue": "PPG Paints Arena", "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260115_van_cbj", + "sport": "NHL", + "season": "2026", + "date": "2026-01-15", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_van", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260115_sj_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-15T05:00:00Z", + "season": "2026", + "date": "2026-01-15", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "San Jose Sharks", + "home_team_abbrev": "WAS", + "away_team_abbrev": "SJ", "home_team_canonical_id": "team_nhl_was", "away_team_canonical_id": "team_nhl_sj", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260115_bos_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-01-15", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Boston Celtics", + "home_team_abbrev": "MIA", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_bos", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260115_okc_hou", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-15T06:00:00Z", + "season": "2026", + "date": "2026-01-15", + "time": "6:30p", + "home_team": "Houston Rockets", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "HOU", + "away_team_abbrev": "OKC", "home_team_canonical_id": "team_nba_hou", "away_team_canonical_id": "team_nba_okc", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260115_mil_sas", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-15T06:00:00Z", + "season": "2026", + "date": "2026-01-15", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "SAS", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_nba_sas", "away_team_canonical_id": "team_nba_mil", + "venue": "Frost Bank Center", "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260115_uta_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-15T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260115_cgy_chi", + "canonical_id": "game_nhl_2025_20260115_sea_bos", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-15T06:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_united_center", + "season": "2026", + "date": "2026-01-15", + "time": "8p", + "home_team": "Boston Bruins", + "away_team": "Seattle Kraken", + "home_team_abbrev": "BOS", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_sea", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260115_wpg_min", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-15T06:00:00Z", + "season": "2026", + "date": "2026-01-15", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "MIN", + "away_team_abbrev": "WPG", "home_team_canonical_id": "team_nhl_min", "away_team_canonical_id": "team_nhl_wpg", + "venue": "Xcel Energy Center", "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260115_nyi_edm", + "canonical_id": "game_nba_2025_20260115_uta_dal", + "sport": "NBA", + "season": "2026", + "date": "2026-01-15", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Utah Jazz", + "home_team_abbrev": "DAL", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_uta", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260115_cgy_chi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-15T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_rogers_place", + "season": "2026", + "date": "2026-01-15", + "time": "7:30p", + "home_team": "Chicago Blackhawks", + "away_team": "Calgary Flames", + "home_team_abbrev": "CHI", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260115_dal_ari", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-15T07:00:00Z", + "season": "2026", + "date": "2026-01-15", + "time": "7p", + "home_team": "Utah Club", + "away_team": "Dallas Stars", + "home_team_abbrev": "ARI", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nhl_ari", "away_team_canonical_id": "team_nhl_dal", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260115_nyk_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-15T08:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260115_atl_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-15T08:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260115_cho_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-15T08:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "canonical_id": "game_nhl_2025_20260115_nyi_edm", + "sport": "NHL", + "season": "2026", + "date": "2026-01-15", + "time": "7p", + "home_team": "Edmonton Oilers", + "away_team": "New York Islanders", + "home_team_abbrev": "EDM", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260115_tor_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-15T08:00:00Z", + "season": "2026", + "date": "2026-01-15", + "time": "6:30p", + "home_team": "Vegas Golden Knights", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "VGK", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_nhl_vgk", "away_team_canonical_id": "team_nhl_tor", + "venue": "T-Mobile Arena", "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260115_atl_por", + "sport": "NBA", + "season": "2026", + "date": "2026-01-15", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "POR", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_atl", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260115_nyk_gsw", + "sport": "NBA", + "season": "2026", + "date": "2026-01-15", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "New York Knicks", + "home_team_abbrev": "GSW", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260115_cho_lal", + "sport": "NBA", + "season": "2026", + "date": "2026-01-15", + "time": "7:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "LAL", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_cho", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260116_nop_ind", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-16T05:00:00Z", + "season": "2026", + "date": "2026-01-16", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "IND", + "away_team_abbrev": "NOP", "home_team_canonical_id": "team_nba_ind", "away_team_canonical_id": "team_nba_nop", + "venue": "Gainbridge Fieldhouse", "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260116_chi_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-16T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260116_lac_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-16T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260116_fla_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-16T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260116_sj_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-16T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260116_min_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-16T06:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260116_tb_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-16T06:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260116_nsh_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-16T07:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260116_cle_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-16T08:00:00Z", + "season": "2026", + "date": "2026-01-16", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_cle", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260116_sj_det", + "sport": "NHL", + "season": "2026", + "date": "2026-01-16", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "San Jose Sharks", + "home_team_abbrev": "DET", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260116_fla_car", + "sport": "NHL", + "season": "2026", + "date": "2026-01-16", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Florida Panthers", + "home_team_abbrev": "CAR", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_fla", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260116_chi_brk", + "sport": "NBA", + "season": "2026", + "date": "2026-01-16", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Chicago Bulls", + "home_team_abbrev": "BKN", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_chi", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260116_lac_tor", + "sport": "NBA", + "season": "2026", + "date": "2026-01-16", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_lac", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260116_tb_stl", + "sport": "NHL", + "season": "2026", + "date": "2026-01-16", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "STL", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260116_nsh_col", + "sport": "NHL", + "season": "2026", + "date": "2026-01-16", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "Nashville Predators", + "home_team_abbrev": "COL", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260116_min_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-01-16", + "time": "8:30p", + "home_team": "Houston Rockets", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "HOU", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_min", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260116_was_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-16T08:00:00Z", + "season": "2026", + "date": "2026-01-16", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Washington Wizards", + "home_team_abbrev": "SAC", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nba_sac", "away_team_canonical_id": "team_nba_was", + "venue": "Golden 1 Center", "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260116_ana_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-16T08:00:00Z", + "season": "2026", + "date": "2026-01-16", + "time": "7:30p", + "home_team": "Los Angeles Kings", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "LA", + "away_team_abbrev": "ANA", "home_team_canonical_id": "team_nhl_la", "away_team_canonical_id": "team_nhl_ana", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260117_bos_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260117_ind_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T05:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260117_phx_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260117_okc_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260117_min_buf", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T05:00:00Z", + "season": "2026", + "date": "2026-01-17", + "time": "12:30p", + "home_team": "Buffalo Sabres", + "away_team": "Minnesota Wild", + "home_team_abbrev": "BUF", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nhl_buf", "away_team_canonical_id": "team_nhl_min", + "venue": "KeyBank Center", "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260117_car_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T05:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260117_mtl_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T05:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260117_nyr_phi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T05:00:00Z", + "season": "2026", + "date": "2026-01-17", + "time": "1p", + "home_team": "Philadelphia Flyers", + "away_team": "New York Rangers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NYR", "home_team_canonical_id": "team_nhl_phi", "away_team_canonical_id": "team_nhl_nyr", + "venue": "Wells Fargo Center", "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260117_cbj_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T05:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260117_fla_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T05:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260117_uta_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260117_min_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T06:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260117_bos_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T06:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260117_tor_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T06:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260117_was_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260117_nyi_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T07:00:00Z", + "season": "2026", + "date": "2026-01-17", + "time": "1p", + "home_team": "Calgary Flames", + "away_team": "New York Islanders", + "home_team_abbrev": "CGY", + "away_team_abbrev": "NYI", "home_team_canonical_id": "team_nhl_cgy", "away_team_canonical_id": "team_nhl_nyi", + "venue": "Scotiabank Saddledome", "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260117_sea_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T07:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260117_cho_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T08:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260117_lal_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T08:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260117_la_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T08:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260117_edm_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T08:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_rogers_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260117_nsh_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-17T08:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20260117_buf_den", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-17T21:30:00Z", - "home_team_canonical_id": "team_nfl_den", - "away_team_canonical_id": "team_nfl_buf", - "stadium_canonical_id": "stadium_nfl_empower_field", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260117_buf_den", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-17T21:30:00Z", + "season": "2026", + "date": "2026-01-17", + "time": "2:30p", + "home_team": "Denver Broncos", + "away_team": "Buffalo Bills", + "home_team_abbrev": "DEN", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nfl_den", "away_team_canonical_id": "team_nfl_buf", - "stadium_canonical_id": "stadium_nfl_empower_field_at_mile_high", + "venue": "Empower Field at Mile High", + "stadium_canonical_id": "stadium_nfl_empower_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20260118_sf_sea", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-18T01:00:00Z", - "home_team_canonical_id": "team_nfl_sea", - "away_team_canonical_id": "team_nfl_sf", - "stadium_canonical_id": "stadium_nfl_lumen_field", + "canonical_id": "game_nba_2025_20260117_uta_dal", + "sport": "NBA", + "season": "2026", + "date": "2026-01-17", + "time": "4p", + "home_team": "Dallas Mavericks", + "away_team": "Utah Jazz", + "home_team_abbrev": "DAL", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_uta", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260117_sea_ari", + "sport": "NHL", + "season": "2026", + "date": "2026-01-17", + "time": "3p", + "home_team": "Utah Club", + "away_team": "Seattle Kraken", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260117_cbj_pit", + "sport": "NHL", + "season": "2026", + "date": "2026-01-17", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260117_tor_wpg", + "sport": "NHL", + "season": "2026", + "date": "2026-01-17", + "time": "6p", + "home_team": "Winnipeg Jets", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "WPG", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260117_fla_was", + "sport": "NHL", + "season": "2026", + "date": "2026-01-17", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Florida Panthers", + "home_team_abbrev": "WAS", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260117_mtl_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-01-17", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "OTT", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260117_car_njd", + "sport": "NHL", + "season": "2026", + "date": "2026-01-17", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "NJ", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_car", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260117_phx_nyk", + "sport": "NBA", + "season": "2026", + "date": "2026-01-17", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Phoenix Suns", + "home_team_abbrev": "NYK", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_phx", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260117_ind_det", + "sport": "NBA", + "season": "2026", + "date": "2026-01-17", + "time": "7:30p", + "home_team": "Detroit Pistons", + "away_team": "Indiana Pacers", + "home_team_abbrev": "DET", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_ind", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260117_bos_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-01-17", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Boston Celtics", + "home_team_abbrev": "ATL", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_bos", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260117_okc_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-01-17", + "time": "8p", + "home_team": "Miami Heat", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "MIA", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_okc", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260117_min_sas", + "sport": "NBA", + "season": "2026", + "date": "2026-01-17", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "SAS", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_min", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260118_sf_sea", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-18T01:00:00Z", + "season": "2026", + "date": "2026-01-17", + "time": "5p", + "home_team": "Seattle Seahawks", + "away_team": "San Francisco 49ers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_nfl_sea", "away_team_canonical_id": "team_nfl_sf", + "venue": "Lumen Field", "stadium_canonical_id": "stadium_nfl_lumen_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260118_ott_det", + "canonical_id": "game_nhl_2025_20260117_bos_chi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-18T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "season": "2026", + "date": "2026-01-17", + "time": "7p", + "home_team": "Chicago Blackhawks", + "away_team": "Boston Bruins", + "home_team_abbrev": "CHI", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_bos", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260117_cho_gsw", + "sport": "NBA", + "season": "2026", + "date": "2026-01-17", + "time": "5:30p", + "home_team": "Golden State Warriors", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "GSW", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_cho", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260117_was_den", + "sport": "NBA", + "season": "2026", + "date": "2026-01-17", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Washington Wizards", + "home_team_abbrev": "DEN", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_was", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260117_lal_por", + "sport": "NBA", + "season": "2026", + "date": "2026-01-17", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "POR", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_lal", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260117_edm_van", + "sport": "NHL", + "season": "2026", + "date": "2026-01-17", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "VAN", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260117_nsh_vgk", + "sport": "NHL", + "season": "2026", + "date": "2026-01-17", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Nashville Predators", + "home_team_abbrev": "VGK", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260117_la_ana", + "sport": "NHL", + "season": "2026", + "date": "2026-01-17", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "ANA", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_la", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260118_orl_mem", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-18T06:00:00Z", + "season": "2026", + "date": "2026-01-18", + "time": "11a", + "home_team": "Memphis Grizzlies", + "away_team": "Orlando Magic", + "home_team_abbrev": "MEM", + "away_team_abbrev": "ORL", "home_team_canonical_id": "team_nba_mem", "away_team_canonical_id": "team_nba_orl", + "venue": "FedExForum", "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260118_brk_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-18T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260118_nop_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-18T06:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260118_tb_dal", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-18T06:00:00Z", + "season": "2026", + "date": "2026-01-18", + "time": "1p", + "home_team": "Dallas Stars", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "DAL", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_nhl_dal", "away_team_canonical_id": "team_nhl_tb", + "venue": "American Airlines Center", "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260118_cho_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-18T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260118_stl_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-18T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260118_por_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-18T08:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260118_tor_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-18T08:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20260118_hou_ne", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-18T20:00:00Z", - "home_team_canonical_id": "team_nfl_ne", - "away_team_canonical_id": "team_nfl_hou", - "stadium_canonical_id": "stadium_nfl_gillette_stadium", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260118_hou_ne", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-18T20:00:00Z", + "season": "2026", + "date": "2026-01-18", + "time": "3p", + "home_team": "New England Patriots", + "away_team": "Houston Texans", + "home_team_abbrev": "NE", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nfl_ne", "away_team_canonical_id": "team_nfl_hou", + "venue": "Gillette Stadium", "stadium_canonical_id": "stadium_nfl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20260118_lar_chi", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-18T23:30:00Z", - "home_team_canonical_id": "team_nfl_chi", - "away_team_canonical_id": "team_nfl_lar", - "stadium_canonical_id": "stadium_nfl_soldier_field", + "canonical_id": "game_nhl_2025_20260118_ott_det", + "sport": "NHL", + "season": "2026", + "date": "2026-01-18", + "time": "5p", + "home_team": "Detroit Red Wings", + "away_team": "Ottawa Senators", + "home_team_abbrev": "DET", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260118_lar_chi", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-18T23:30:00Z", + "season": "2026", + "date": "2026-01-18", + "time": "5:30p", + "home_team": "Chicago Bears", + "away_team": "Los Angeles Rams", + "home_team_abbrev": "CHI", + "away_team_abbrev": "LAR", "home_team_canonical_id": "team_nfl_chi", "away_team_canonical_id": "team_nfl_lar", + "venue": "Soldier Field", "stadium_canonical_id": "stadium_nfl_soldier_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260118_nop_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-01-18", + "time": "6p", + "home_team": "Houston Rockets", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "HOU", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_nop", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260118_brk_chi", + "sport": "NBA", + "season": "2026", + "date": "2026-01-18", + "time": "6p", + "home_team": "Chicago Bulls", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "CHI", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_brk", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260118_cho_den", + "sport": "NBA", + "season": "2026", + "date": "2026-01-18", + "time": "6p", + "home_team": "Denver Nuggets", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "DEN", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_cho", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260118_stl_edm", + "sport": "NHL", + "season": "2026", + "date": "2026-01-18", + "time": "6p", + "home_team": "Edmonton Oilers", + "away_team": "St. Louis Blues", + "home_team_abbrev": "EDM", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260118_por_sac", + "sport": "NBA", + "season": "2026", + "date": "2026-01-18", + "time": "6p", + "home_team": "Sacramento Kings", + "away_team": "Portland Blazers", + "home_team_abbrev": "SAC", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_por", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260118_tor_lal", + "sport": "NBA", + "season": "2026", + "date": "2026-01-18", + "time": "6:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Toronto Raptors", + "home_team_abbrev": "LAL", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_tor", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260119_mil_atl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-19T05:00:00Z", + "season": "2026", + "date": "2026-01-19", + "time": "1p", + "home_team": "Atlanta Hawks", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_nba_atl", "away_team_canonical_id": "team_nba_mil", + "venue": "State Farm Arena", "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260119_lac_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-19T05:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260119_dal_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-19T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260119_phx_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-19T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260119_bos_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-19T05:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260119_buf_car", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-19T05:00:00Z", + "season": "2026", + "date": "2026-01-19", + "time": "1:30p", + "home_team": "Carolina Hurricanes", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "CAR", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nhl_car", "away_team_canonical_id": "team_nhl_buf", + "venue": "PNC Arena", "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260119_sj_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-19T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260119_min_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-19T05:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260119_okc_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-19T06:00:00Z", + "season": "2026", + "date": "2026-01-19", + "time": "1:30p", + "home_team": "Cleveland Cavaliers", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "CLE", + "away_team_abbrev": "OKC", "home_team_canonical_id": "team_nba_cle", "away_team_canonical_id": "team_nba_okc", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260119_uta_sas", + "canonical_id": "game_nba_2025_20260119_lac_was", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-19T06:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260119_wpg_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-19T06:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260119_njd_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-19T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "season": "2026", + "date": "2026-01-19", + "time": "3p", + "home_team": "Washington Wizards", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "WAS", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_lac", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260119_was_col", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-19T07:00:00Z", + "season": "2026", + "date": "2026-01-19", + "time": "2p", + "home_team": "Colorado Avalanche", + "away_team": "Washington Capitals", + "home_team_abbrev": "COL", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nhl_col", "away_team_canonical_id": "team_nhl_was", + "venue": "Ball Arena", "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260119_ind_phi", + "canonical_id": "game_nba_2025_20260119_dal_nyk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-19T08:00:00Z", - "home_team_canonical_id": "team_nba_phi", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_intuit_dome", + "season": "2026", + "date": "2026-01-19", + "time": "5p", + "home_team": "New York Knicks", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "NYK", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_dal", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260119_mia_gsw", + "canonical_id": "game_nba_2025_20260119_uta_sas", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-19T08:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260119_nyr_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-19T08:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_honda_center", + "season": "2026", + "date": "2026-01-19", + "time": "4p", + "home_team": "San Antonio Spurs", + "away_team": "Utah Jazz", + "home_team_abbrev": "SAS", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_uta", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260119_pit_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-19T08:00:00Z", + "season": "2026", + "date": "2026-01-19", + "time": "2p", + "home_team": "Seattle Kraken", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "SEA", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_nhl_sea", "away_team_canonical_id": "team_nhl_pit", + "venue": "Climate Pledge Arena", "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260119_nyi_van", + "canonical_id": "game_nhl_2025_20260119_sj_fla", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-19T08:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_rogers_arena", + "season": "2026", + "date": "2026-01-19", + "time": "6p", + "home_team": "Florida Panthers", + "away_team": "San Jose Sharks", + "home_team_abbrev": "FLA", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260119_ind_phi", + "sport": "NBA", + "season": "2026", + "date": "2026-01-19", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Indiana Pacers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_ind", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260119_phx_brk", + "sport": "NBA", + "season": "2026", + "date": "2026-01-19", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Phoenix Suns", + "home_team_abbrev": "BKN", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_phx", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260119_min_tor", + "sport": "NHL", + "season": "2026", + "date": "2026-01-19", + "time": "7:30p", + "home_team": "Toronto Maple Leafs", + "away_team": "Minnesota Wild", + "home_team_abbrev": "TOR", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_min", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260119_bos_det", + "sport": "NBA", + "season": "2026", + "date": "2026-01-19", + "time": "8p", + "home_team": "Detroit Pistons", + "away_team": "Boston Celtics", + "home_team_abbrev": "DET", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_bos", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260119_phi_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-19T08:00:00Z", + "season": "2026", + "date": "2026-01-19", + "time": "5p", + "home_team": "Vegas Golden Knights", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "VGK", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nhl_vgk", "away_team_canonical_id": "team_nhl_phi", + "venue": "T-Mobile Arena", "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260120_ott_cbj", + "canonical_id": "game_nhl_2025_20260119_wpg_chi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-20T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "season": "2026", + "date": "2026-01-19", + "time": "7:30p", + "home_team": "Chicago Blackhawks", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "CHI", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260120_min_mtl", + "canonical_id": "game_nhl_2025_20260119_njd_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-20T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260120_sj_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-20T05:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_amalie_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260120_lac_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-20T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260120_sas_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-20T06:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260120_bos_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-20T06:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260120_buf_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-20T06:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260120_stl_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-20T06:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260120_min_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-20T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260120_lal_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-20T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260120_njd_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-20T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", + "season": "2026", + "date": "2026-01-19", + "time": "7p", + "home_team": "Calgary Flames", + "away_team": "New Jersey Devils", + "home_team_abbrev": "CGY", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_cgy", "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_rogers_place", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260119_mia_gsw", + "sport": "NBA", + "season": "2026", + "date": "2026-01-19", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Miami Heat", + "home_team_abbrev": "GSW", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_mia", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260119_nyi_van", + "sport": "NHL", + "season": "2026", + "date": "2026-01-19", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "New York Islanders", + "home_team_abbrev": "VAN", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260119_nyr_ana", + "sport": "NHL", + "season": "2026", + "date": "2026-01-19", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "New York Rangers", + "home_team_abbrev": "ANA", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260120_phx_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-20T08:00:00Z", + "season": "2026", + "date": "2026-01-20", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Phoenix Suns", + "home_team_abbrev": "PHI", + "away_team_abbrev": "PHX", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_phx", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260120_ott_cbj", + "sport": "NHL", + "season": "2026", + "date": "2026-01-20", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Ottawa Senators", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260120_min_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-01-20", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Minnesota Wild", + "home_team_abbrev": "MTL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_min", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260120_sj_tb", + "sport": "NHL", + "season": "2026", + "date": "2026-01-20", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "San Jose Sharks", + "home_team_abbrev": "TB", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260120_bos_dal", + "sport": "NHL", + "season": "2026", + "date": "2026-01-20", + "time": "6:30p", + "home_team": "Dallas Stars", + "away_team": "Boston Bruins", + "home_team_abbrev": "DAL", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_bos", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260120_lac_chi", + "sport": "NBA", + "season": "2026", + "date": "2026-01-20", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "CHI", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_lac", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260120_sas_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-01-20", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "HOU", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_sas", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260120_stl_wpg", + "sport": "NHL", + "season": "2026", + "date": "2026-01-20", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "St. Louis Blues", + "home_team_abbrev": "WPG", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260120_buf_nsh", + "sport": "NHL", + "season": "2026", + "date": "2026-01-20", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "NSH", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260120_min_uta", + "sport": "NBA", + "season": "2026", + "date": "2026-01-20", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "UTA", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_min", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260120_lal_den", + "sport": "NBA", + "season": "2026", + "date": "2026-01-20", + "time": "8p", + "home_team": "Denver Nuggets", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "DEN", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_lal", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260120_tor_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-20T08:00:00Z", + "season": "2026", + "date": "2026-01-20", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Toronto Raptors", + "home_team_abbrev": "GSW", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_nba_gsw", "away_team_canonical_id": "team_nba_tor", + "venue": "Chase Center", "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260120_mia_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-20T08:00:00Z", + "season": "2026", + "date": "2026-01-20", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Miami Heat", + "home_team_abbrev": "SAC", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_nba_sac", "away_team_canonical_id": "team_nba_mia", + "venue": "Golden 1 Center", "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260120_nyr_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-20T08:00:00Z", + "season": "2026", + "date": "2026-01-20", + "time": "7p", + "home_team": "Los Angeles Kings", + "away_team": "New York Rangers", + "home_team_abbrev": "LA", + "away_team_abbrev": "NYR", "home_team_canonical_id": "team_nhl_la", "away_team_canonical_id": "team_nhl_nyr", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260120_njd_edm", + "sport": "NHL", + "season": "2026", + "date": "2026-01-20", + "time": "8p", + "home_team": "Edmonton Oilers", + "away_team": "New Jersey Devils", + "home_team_abbrev": "EDM", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_njd", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260121_cle_cho", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-21T05:00:00Z", + "season": "2026", + "date": "2026-01-21", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "CHA", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nba_cho", "away_team_canonical_id": "team_nba_cle", + "venue": "Spectrum Center", "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260121_ind_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-21T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260121_brk_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-21T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260121_det_tor", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-21T05:00:00Z", + "season": "2026", + "date": "2026-01-21", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "TOR", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nhl_tor", "away_team_canonical_id": "team_nhl_det", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260121_brk_nyk", + "sport": "NBA", + "season": "2026", + "date": "2026-01-21", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "NYK", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_brk", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260121_ind_bos", + "sport": "NBA", + "season": "2026", + "date": "2026-01-21", + "time": "7:30p", + "home_team": "Boston Celtics", + "away_team": "Indiana Pacers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_ind", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260121_atl_mem", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-21T06:00:00Z", + "season": "2026", + "date": "2026-01-21", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "MEM", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nba_mem", "away_team_canonical_id": "team_nba_atl", + "venue": "FedExForum", "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260121_det_nop", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-21T06:00:00Z", + "season": "2026", + "date": "2026-01-21", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Detroit Pistons", + "home_team_abbrev": "NOP", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nba_nop", "away_team_canonical_id": "team_nba_det", + "venue": "Smoothie King Center", "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260121_okc_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-21T06:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260121_pit_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-21T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260121_ana_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-21T07:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260121_phi_ari", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-21T07:00:00Z", + "season": "2026", + "date": "2026-01-21", + "time": "7p", + "home_team": "Utah Club", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nhl_ari", "away_team_canonical_id": "team_nhl_phi", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260121_tor_sac", + "canonical_id": "game_nhl_2025_20260121_ana_col", + "sport": "NHL", + "season": "2026", + "date": "2026-01-21", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "COL", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260121_okc_mil", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-21T08:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_golden_1_center", + "season": "2026", + "date": "2026-01-21", + "time": "8:30p", + "home_team": "Milwaukee Bucks", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "MIL", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_okc", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260121_nyi_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-21T08:00:00Z", + "season": "2026", + "date": "2026-01-21", + "time": "6:30p", + "home_team": "Seattle Kraken", + "away_team": "New York Islanders", + "home_team_abbrev": "SEA", + "away_team_abbrev": "NYI", "home_team_canonical_id": "team_nhl_sea", "away_team_canonical_id": "team_nhl_nyi", + "venue": "Climate Pledge Arena", "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260121_pit_cgy", + "sport": "NHL", + "season": "2026", + "date": "2026-01-21", + "time": "7:30p", + "home_team": "Calgary Flames", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "CGY", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_pit", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260121_tor_sac", + "sport": "NBA", + "season": "2026", + "date": "2026-01-21", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Toronto Raptors", + "home_team_abbrev": "SAC", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_tor", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260121_was_van", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-21T08:00:00Z", + "season": "2026", + "date": "2026-01-21", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Washington Capitals", + "home_team_abbrev": "VAN", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nhl_van", "away_team_canonical_id": "team_nhl_was", + "venue": "Rogers Arena", "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260122_cho_orl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-22T05:00:00Z", + "season": "2026", + "date": "2026-01-22", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "ORL", + "away_team_abbrev": "CHA", "home_team_canonical_id": "team_nba_orl", "away_team_canonical_id": "team_nba_cho", + "venue": "Kia Center", "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260122_den_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-22T05:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260122_vgk_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-22T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260122_chi_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-22T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260122_dal_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-22T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260122_buf_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-22T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260122_gsw_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-22T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260122_chi_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-22T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260122_det_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-22T06:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260122_ott_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-22T06:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260122_fla_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-22T06:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260122_sas_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-22T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260122_pit_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-22T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260122_hou_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-22T08:00:00Z", + "season": "2026", + "date": "2026-01-22", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Houston Rockets", + "home_team_abbrev": "PHI", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_hou", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260122_lal_lac", + "canonical_id": "game_nba_2025_20260122_den_was", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-22T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_intuit_dome", + "season": "2026", + "date": "2026-01-22", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Denver Nuggets", + "home_team_abbrev": "WAS", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_den", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260122_buf_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-01-22", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "MTL", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260122_vgk_bos", + "sport": "NHL", + "season": "2026", + "date": "2026-01-22", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "BOS", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260122_chi_car", + "sport": "NHL", + "season": "2026", + "date": "2026-01-22", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "CAR", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_chi", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260122_dal_cbj", + "sport": "NHL", + "season": "2026", + "date": "2026-01-22", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Dallas Stars", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260122_gsw_dal", + "sport": "NBA", + "season": "2026", + "date": "2026-01-22", + "time": "6:30p", + "home_team": "Dallas Mavericks", + "away_team": "Golden State Warriors", + "home_team_abbrev": "DAL", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_gsw", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260122_chi_min", + "sport": "NBA", + "season": "2026", + "date": "2026-01-22", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "Chicago Bulls", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_chi", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260122_fla_wpg", + "sport": "NHL", + "season": "2026", + "date": "2026-01-22", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "Florida Panthers", + "home_team_abbrev": "WPG", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260122_ott_nsh", + "sport": "NHL", + "season": "2026", + "date": "2026-01-22", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "Ottawa Senators", + "home_team_abbrev": "NSH", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260122_sas_uta", + "sport": "NBA", + "season": "2026", + "date": "2026-01-22", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "UTA", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_sas", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260122_pit_edm", + "sport": "NHL", + "season": "2026", + "date": "2026-01-22", + "time": "7p", + "home_team": "Edmonton Oilers", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "EDM", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_pit", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260122_det_min", + "sport": "NHL", + "season": "2026", + "date": "2026-01-22", + "time": "8:30p", + "home_team": "Minnesota Wild", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_det", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260122_mia_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-22T08:00:00Z", + "season": "2026", + "date": "2026-01-22", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Miami Heat", + "home_team_abbrev": "POR", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_nba_por", "away_team_canonical_id": "team_nba_mia", + "venue": "Moda Center", "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260122_lal_lac", + "sport": "NBA", + "season": "2026", + "date": "2026-01-22", + "time": "7p", + "home_team": "Los Angeles Clippers", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "LAC", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_lal", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260123_hou_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-23T05:00:00Z", + "season": "2026", + "date": "2026-01-23", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Houston Rockets", + "home_team_abbrev": "DET", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nba_det", "away_team_canonical_id": "team_nba_hou", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260123_phx_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-23T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260123_bos_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-23T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260123_vgk_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-23T05:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260123_sac_cle", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-23T06:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260123_nop_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-23T06:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260123_ind_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-23T06:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260123_den_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-23T06:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260123_tb_chi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-23T06:00:00Z", + "season": "2026", + "date": "2026-01-23", + "time": "6p", + "home_team": "Chicago Blackhawks", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "CHI", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_nhl_chi", "away_team_canonical_id": "team_nhl_tb", + "venue": "United Center", "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260123_vgk_tor", + "sport": "NHL", + "season": "2026", + "date": "2026-01-23", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "TOR", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260123_sac_cle", + "sport": "NBA", + "season": "2026", + "date": "2026-01-23", + "time": "6:30p", + "home_team": "Cleveland Cavaliers", + "away_team": "Sacramento Kings", + "home_team_abbrev": "CLE", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_sac", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260123_bos_brk", + "sport": "NBA", + "season": "2026", + "date": "2026-01-23", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Boston Celtics", + "home_team_abbrev": "BKN", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_bos", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260123_phx_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-01-23", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Phoenix Suns", + "home_team_abbrev": "ATL", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_phx", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260123_nop_mem", + "sport": "NBA", + "season": "2026", + "date": "2026-01-23", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "MEM", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_nop", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260123_ind_okc", + "sport": "NBA", + "season": "2026", + "date": "2026-01-23", + "time": "7p", + "home_team": "Oklahoma City Thunder", + "away_team": "Indiana Pacers", + "home_team_abbrev": "OKC", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_ind", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260123_stl_dal", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-23T06:00:00Z", + "season": "2026", + "date": "2026-01-23", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "St. Louis Blues", + "home_team_abbrev": "DAL", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_nhl_dal", "away_team_canonical_id": "team_nhl_stl", + "venue": "American Airlines Center", "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260123_was_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-23T07:00:00Z", + "season": "2026", + "date": "2026-01-23", + "time": "7p", + "home_team": "Calgary Flames", + "away_team": "Washington Capitals", + "home_team_abbrev": "CGY", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nhl_cgy", "away_team_canonical_id": "team_nhl_was", + "venue": "Scotiabank Saddledome", "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260123_phi_col", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-23T07:00:00Z", + "season": "2026", + "date": "2026-01-23", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "COL", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nhl_col", "away_team_canonical_id": "team_nhl_phi", + "venue": "Ball Arena", "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260123_den_mil", + "sport": "NBA", + "season": "2026", + "date": "2026-01-23", + "time": "8:30p", + "home_team": "Milwaukee Bucks", + "away_team": "Denver Nuggets", + "home_team_abbrev": "MIL", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_den", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260123_tor_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-23T08:00:00Z", + "season": "2026", + "date": "2026-01-23", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Toronto Raptors", + "home_team_abbrev": "POR", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_nba_por", "away_team_canonical_id": "team_nba_tor", + "venue": "Moda Center", "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260123_ana_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-23T08:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260123_nyr_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-23T08:00:00Z", + "season": "2026", + "date": "2026-01-23", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "New York Rangers", + "home_team_abbrev": "SJ", + "away_team_abbrev": "NYR", "home_team_canonical_id": "team_nhl_sj", "away_team_canonical_id": "team_nhl_nyr", + "venue": "SAP Center", "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260123_njd_van", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-23T08:00:00Z", + "season": "2026", + "date": "2026-01-23", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "New Jersey Devils", + "home_team_abbrev": "VAN", + "away_team_abbrev": "NJ", "home_team_canonical_id": "team_nhl_van", "away_team_canonical_id": "team_nhl_njd", + "venue": "Rogers Arena", "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260124_was_cho", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-24T05:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260124_cle_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-24T05:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260124_mtl_bos", + "canonical_id": "game_nhl_2025_20260123_ana_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-24T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260124_tb_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-24T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "season": "2026", + "date": "2026-01-23", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "SEA", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260124_buf_nyi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-24T05:00:00Z", + "season": "2026", + "date": "2026-01-24", + "time": "1p", + "home_team": "New York Islanders", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "NYI", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nhl_nyi", "away_team_canonical_id": "team_nhl_buf", + "venue": "UBS Arena", "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260124_car_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-24T05:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260124_gsw_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-24T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260124_bos_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-24T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260124_lal_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-24T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260124_fla_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-24T06:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260124_ari_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-24T06:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260124_la_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-24T06:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260124_det_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-24T06:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260124_mia_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-24T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260124_was_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-24T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260124_nyk_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-24T08:00:00Z", + "season": "2026", + "date": "2026-01-24", + "time": "12p", + "home_team": "Philadelphia 76ers", + "away_team": "New York Knicks", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NYK", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_nyk", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260125_sac_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-25T05:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260125_mia_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-25T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260125_vgk_ott", + "canonical_id": "game_nhl_2025_20260124_ari_nsh", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-25T05:00:00Z", + "season": "2026", + "date": "2026-01-24", + "time": "2:30p", + "home_team": "Nashville Predators", + "away_team": "Utah Club", + "home_team_abbrev": "NSH", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260124_gsw_min", + "sport": "NBA", + "season": "2026", + "date": "2026-01-24", + "time": "4:30p", + "home_team": "Minnesota Timberwolves", + "away_team": "Golden State Warriors", + "home_team_abbrev": "MIN", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": null, + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260124_was_cho", + "sport": "NBA", + "season": "2026", + "date": "2026-01-24", + "time": "6p", + "home_team": "Charlotte Hornets", + "away_team": "Washington Wizards", + "home_team_abbrev": "CHA", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_was", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260124_cle_orl", + "sport": "NBA", + "season": "2026", + "date": "2026-01-24", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "ORL", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_cle", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260124_det_wpg", + "sport": "NHL", + "season": "2026", + "date": "2026-01-24", + "time": "6p", + "home_team": "Winnipeg Jets", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "WPG", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_det", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260124_car_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-01-24", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "OTT", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_car", + "venue": "Canadian Tire Centre", "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260124_mtl_bos", + "sport": "NHL", + "season": "2026", + "date": "2026-01-24", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "BOS", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260124_tb_cbj", + "sport": "NHL", + "season": "2026", + "date": "2026-01-24", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260124_bos_chi", + "sport": "NBA", + "season": "2026", + "date": "2026-01-24", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Boston Celtics", + "home_team_abbrev": "CHI", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_bos", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260124_la_stl", + "sport": "NHL", + "season": "2026", + "date": "2026-01-24", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "STL", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_la", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260124_lal_dal", + "sport": "NBA", + "season": "2026", + "date": "2026-01-24", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "DAL", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_lal", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260124_fla_min", + "sport": "NHL", + "season": "2026", + "date": "2026-01-24", + "time": "8p", + "home_team": "Minnesota Wild", + "away_team": "Florida Panthers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260124_mia_uta", + "sport": "NBA", + "season": "2026", + "date": "2026-01-24", + "time": "7:30p", + "home_team": "Utah Jazz", + "away_team": "Miami Heat", + "home_team_abbrev": "UTA", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_mia", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260124_was_edm", + "sport": "NHL", + "season": "2026", + "date": "2026-01-24", + "time": "8p", + "home_team": "Edmonton Oilers", + "away_team": "Washington Capitals", + "home_team_abbrev": "EDM", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_was", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260125_col_tor", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-25T05:00:00Z", + "season": "2026", + "date": "2026-01-25", + "time": "1:30p", + "home_team": "Toronto Maple Leafs", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "TOR", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_nhl_tor", "away_team_canonical_id": "team_nhl_col", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260125_den_mem", + "canonical_id": "game_nba_2025_20260125_sac_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-25T06:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260125_dal_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-25T06:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260125_tor_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-25T06:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260125_nop_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-25T06:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260125_fla_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-25T06:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260125_ana_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-25T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260125_brk_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-25T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260125_njd_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-25T08:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260125_pit_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-25T08:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_rogers_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nfl_2025_20260125_ne_den", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-25T20:00:00Z", - "home_team_canonical_id": "team_nfl_den", - "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_empower_field", + "season": "2026", + "date": "2026-01-25", + "time": "3p", + "home_team": "Detroit Pistons", + "away_team": "Sacramento Kings", + "home_team_abbrev": "DET", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_sac", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260125_ne_den", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-25T20:00:00Z", + "season": "2026", + "date": "2026-01-25", + "time": "1p", + "home_team": "Denver Broncos", + "away_team": "New England Patriots", + "home_team_abbrev": "DEN", + "away_team_abbrev": "NE", "home_team_canonical_id": "team_nfl_den", "away_team_canonical_id": "team_nfl_ne", - "stadium_canonical_id": "stadium_nfl_empower_field_at_mile_high", + "venue": "Empower Field at Mile High", + "stadium_canonical_id": "stadium_nfl_empower_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260125_njd_sea", + "sport": "NHL", + "season": "2026", + "date": "2026-01-25", + "time": "12p", + "home_team": "Seattle Kraken", + "away_team": "New Jersey Devils", + "home_team_abbrev": "SEA", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_njd", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260125_den_mem", + "sport": "NBA", + "season": "2026", + "date": "2026-01-25", + "time": "2:30p", + "home_team": "Memphis Grizzlies", + "away_team": "Denver Nuggets", + "home_team_abbrev": "MEM", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_den", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": null, + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260125_vgk_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-01-25", + "time": "5p", + "home_team": "Ottawa Senators", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "OTT", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260125_gsw_min", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-25T22:30:00Z", + "season": "2026", + "date": "2026-01-25", + "time": "4:30p", + "home_team": "Minnesota Timberwolves", + "away_team": "Golden State Warriors", + "home_team_abbrev": "MIN", + "away_team_abbrev": "GSW", "home_team_canonical_id": "team_nba_min", "away_team_canonical_id": "team_nba_gsw", + "venue": "Target Center", "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nfl_2025_20260125_lar_sea", - "sport": "NFL", - "season": "2025", - "game_datetime_utc": "2026-01-25T23:30:00Z", - "home_team_canonical_id": "team_nfl_sea", - "away_team_canonical_id": "team_nfl_lar", - "stadium_canonical_id": "stadium_nfl_lumen_field", + "canonical_id": "game_nhl_2025_20260125_pit_van", + "sport": "NHL", + "season": "2026", + "date": "2026-01-25", + "time": "3p", + "home_team": "Vancouver Canucks", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "VAN", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_pit", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nfl_2026_20260125_lar_sea", "sport": "NFL", - "season": "2026-27", - "game_datetime_utc": "2026-01-25T23:30:00Z", + "season": "2026", + "date": "2026-01-25", + "time": "3:30p", + "home_team": "Seattle Seahawks", + "away_team": "Los Angeles Rams", + "home_team_abbrev": "SEA", + "away_team_abbrev": "LAR", "home_team_canonical_id": "team_nfl_sea", "away_team_canonical_id": "team_nfl_lar", + "venue": "Lumen Field", "stadium_canonical_id": "stadium_nfl_lumen_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260126_phi_cho", + "canonical_id": "game_nba_2025_20260125_tor_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-26T05:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_spectrum_center", + "season": "2026", + "date": "2026-01-25", + "time": "6p", + "home_team": "Oklahoma City Thunder", + "away_team": "Toronto Raptors", + "home_team_abbrev": "OKC", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_tor", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260126_ind_atl", + "canonical_id": "game_nba_2025_20260125_dal_mil", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-26T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_state_farm_arena", + "season": "2026", + "date": "2026-01-25", + "time": "6p", + "home_team": "Milwaukee Bucks", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "MIL", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_dal", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": null, "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260126_por_bos", + "canonical_id": "game_nba_2025_20260125_nop_sas", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-26T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_td_garden", + "season": "2026", + "date": "2026-01-25", + "time": "6p", + "home_team": "San Antonio Spurs", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "SAS", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_nop", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260126_la_cbj", + "canonical_id": "game_nhl_2025_20260125_fla_chi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "season": "2026", + "date": "2026-01-25", + "time": "6p", + "home_team": "Chicago Blackhawks", + "away_team": "Florida Panthers", + "home_team_abbrev": "CHI", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_fla", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260126_bos_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "canonical_id": "game_nba_2025_20260125_mia_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-01-25", + "time": "8p", + "home_team": "Phoenix Suns", + "away_team": "Miami Heat", + "home_team_abbrev": "PHX", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_mia", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260126_nyi_phi", + "canonical_id": "game_nhl_2025_20260125_ana_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "season": "2026", + "date": "2026-01-25", + "time": "6p", + "home_team": "Calgary Flames", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "CGY", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260126_ari_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_amalie_arena", + "canonical_id": "game_nba_2025_20260125_brk_lac", + "sport": "NBA", + "season": "2026", + "date": "2026-01-25", + "time": "6p", + "home_team": "Los Angeles Clippers", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "LAC", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_brk", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260126_orl_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-26T06:00:00Z", + "season": "2026", + "date": "2026-01-26", + "time": "6p", + "home_team": "Cleveland Cavaliers", + "away_team": "Orlando Magic", + "home_team_abbrev": "CLE", + "away_team_abbrev": "ORL", "home_team_canonical_id": "team_nba_cle", "away_team_canonical_id": "team_nba_orl", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260126_phi_cho", + "sport": "NBA", + "season": "2026", + "date": "2026-01-26", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "CHA", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_phi", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260126_nyi_phi", + "sport": "NHL", + "season": "2026", + "date": "2026-01-26", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "New York Islanders", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260126_ari_tb", + "sport": "NHL", + "season": "2026", + "date": "2026-01-26", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Utah Club", + "home_team_abbrev": "TB", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260126_bos_nyr", + "sport": "NHL", + "season": "2026", + "date": "2026-01-26", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Boston Bruins", + "home_team_abbrev": "NYR", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260126_la_cbj", + "sport": "NHL", + "season": "2026", + "date": "2026-01-26", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_la", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": null, + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260126_ind_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-01-26", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Indiana Pacers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_ind", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260126_por_bos", + "sport": "NBA", + "season": "2026", + "date": "2026-01-26", + "time": "8p", + "home_team": "Boston Celtics", + "away_team": "Portland Blazers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_por", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260126_lal_chi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-26T06:00:00Z", + "season": "2026", + "date": "2026-01-26", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "CHI", + "away_team_abbrev": "LAL", "home_team_canonical_id": "team_nba_chi", "away_team_canonical_id": "team_nba_lal", + "venue": "United Center", "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260126_mem_hou", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-26T06:00:00Z", + "season": "2026", + "date": "2026-01-26", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "HOU", + "away_team_abbrev": "MEM", "home_team_canonical_id": "team_nba_hou", "away_team_canonical_id": "team_nba_mem", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260126_gsw_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-26T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260126_ana_edm", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-26T07:00:00Z", + "season": "2026", + "date": "2026-01-26", + "time": "6:30p", + "home_team": "Edmonton Oilers", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "EDM", + "away_team_abbrev": "ANA", "home_team_canonical_id": "team_nhl_edm", "away_team_canonical_id": "team_nhl_ana", + "venue": "Rogers Place", "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260126_gsw_min", + "sport": "NBA", + "season": "2026", + "date": "2026-01-26", + "time": "8:30p", + "home_team": "Minnesota Timberwolves", + "away_team": "Golden State Warriors", + "home_team_abbrev": "MIN", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260127_por_was", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-27T05:00:00Z", + "season": "2026", + "date": "2026-01-27", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Portland Blazers", + "home_team_abbrev": "WAS", + "away_team_abbrev": "POR", "home_team_canonical_id": "team_nba_was", "away_team_canonical_id": "team_nba_por", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260127_sac_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-27T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260127_brk_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-27T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260127_nsh_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-27T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260127_la_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-27T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260127_ari_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-27T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260127_vgk_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-27T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260127_wpg_njd", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-27T05:00:00Z", + "season": "2026", + "date": "2026-01-27", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "NJ", + "away_team_abbrev": "WPG", "home_team_canonical_id": "team_nhl_njd", "away_team_canonical_id": "team_nhl_wpg", + "venue": "Prudential Center", "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260127_vgk_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-01-27", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "MTL", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260127_buf_tor", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-27T05:00:00Z", + "season": "2026", + "date": "2026-01-27", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nhl_tor", "away_team_canonical_id": "team_nhl_buf", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260127_nsh_bos", + "sport": "NHL", + "season": "2026", + "date": "2026-01-27", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Nashville Predators", + "home_team_abbrev": "BOS", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260127_ari_fla", + "sport": "NHL", + "season": "2026", + "date": "2026-01-27", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Utah Club", + "home_team_abbrev": "FLA", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260127_la_det", + "sport": "NHL", + "season": "2026", + "date": "2026-01-27", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "DET", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_la", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260127_sac_nyk", + "sport": "NBA", + "season": "2026", + "date": "2026-01-27", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Sacramento Kings", + "home_team_abbrev": "NYK", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_sac", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260127_nop_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-27T06:00:00Z", + "season": "2026", + "date": "2026-01-27", + "time": "7p", + "home_team": "Oklahoma City Thunder", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "OKC", + "away_team_abbrev": "NOP", "home_team_canonical_id": "team_nba_okc", "away_team_canonical_id": "team_nba_nop", + "venue": "Paycom Center", "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260127_chi_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-27T06:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260127_dal_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-27T06:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260127_det_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-27T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260127_lac_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-27T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260127_mil_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-27T08:00:00Z", + "season": "2026", + "date": "2026-01-27", + "time": "5p", + "home_team": "Philadelphia 76ers", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_mil", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260127_was_sea", + "canonical_id": "game_nhl_2025_20260127_dal_stl", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-27T08:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "season": "2026", + "date": "2026-01-27", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Dallas Stars", + "home_team_abbrev": "STL", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260127_chi_min", + "sport": "NHL", + "season": "2026", + "date": "2026-01-27", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260127_det_den", + "sport": "NBA", + "season": "2026", + "date": "2026-01-27", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Detroit Pistons", + "home_team_abbrev": "DEN", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_det", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260127_brk_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-01-27", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "PHX", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_brk", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260127_lac_uta", + "sport": "NBA", + "season": "2026", + "date": "2026-01-27", + "time": "8p", + "home_team": "Utah Jazz", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "UTA", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_lac", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260127_sj_van", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-27T08:00:00Z", + "season": "2026", + "date": "2026-01-27", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "San Jose Sharks", + "home_team_abbrev": "VAN", + "away_team_abbrev": "SJ", "home_team_canonical_id": "team_nhl_van", "away_team_canonical_id": "team_nhl_sj", + "venue": "Rogers Arena", "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260127_was_sea", + "sport": "NHL", + "season": "2026", + "date": "2026-01-27", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Washington Capitals", + "home_team_abbrev": "SEA", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_was", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260128_chi_ind", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-28T05:00:00Z", + "season": "2026", + "date": "2026-01-28", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Chicago Bulls", + "home_team_abbrev": "IND", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nba_ind", "away_team_canonical_id": "team_nba_chi", + "venue": "Gainbridge Fieldhouse", "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260128_atl_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-28T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260128_orl_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-28T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260128_nyk_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-28T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260128_phi_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260128_nyr_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260128_col_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260128_lal_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-28T06:00:00Z", + "season": "2026", + "date": "2026-01-28", + "time": "6p", + "home_team": "Cleveland Cavaliers", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "LAL", "home_team_canonical_id": "team_nba_cle", "away_team_canonical_id": "team_nba_lal", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260128_nyr_nyi", + "sport": "NHL", + "season": "2026", + "date": "2026-01-28", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "New York Rangers", + "home_team_abbrev": "NYI", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260128_nyk_tor", + "sport": "NBA", + "season": "2026", + "date": "2026-01-28", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "New York Knicks", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260128_atl_bos", + "sport": "NBA", + "season": "2026", + "date": "2026-01-28", + "time": "7:30p", + "home_team": "Boston Celtics", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "BOS", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_atl", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260128_orl_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-01-28", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Orlando Magic", + "home_team_abbrev": "MIA", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_orl", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260128_col_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-01-28", + "time": "7:30p", + "home_team": "Ottawa Senators", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "OTT", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_col", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260128_phi_cbj", + "sport": "NHL", + "season": "2026", + "date": "2026-01-28", + "time": "7:30p", + "home_team": "Columbus Blue Jackets", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_phi", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260128_cho_mem", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-28T06:00:00Z", + "season": "2026", + "date": "2026-01-28", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "MEM", + "away_team_abbrev": "CHA", "home_team_canonical_id": "team_nba_mem", "away_team_canonical_id": "team_nba_cho", + "venue": "FedExForum", "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260128_min_dal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-28T06:00:00Z", + "season": "2026", + "date": "2026-01-28", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "DAL", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nba_dal", "away_team_canonical_id": "team_nba_min", + "venue": "American Airlines Center", "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260128_sas_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-28T06:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260128_gsw_uta", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-28T07:00:00Z", + "season": "2026", + "date": "2026-01-28", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Golden State Warriors", + "home_team_abbrev": "UTA", + "away_team_abbrev": "GSW", "home_team_canonical_id": "team_nba_uta", "away_team_canonical_id": "team_nba_gsw", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260128_sas_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-01-28", + "time": "8:30p", + "home_team": "Houston Rockets", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "HOU", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_sas", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260129_mil_was", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T05:00:00Z", + "season": "2026", + "date": "2026-01-29", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "WAS", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_nba_was", "away_team_canonical_id": "team_nba_mil", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260129_hou_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260129_det_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260129_phi_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260129_la_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T05:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260129_ari_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260129_was_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260129_col_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260129_nsh_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T05:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260129_nyi_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260129_chi_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T05:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260129_wpg_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T05:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_amalie_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260129_mia_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260129_cho_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260129_okc_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260129_cgy_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T06:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260129_fla_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T06:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260129_brk_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260129_sj_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260129_sac_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T08:00:00Z", + "season": "2026", + "date": "2026-01-29", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Sacramento Kings", + "home_team_abbrev": "PHI", + "away_team_abbrev": "SAC", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_sac", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260129_ari_car", + "sport": "NHL", + "season": "2026", + "date": "2026-01-29", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Utah Club", + "home_team_abbrev": "CAR", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_ari", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260129_chi_pit", + "sport": "NHL", + "season": "2026", + "date": "2026-01-29", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_chi", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260129_nyi_nyr", + "sport": "NHL", + "season": "2026", + "date": "2026-01-29", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "New York Islanders", + "home_team_abbrev": "NYR", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260129_nsh_njd", + "sport": "NHL", + "season": "2026", + "date": "2026-01-29", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Nashville Predators", + "home_team_abbrev": "NJ", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260129_col_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-01-29", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "MTL", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_col", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260129_la_buf", + "sport": "NHL", + "season": "2026", + "date": "2026-01-29", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "BUF", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_la", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260129_phi_bos", + "sport": "NHL", + "season": "2026", + "date": "2026-01-29", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_phi", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260129_wpg_tb", + "sport": "NHL", + "season": "2026", + "date": "2026-01-29", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "TB", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260129_was_det", + "sport": "NHL", + "season": "2026", + "date": "2026-01-29", + "time": "7:30p", + "home_team": "Detroit Red Wings", + "away_team": "Washington Capitals", + "home_team_abbrev": "DET", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_was", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260129_hou_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-01-29", + "time": "8p", + "home_team": "Atlanta Hawks", + "away_team": "Houston Rockets", + "home_team_abbrev": "ATL", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_hou", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260129_mia_chi", + "sport": "NBA", + "season": "2026", + "date": "2026-01-29", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Miami Heat", + "home_team_abbrev": "CHI", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_mia", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260129_cgy_min", + "sport": "NHL", + "season": "2026", + "date": "2026-01-29", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "Calgary Flames", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260129_fla_stl", + "sport": "NHL", + "season": "2026", + "date": "2026-01-29", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Florida Panthers", + "home_team_abbrev": "STL", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260129_cho_dal", + "sport": "NBA", + "season": "2026", + "date": "2026-01-29", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "DAL", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_cho", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260129_det_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-01-29", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "Detroit Pistons", + "home_team_abbrev": "PHX", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_det", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260129_brk_den", + "sport": "NBA", + "season": "2026", + "date": "2026-01-29", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "DEN", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_brk", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260129_sj_edm", + "sport": "NHL", + "season": "2026", + "date": "2026-01-29", + "time": "7p", + "home_team": "Edmonton Oilers", + "away_team": "San Jose Sharks", + "home_team_abbrev": "EDM", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260129_okc_min", + "sport": "NBA", + "season": "2026", + "date": "2026-01-29", + "time": "8:30p", + "home_team": "Minnesota Timberwolves", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "MIN", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_okc", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260129_tor_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T08:00:00Z", + "season": "2026", + "date": "2026-01-29", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "SEA", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_nhl_sea", "away_team_canonical_id": "team_nhl_tor", + "venue": "Climate Pledge Arena", "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260129_ana_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T08:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260129_dal_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-29T08:00:00Z", + "season": "2026", + "date": "2026-01-29", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Dallas Stars", + "home_team_abbrev": "VGK", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nhl_vgk", "away_team_canonical_id": "team_nhl_dal", + "venue": "T-Mobile Arena", "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260130_tor_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-30T05:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_kia_center", + "canonical_id": "game_nhl_2025_20260129_ana_van", + "sport": "NHL", + "season": "2026", + "date": "2026-01-29", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "VAN", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260130_lal_was", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-30T05:00:00Z", + "season": "2026", + "date": "2026-01-30", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "WAS", + "away_team_abbrev": "LAL", "home_team_canonical_id": "team_nba_was", "away_team_canonical_id": "team_nba_lal", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260130_sac_bos", + "canonical_id": "game_nba_2025_20260130_tor_orl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-30T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_td_garden", + "season": "2026", + "date": "2026-01-30", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Toronto Raptors", + "home_team_abbrev": "ORL", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_tor", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260130_por_nyk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-30T05:00:00Z", + "season": "2026", + "date": "2026-01-30", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Portland Blazers", + "home_team_abbrev": "NYK", + "away_team_abbrev": "POR", "home_team_canonical_id": "team_nba_nyk", "away_team_canonical_id": "team_nba_por", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260130_cle_phx", + "canonical_id": "game_nba_2025_20260130_sac_bos", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-30T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "season": "2026", + "date": "2026-01-30", + "time": "7:30p", + "home_team": "Boston Celtics", + "away_team": "Sacramento Kings", + "home_team_abbrev": "BOS", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_sac", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260130_mem_nop", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-30T06:00:00Z", + "season": "2026", + "date": "2026-01-30", + "time": "6:30p", + "home_team": "New Orleans Pelicans", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "NOP", + "away_team_abbrev": "MEM", "home_team_canonical_id": "team_nba_nop", "away_team_canonical_id": "team_nba_mem", + "venue": "Smoothie King Center", "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260130_cbj_chi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-30T06:00:00Z", + "season": "2026", + "date": "2026-01-30", + "time": "7:30p", + "home_team": "Chicago Blackhawks", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "CHI", + "away_team_abbrev": "CBJ", "home_team_canonical_id": "team_nhl_chi", "away_team_canonical_id": "team_nhl_cbj", + "venue": "United Center", "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260130_lac_den", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-30T07:00:00Z", + "season": "2026", + "date": "2026-01-30", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "DEN", + "away_team_abbrev": "LAC", "home_team_canonical_id": "team_nba_den", "away_team_canonical_id": "team_nba_lac", + "venue": "Ball Arena", "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260130_cle_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-01-30", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "PHX", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_cle", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260130_brk_uta", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-30T07:00:00Z", + "season": "2026", + "date": "2026-01-30", + "time": "7:30p", + "home_team": "Utah Jazz", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "UTA", + "away_team_abbrev": "BKN", "home_team_canonical_id": "team_nba_uta", "away_team_canonical_id": "team_nba_brk", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260130_det_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-30T08:00:00Z", + "season": "2026", + "date": "2026-01-30", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Detroit Pistons", + "home_team_abbrev": "GSW", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nba_gsw", "away_team_canonical_id": "team_nba_det", + "venue": "Chase Center", "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260131_sas_cho", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T05:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260131_atl_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T05:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260131_chi_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260131_mtl_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T05:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260131_col_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260131_wpg_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260131_nsh_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260131_njd_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T05:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260131_la_phi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T05:00:00Z", + "season": "2026", + "date": "2026-01-31", + "time": "12:30p", + "home_team": "Philadelphia Flyers", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "PHI", + "away_team_abbrev": "LA", "home_team_canonical_id": "team_nhl_phi", "away_team_canonical_id": "team_nhl_la", + "venue": "Wells Fargo Center", "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260131_col_det", + "sport": "NHL", + "season": "2026", + "date": "2026-01-31", + "time": "1p", + "home_team": "Detroit Red Wings", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "DET", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_col", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260131_sas_cho", + "sport": "NBA", + "season": "2026", + "date": "2026-01-31", + "time": "3p", + "home_team": "Charlotte Hornets", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "CHA", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_sas", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260131_nyr_pit", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T05:00:00Z", + "season": "2026", + "date": "2026-01-31", + "time": "3:30p", + "home_team": "Pittsburgh Penguins", + "away_team": "New York Rangers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "NYR", "home_team_canonical_id": "team_nhl_pit", "away_team_canonical_id": "team_nhl_nyr", + "venue": "PPG Paints Arena", "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260131_car_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T05:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260131_min_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T06:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260131_dal_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T06:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260131_cbj_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T06:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260131_sj_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T07:00:00Z", + "season": "2026", + "date": "2026-01-31", + "time": "2p", + "home_team": "Calgary Flames", + "away_team": "San Jose Sharks", + "home_team_abbrev": "CGY", + "away_team_abbrev": "SJ", "home_team_canonical_id": "team_nhl_cgy", "away_team_canonical_id": "team_nhl_sj", + "venue": "Scotiabank Saddledome", "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260131_min_edm", + "canonical_id": "game_nhl_2025_20260131_wpg_fla", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_rogers_place", + "season": "2026", + "date": "2026-01-31", + "time": "4p", + "home_team": "Florida Panthers", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "FLA", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260131_dal_ari", + "canonical_id": "game_nhl_2025_20260131_car_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T07:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_delta_center", + "season": "2026", + "date": "2026-01-31", + "time": "5p", + "home_team": "Washington Capitals", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "WAS", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_car", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260131_nop_phi", + "canonical_id": "game_nba_2025_20260131_atl_ind", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T08:00:00Z", - "home_team_canonical_id": "team_nba_phi", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_intuit_dome", + "season": "2026", + "date": "2026-01-31", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "IND", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_atl", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260131_cbj_stl", + "sport": "NHL", + "season": "2026", + "date": "2026-01-31", + "time": "6p", + "home_team": "St. Louis Blues", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "STL", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260131_tor_van", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T08:00:00Z", + "season": "2026", + "date": "2026-01-31", + "time": "4p", + "home_team": "Vancouver Canucks", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "VAN", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_nhl_van", "away_team_canonical_id": "team_nhl_tor", + "venue": "Rogers Arena", "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260131_njd_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-01-31", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "New Jersey Devils", + "home_team_abbrev": "OTT", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_njd", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260131_nsh_nyi", + "sport": "NHL", + "season": "2026", + "date": "2026-01-31", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Nashville Predators", + "home_team_abbrev": "NYI", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260131_mtl_buf", + "sport": "NHL", + "season": "2026", + "date": "2026-01-31", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "BUF", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260131_nop_phi", + "sport": "NBA", + "season": "2026", + "date": "2026-01-31", + "time": "4:30p", + "home_team": "Philadelphia 76ers", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_nop", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260131_min_mem", + "sport": "NBA", + "season": "2026", + "date": "2026-01-31", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "MEM", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_min", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260131_chi_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-01-31", + "time": "8p", + "home_team": "Miami Heat", + "away_team": "Chicago Bulls", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_chi", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260131_dal_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-01-31", + "time": "7:30p", + "home_team": "Houston Rockets", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "HOU", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_dal", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260131_dal_ari", + "sport": "NHL", + "season": "2026", + "date": "2026-01-31", + "time": "7p", + "home_team": "Utah Club", + "away_team": "Dallas Stars", + "home_team_abbrev": "ARI", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260131_min_edm", + "sport": "NHL", + "season": "2026", + "date": "2026-01-31", + "time": "8p", + "home_team": "Edmonton Oilers", + "away_team": "Minnesota Wild", + "home_team_abbrev": "EDM", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_min", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260131_sea_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-01-31T08:00:00Z", + "season": "2026", + "date": "2026-01-31", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Seattle Kraken", + "home_team_abbrev": "VGK", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_nhl_vgk", "away_team_canonical_id": "team_nhl_sea", + "venue": "T-Mobile Arena", "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260201_mil_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-01T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260201_brk_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-01T05:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260201_chi_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-01T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260201_uta_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-01T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260201_sac_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-01T05:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260201_lal_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-01T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260201_lac_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-01T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260201_la_car", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-01T05:00:00Z", + "season": "2026", + "date": "2026-02-01", + "time": "3p", + "home_team": "Carolina Hurricanes", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "CAR", + "away_team_abbrev": "LA", "home_team_canonical_id": "team_nhl_car", "away_team_canonical_id": "team_nhl_la", + "venue": "PNC Arena", "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260201_bos_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-01T05:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_amalie_arena", + "canonical_id": "game_nba_2025_20260201_mil_bos", + "sport": "NBA", + "season": "2026", + "date": "2026-02-01", + "time": "3:30p", + "home_team": "Boston Celtics", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "BOS", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_mil", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260201_orl_sas", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-01T06:00:00Z", + "season": "2026", + "date": "2026-02-01", + "time": "3p", + "home_team": "San Antonio Spurs", + "away_team": "Orlando Magic", + "home_team_abbrev": "SAS", + "away_team_abbrev": "ORL", "home_team_canonical_id": "team_nba_sas", "away_team_canonical_id": "team_nba_orl", + "venue": "Frost Bank Center", "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260201_okc_den", + "canonical_id": "game_nba_2025_20260201_uta_tor", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-01T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_ball_arena", + "season": "2026", + "date": "2026-02-01", + "time": "6p", + "home_team": "Toronto Raptors", + "away_team": "Utah Jazz", + "home_team_abbrev": "TOR", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_uta", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260201_brk_det", + "sport": "NBA", + "season": "2026", + "date": "2026-02-01", + "time": "6p", + "home_team": "Detroit Pistons", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "DET", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_brk", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260201_chi_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-02-01", + "time": "6p", + "home_team": "Miami Heat", + "away_team": "Chicago Bulls", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_chi", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260201_sac_was", + "sport": "NBA", + "season": "2026", + "date": "2026-02-01", + "time": "6p", + "home_team": "Washington Wizards", + "away_team": "Sacramento Kings", + "home_team_abbrev": "WAS", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_sac", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260201_bos_tb", + "sport": "NHL", + "season": "2026", + "date": "2026-02-01", + "time": "6:30p", + "home_team": "Tampa Bay Lightning", + "away_team": "Boston Bruins", + "home_team_abbrev": "TB", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260201_lal_nyk", + "sport": "NBA", + "season": "2026", + "date": "2026-02-01", + "time": "7p", + "home_team": "New York Knicks", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "NYK", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_lal", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260201_lac_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-02-01", + "time": "8p", + "home_team": "Phoenix Suns", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "PHX", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_lac", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260201_cle_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-01T08:00:00Z", + "season": "2026", + "date": "2026-02-01", + "time": "6p", + "home_team": "Portland Blazers", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "POR", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nba_por", "away_team_canonical_id": "team_nba_cle", + "venue": "Moda Center", "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260201_okc_den", + "sport": "NBA", + "season": "2026", + "date": "2026-02-01", + "time": "7:30p", + "home_team": "Denver Nuggets", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "DEN", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_okc", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260201_vgk_ana", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-01T08:00:00Z", + "season": "2026", + "date": "2026-02-01", + "time": "6:30p", + "home_team": "Anaheim Ducks", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "ANA", + "away_team_abbrev": "VGK", "home_team_canonical_id": "team_nhl_ana", "away_team_canonical_id": "team_nhl_vgk", + "venue": "Honda Center", "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260202_nop_cho", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-02T05:00:00Z", + "season": "2026", + "date": "2026-02-02", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "CHA", + "away_team_abbrev": "NOP", "home_team_canonical_id": "team_nba_cho", "away_team_canonical_id": "team_nba_nop", + "venue": "Spectrum Center", "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260202_hou_ind", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-02T05:00:00Z", + "season": "2026", + "date": "2026-02-02", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Houston Rockets", + "home_team_abbrev": "IND", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nba_ind", "away_team_canonical_id": "team_nba_hou", + "venue": "Gainbridge Fieldhouse", "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260202_buf_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-02T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260202_ott_pit", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-02T05:00:00Z", + "season": "2026", + "date": "2026-02-02", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "Ottawa Senators", + "home_team_abbrev": "PIT", + "away_team_abbrev": "OTT", "home_team_canonical_id": "team_nhl_pit", "away_team_canonical_id": "team_nhl_ott", + "venue": "PPG Paints Arena", "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260202_buf_fla", + "sport": "NHL", + "season": "2026", + "date": "2026-02-02", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "FLA", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260202_nyi_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-02T05:00:00Z", + "season": "2026", + "date": "2026-02-02", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "New York Islanders", + "home_team_abbrev": "WAS", + "away_team_abbrev": "NYI", "home_team_canonical_id": "team_nhl_was", "away_team_canonical_id": "team_nhl_nyi", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260202_min_mem", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-02T06:00:00Z", + "season": "2026", + "date": "2026-02-02", + "time": "6:30p", + "home_team": "Memphis Grizzlies", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "MEM", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nba_mem", "away_team_canonical_id": "team_nba_min", + "venue": "FedExForum", "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260202_sj_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-02T06:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260202_wpg_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-02T06:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260202_mtl_min", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-02T06:00:00Z", + "season": "2026", + "date": "2026-02-02", + "time": "6:30p", + "home_team": "Minnesota Wild", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "MIN", + "away_team_abbrev": "MTL", "home_team_canonical_id": "team_nhl_min", "away_team_canonical_id": "team_nhl_mtl", + "venue": "Xcel Energy Center", "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260202_stl_nsh", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-02T06:00:00Z", + "season": "2026", + "date": "2026-02-02", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "St. Louis Blues", + "home_team_abbrev": "NSH", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_nhl_nsh", "away_team_canonical_id": "team_nhl_stl", + "venue": "Bridgestone Arena", "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260202_tor_cgy", + "canonical_id": "game_nhl_2025_20260202_wpg_dal", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-02T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "season": "2026", + "date": "2026-02-02", + "time": "7:30p", + "home_team": "Dallas Stars", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "DAL", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260202_sj_chi", + "sport": "NHL", + "season": "2026", + "date": "2026-02-02", + "time": "7:30p", + "home_team": "Chicago Blackhawks", + "away_team": "San Jose Sharks", + "home_team_abbrev": "CHI", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_sj", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260202_det_col", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-02T07:00:00Z", + "season": "2026", + "date": "2026-02-02", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "COL", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nhl_col", "away_team_canonical_id": "team_nhl_det", + "venue": "Ball Arena", "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260202_van_ari", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-02T07:00:00Z", + "season": "2026", + "date": "2026-02-02", + "time": "7:30p", + "home_team": "Utah Club", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "ARI", + "away_team_abbrev": "VAN", "home_team_canonical_id": "team_nhl_ari", "away_team_canonical_id": "team_nhl_van", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260202_phi_lac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-02T08:00:00Z", + "season": "2026", + "date": "2026-02-02", + "time": "7p", + "home_team": "Los Angeles Clippers", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "LAC", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nba_lac", "away_team_canonical_id": "team_nba_phi", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260203_den_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-03T05:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260203_uta_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-03T05:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "canonical_id": "game_nhl_2025_20260202_tor_cgy", + "sport": "NHL", + "season": "2026", + "date": "2026-02-02", + "time": "8p", + "home_team": "Calgary Flames", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "CGY", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260203_nyk_was", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-03T05:00:00Z", + "season": "2026", + "date": "2026-02-03", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "New York Knicks", + "home_team_abbrev": "WAS", + "away_team_abbrev": "NYK", "home_team_canonical_id": "team_nba_was", "away_team_canonical_id": "team_nba_nyk", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260203_lal_brk", + "canonical_id": "game_nba_2025_20260203_den_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-03T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_barclays_center", + "season": "2026", + "date": "2026-02-03", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Denver Nuggets", + "home_team_abbrev": "DET", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_den", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260203_atl_mia", + "canonical_id": "game_nba_2025_20260203_uta_ind", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-03T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260203_ott_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-03T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_pnc_arena", + "season": "2026", + "date": "2026-02-03", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Utah Jazz", + "home_team_abbrev": "IND", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_uta", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260203_cbj_njd", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-03T05:00:00Z", + "season": "2026", + "date": "2026-02-03", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "NJ", + "away_team_abbrev": "CBJ", "home_team_canonical_id": "team_nhl_njd", "away_team_canonical_id": "team_nhl_cbj", + "venue": "Prudential Center", "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260203_pit_nyi", + "canonical_id": "game_nhl_2025_20260203_ott_car", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-03T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_ubs_arena", + "season": "2026", + "date": "2026-02-03", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Ottawa Senators", + "home_team_abbrev": "CAR", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_ott", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260203_was_phi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-03T05:00:00Z", + "season": "2026", + "date": "2026-02-03", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Washington Capitals", + "home_team_abbrev": "PHI", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nhl_phi", "away_team_canonical_id": "team_nhl_was", + "venue": "Wells Fargo Center", "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260203_atl_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-02-03", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "MIA", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_atl", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260203_lal_brk", + "sport": "NBA", + "season": "2026", + "date": "2026-02-03", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "BKN", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_lal", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260203_buf_tb", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-03T05:00:00Z", + "season": "2026", + "date": "2026-02-03", + "time": "7:30p", + "home_team": "Tampa Bay Lightning", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "TB", + "away_team_abbrev": "BUF", "home_team_canonical_id": "team_nhl_tb", "away_team_canonical_id": "team_nhl_buf", + "venue": "Amalie Arena", "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260203_bos_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-03T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_american_airlines_center", + "canonical_id": "game_nhl_2025_20260203_pit_nyi", + "sport": "NHL", + "season": "2026", + "date": "2026-02-03", + "time": "7:30p", + "home_team": "New York Islanders", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "NYI", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_pit", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260203_chi_mil", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-03T06:00:00Z", + "season": "2026", + "date": "2026-02-03", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Chicago Bulls", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nba_mil", "away_team_canonical_id": "team_nba_chi", + "venue": "Fiserv Forum", "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260203_bos_dal", + "sport": "NBA", + "season": "2026", + "date": "2026-02-03", + "time": "7p", + "home_team": "Dallas Mavericks", + "away_team": "Boston Celtics", + "home_team_abbrev": "DAL", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_bos", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260203_orl_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-03T06:00:00Z", + "season": "2026", + "date": "2026-02-03", + "time": "7p", + "home_team": "Oklahoma City Thunder", + "away_team": "Orlando Magic", + "home_team_abbrev": "OKC", + "away_team_abbrev": "ORL", "home_team_canonical_id": "team_nba_okc", "away_team_canonical_id": "team_nba_orl", + "venue": "Paycom Center", "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260203_tor_edm", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-03T07:00:00Z", + "season": "2026", + "date": "2026-02-03", + "time": "6:30p", + "home_team": "Edmonton Oilers", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "EDM", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_nhl_edm", "away_team_canonical_id": "team_nhl_tor", + "venue": "Rogers Place", "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260203_phi_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-03T08:00:00Z", + "season": "2026", + "date": "2026-02-03", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "GSW", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nba_gsw", "away_team_canonical_id": "team_nba_phi", + "venue": "Chase Center", "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260203_phx_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-03T08:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260203_sea_ana", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-03T08:00:00Z", + "season": "2026", + "date": "2026-02-03", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Seattle Kraken", + "home_team_abbrev": "ANA", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_nhl_ana", "away_team_canonical_id": "team_nhl_sea", + "venue": "Honda Center", "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260203_phx_por", + "sport": "NBA", + "season": "2026", + "date": "2026-02-03", + "time": "8p", + "home_team": "Portland Blazers", + "away_team": "Phoenix Suns", + "home_team_abbrev": "POR", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_phx", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260204_den_nyk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-04T05:00:00Z", + "season": "2026", + "date": "2026-02-04", + "time": "7p", + "home_team": "New York Knicks", + "away_team": "Denver Nuggets", + "home_team_abbrev": "NYK", + "away_team_abbrev": "DEN", "home_team_canonical_id": "team_nba_nyk", "away_team_canonical_id": "team_nba_den", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260204_min_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-04T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260204_chi_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-04T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260204_bos_fla", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-04T05:00:00Z", + "season": "2026", + "date": "2026-02-04", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Boston Bruins", + "home_team_abbrev": "FLA", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_nhl_fla", "away_team_canonical_id": "team_nhl_bos", + "venue": "Amerant Bank Arena", "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260204_bos_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-04T06:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260204_nop_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-04T06:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260204_okc_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-04T06:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260204_stl_dal", + "canonical_id": "game_nhl_2025_20260204_chi_cbj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-04T06:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260204_min_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-04T06:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "season": "2026", + "date": "2026-02-04", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260204_mtl_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-04T06:00:00Z", + "season": "2026", + "date": "2026-02-04", + "time": "6p", + "home_team": "Winnipeg Jets", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "WPG", + "away_team_abbrev": "MTL", "home_team_canonical_id": "team_nhl_wpg", "away_team_canonical_id": "team_nhl_mtl", + "venue": "Canada Life Centre", "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260204_edm_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-04T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "canonical_id": "game_nba_2025_20260204_min_tor", + "sport": "NBA", + "season": "2026", + "date": "2026-02-04", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "TOR", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_min", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260204_sj_col", + "canonical_id": "game_nba_2025_20260204_nop_mil", + "sport": "NBA", + "season": "2026", + "date": "2026-02-04", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "MIL", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_nop", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260204_bos_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-02-04", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Boston Celtics", + "home_team_abbrev": "HOU", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_bos", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260204_min_nsh", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-04T07:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_ball_arena", + "season": "2026", + "date": "2026-02-04", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "Minnesota Wild", + "home_team_abbrev": "NSH", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_min", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260204_det_ari", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-04T07:00:00Z", + "season": "2026", + "date": "2026-02-04", + "time": "7p", + "home_team": "Utah Club", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "ARI", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nhl_ari", "away_team_canonical_id": "team_nhl_det", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260204_sj_col", + "sport": "NHL", + "season": "2026", + "date": "2026-02-04", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "San Jose Sharks", + "home_team_abbrev": "COL", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260204_okc_sas", + "sport": "NBA", + "season": "2026", + "date": "2026-02-04", + "time": "8:30p", + "home_team": "San Antonio Spurs", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "SAS", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_okc", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260204_stl_dal", + "sport": "NHL", + "season": "2026", + "date": "2026-02-04", + "time": "8:30p", + "home_team": "Dallas Stars", + "away_team": "St. Louis Blues", + "home_team_abbrev": "DAL", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_stl", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260204_mem_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-04T08:00:00Z", + "season": "2026", + "date": "2026-02-04", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "SAC", + "away_team_abbrev": "MEM", "home_team_canonical_id": "team_nba_sac", "away_team_canonical_id": "team_nba_mem", + "venue": "Golden 1 Center", "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260204_cle_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-04T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260204_sea_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-04T08:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260204_van_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-04T08:00:00Z", + "season": "2026", + "date": "2026-02-04", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "VGK", + "away_team_abbrev": "VAN", "home_team_canonical_id": "team_nhl_vgk", "away_team_canonical_id": "team_nhl_van", + "venue": "T-Mobile Arena", "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260204_edm_cgy", + "sport": "NHL", + "season": "2026", + "date": "2026-02-04", + "time": "8p", + "home_team": "Calgary Flames", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "CGY", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260204_sea_la", + "sport": "NHL", + "season": "2026", + "date": "2026-02-04", + "time": "7p", + "home_team": "Los Angeles Kings", + "away_team": "Seattle Kraken", + "home_team_abbrev": "LA", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260204_cle_lac", + "sport": "NBA", + "season": "2026", + "date": "2026-02-04", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "LAC", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_cle", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260205_was_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-05T05:00:00Z", + "season": "2026", + "date": "2026-02-05", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Washington Wizards", + "home_team_abbrev": "DET", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nba_det", "away_team_canonical_id": "team_nba_was", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260205_brk_orl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-05T05:00:00Z", + "season": "2026", + "date": "2026-02-05", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "ORL", + "away_team_abbrev": "BKN", "home_team_canonical_id": "team_nba_orl", "away_team_canonical_id": "team_nba_brk", + "venue": "Kia Center", "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260205_uta_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-05T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260205_chi_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-05T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260205_gsw_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-05T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260205_pit_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-05T05:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260205_nyi_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-05T05:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260205_car_nyr", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-05T05:00:00Z", + "season": "2026", + "date": "2026-02-05", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "NYR", + "away_team_abbrev": "CAR", "home_team_canonical_id": "team_nhl_nyr", "away_team_canonical_id": "team_nhl_car", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260205_ott_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-05T05:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260205_fla_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-05T05:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260205_nsh_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-05T05:00:00Z", + "season": "2026", + "date": "2026-02-05", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Nashville Predators", + "home_team_abbrev": "WAS", + "away_team_abbrev": "NSH", "home_team_canonical_id": "team_nhl_was", "away_team_canonical_id": "team_nhl_nsh", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260205_ott_phi", + "sport": "NHL", + "season": "2026", + "date": "2026-02-05", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Ottawa Senators", + "home_team_abbrev": "PHI", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260205_pit_buf", + "sport": "NHL", + "season": "2026", + "date": "2026-02-05", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "BUF", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_pit", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260205_nyi_njd", + "sport": "NHL", + "season": "2026", + "date": "2026-02-05", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "New York Islanders", + "home_team_abbrev": "NJ", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260205_chi_tor", + "sport": "NBA", + "season": "2026", + "date": "2026-02-05", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "Chicago Bulls", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_chi", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260205_uta_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-02-05", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Utah Jazz", + "home_team_abbrev": "ATL", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_uta", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260205_fla_tb", + "sport": "NHL", + "season": "2026", + "date": "2026-02-05", + "time": "7:30p", + "home_team": "Tampa Bay Lightning", + "away_team": "Florida Panthers", + "home_team_abbrev": "TB", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260205_cho_hou", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-05T06:00:00Z", + "season": "2026", + "date": "2026-02-05", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "HOU", + "away_team_abbrev": "CHA", "home_team_canonical_id": "team_nba_hou", "away_team_canonical_id": "team_nba_cho", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260205_sas_dal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-05T06:00:00Z", + "season": "2026", + "date": "2026-02-05", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "DAL", + "away_team_abbrev": "SAS", "home_team_canonical_id": "team_nba_dal", "away_team_canonical_id": "team_nba_sas", + "venue": "American Airlines Center", "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260205_phi_lal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-05T08:00:00Z", + "season": "2026", + "date": "2026-02-05", + "time": "7p", + "home_team": "Los Angeles Lakers", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "LAL", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nba_lal", "away_team_canonical_id": "team_nba_phi", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260205_gsw_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-02-05", + "time": "10p", + "home_team": "Phoenix Suns", + "away_team": "Golden State Warriors", + "home_team_abbrev": "PHX", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260205_la_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-05T08:00:00Z", + "season": "2026", + "date": "2026-02-05", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "VGK", + "away_team_abbrev": "LA", "home_team_canonical_id": "team_nhl_vgk", "away_team_canonical_id": "team_nhl_la", + "venue": "T-Mobile Arena", "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260206_mia_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-06T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_td_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260206_nyk_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-06T05:00:00Z", + "season": "2026", + "date": "2026-02-06", + "time": "7:30p", + "home_team": "Detroit Pistons", + "away_team": "New York Knicks", + "home_team_abbrev": "DET", + "away_team_abbrev": "NYK", "home_team_canonical_id": "team_nba_det", "away_team_canonical_id": "team_nba_nyk", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260206_ind_mil", + "canonical_id": "game_nba_2025_20260206_mia_bos", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-06T06:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_fiserv_forum", + "season": "2026", + "date": "2026-02-06", + "time": "7:30p", + "home_team": "Boston Celtics", + "away_team": "Miami Heat", + "home_team_abbrev": "BOS", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_mia", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260206_nop_min", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-06T06:00:00Z", + "season": "2026", + "date": "2026-02-06", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "MIN", + "away_team_abbrev": "NOP", "home_team_canonical_id": "team_nba_min", "away_team_canonical_id": "team_nba_nop", + "venue": "Target Center", "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260206_mem_por", + "canonical_id": "game_nba_2025_20260206_ind_mil", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-06T08:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_moda_center", + "season": "2026", + "date": "2026-02-06", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Indiana Pacers", + "home_team_abbrev": "MIL", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_ind", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260206_lac_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-06T08:00:00Z", + "season": "2026", + "date": "2026-02-06", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "SAC", + "away_team_abbrev": "LAC", "home_team_canonical_id": "team_nba_sac", "away_team_canonical_id": "team_nba_lac", + "venue": "Golden 1 Center", "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260206_mem_por", + "sport": "NBA", + "season": "2026", + "date": "2026-02-06", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "POR", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_mem", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260207_was_brk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-07T05:00:00Z", + "season": "2026", + "date": "2026-02-07", + "time": "3p", + "home_team": "Brooklyn Nets", + "away_team": "Washington Wizards", + "home_team_abbrev": "BKN", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nba_brk", "away_team_canonical_id": "team_nba_was", + "venue": "Barclays Center", "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260207_uta_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-07T05:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260207_cho_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-07T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260207_phi_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-07T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260207_hou_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-07T06:00:00Z", + "season": "2026", + "date": "2026-02-07", + "time": "2:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "Houston Rockets", + "home_team_abbrev": "OKC", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_nba_okc", "away_team_canonical_id": "team_nba_hou", + "venue": "Paycom Center", "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260207_dal_sas", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-07T06:00:00Z", + "season": "2026", + "date": "2026-02-07", + "time": "5p", + "home_team": "San Antonio Spurs", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "SAS", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nba_sas", "away_team_canonical_id": "team_nba_dal", + "venue": "Frost Bank Center", "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260207_uta_orl", + "sport": "NBA", + "season": "2026", + "date": "2026-02-07", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Utah Jazz", + "home_team_abbrev": "ORL", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_uta", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260207_cho_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-02-07", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_cho", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260207_den_chi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-07T06:00:00Z", + "season": "2026", + "date": "2026-02-07", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Denver Nuggets", + "home_team_abbrev": "CHI", + "away_team_abbrev": "DEN", "home_team_canonical_id": "team_nba_chi", "away_team_canonical_id": "team_nba_den", + "venue": "United Center", "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260207_gsw_lal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-07T08:00:00Z", + "season": "2026", + "date": "2026-02-07", + "time": "5:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Golden State Warriors", + "home_team_abbrev": "LAL", + "away_team_abbrev": "GSW", "home_team_canonical_id": "team_nba_lal", "away_team_canonical_id": "team_nba_gsw", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260207_mem_por", + "canonical_id": "game_nba_2025_20260207_phi_phx", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-07T08:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_moda_center", + "season": "2026", + "date": "2026-02-07", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "PHX", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_phi", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260207_cle_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-07T08:00:00Z", + "season": "2026", + "date": "2026-02-07", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "SAC", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nba_sac", "away_team_canonical_id": "team_nba_cle", + "venue": "Golden 1 Center", "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260207_mem_por", + "sport": "NBA", + "season": "2026", + "date": "2026-02-07", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "POR", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_mem", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260208_nyk_bos", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-08T05:00:00Z", + "season": "2026", + "date": "2026-02-08", + "time": "12:30p", + "home_team": "Boston Celtics", + "away_team": "New York Knicks", + "home_team_abbrev": "BOS", + "away_team_abbrev": "NYK", "home_team_canonical_id": "team_nba_bos", "away_team_canonical_id": "team_nba_nyk", + "venue": "TD Garden", "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260208_mia_was", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-08T05:00:00Z", + "season": "2026", + "date": "2026-02-08", + "time": "2p", + "home_team": "Washington Wizards", + "away_team": "Miami Heat", + "home_team_abbrev": "WAS", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_nba_was", "away_team_canonical_id": "team_nba_mia", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260208_ind_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-08T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260208_lac_min", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-08T06:00:00Z", + "season": "2026", + "date": "2026-02-08", + "time": "2p", + "home_team": "Minnesota Timberwolves", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "LAC", "home_team_canonical_id": "team_nba_min", "away_team_canonical_id": "team_nba_lac", + "venue": "Target Center", "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260208_ind_tor", + "sport": "NBA", + "season": "2026", + "date": "2026-02-08", + "time": "3p", + "home_team": "Toronto Raptors", + "away_team": "Indiana Pacers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_ind", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260209_det_cho", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-09T05:00:00Z", + "season": "2026", + "date": "2026-02-09", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Detroit Pistons", + "home_team_abbrev": "CHA", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nba_cho", "away_team_canonical_id": "team_nba_det", + "venue": "Spectrum Center", "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260209_chi_brk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-09T05:00:00Z", + "season": "2026", + "date": "2026-02-09", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Chicago Bulls", + "home_team_abbrev": "BKN", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nba_brk", "away_team_canonical_id": "team_nba_chi", + "venue": "Barclays Center", "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260209_uta_mia", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-09T05:00:00Z", + "season": "2026", + "date": "2026-02-09", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Utah Jazz", + "home_team_abbrev": "MIA", + "away_team_abbrev": "UTA", "home_team_canonical_id": "team_nba_mia", "away_team_canonical_id": "team_nba_uta", + "venue": "Kaseya Center", "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260209_mil_orl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-09T05:00:00Z", + "season": "2026", + "date": "2026-02-09", + "time": "7:30p", + "home_team": "Orlando Magic", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "ORL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_nba_orl", "away_team_canonical_id": "team_nba_mil", + "venue": "Kia Center", "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260209_atl_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-09T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260209_sac_nop", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-09T06:00:00Z", + "season": "2026", + "date": "2026-02-09", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Sacramento Kings", + "home_team_abbrev": "NOP", + "away_team_abbrev": "SAC", "home_team_canonical_id": "team_nba_nop", "away_team_canonical_id": "team_nba_sac", + "venue": "Smoothie King Center", "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260209_atl_min", + "sport": "NBA", + "season": "2026", + "date": "2026-02-09", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "MIN", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_atl", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260209_cle_den", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-09T07:00:00Z", + "season": "2026", + "date": "2026-02-09", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "DEN", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nba_den", "away_team_canonical_id": "team_nba_cle", + "venue": "Ball Arena", "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260209_mem_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-09T08:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260209_okc_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-09T08:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260209_phi_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-09T08:00:00Z", + "season": "2026", + "date": "2026-02-09", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "POR", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nba_por", "away_team_canonical_id": "team_nba_phi", + "venue": "Moda Center", "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260209_okc_lal", + "sport": "NBA", + "season": "2026", + "date": "2026-02-09", + "time": "7p", + "home_team": "Los Angeles Lakers", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "LAL", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_okc", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260209_mem_gsw", + "sport": "NBA", + "season": "2026", + "date": "2026-02-09", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "GSW", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_mem", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260210_ind_nyk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-10T05:00:00Z", + "season": "2026", + "date": "2026-02-10", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Indiana Pacers", + "home_team_abbrev": "NYK", + "away_team_abbrev": "IND", "home_team_canonical_id": "team_nba_nyk", "away_team_canonical_id": "team_nba_ind", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260210_dal_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-10T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260210_lac_hou", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-10T06:00:00Z", + "season": "2026", + "date": "2026-02-10", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "LAC", "home_team_canonical_id": "team_nba_hou", "away_team_canonical_id": "team_nba_lac", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260210_dal_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-02-10", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "PHX", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_dal", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260210_sas_lal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-10T08:00:00Z", + "season": "2026", + "date": "2026-02-10", + "time": "7:30p", + "home_team": "Los Angeles Lakers", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "LAL", + "away_team_abbrev": "SAS", "home_team_canonical_id": "team_nba_lal", "away_team_canonical_id": "team_nba_sas", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260211_atl_cho", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-11T05:00:00Z", + "season": "2026", + "date": "2026-02-11", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "CHA", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nba_cho", "away_team_canonical_id": "team_nba_atl", + "venue": "Spectrum Center", "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260211_mil_orl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-11T05:00:00Z", + "season": "2026", + "date": "2026-02-11", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "ORL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_nba_orl", "away_team_canonical_id": "team_nba_mil", + "venue": "Kia Center", "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260211_chi_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-11T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260211_ind_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-11T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260211_det_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-11T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260211_okc_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-11T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260211_was_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-11T06:00:00Z", + "season": "2026", + "date": "2026-02-11", + "time": "6p", + "home_team": "Cleveland Cavaliers", + "away_team": "Washington Wizards", + "home_team_abbrev": "CLE", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nba_cle", "away_team_canonical_id": "team_nba_was", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260211_lac_hou", + "canonical_id": "game_nba_2025_20260211_det_tor", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-11T06:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_toyota_center", + "season": "2026", + "date": "2026-02-11", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "Detroit Pistons", + "home_team_abbrev": "TOR", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_det", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260211_por_min", + "canonical_id": "game_nba_2025_20260211_chi_bos", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-11T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_target_center", + "season": "2026", + "date": "2026-02-11", + "time": "7:30p", + "home_team": "Boston Celtics", + "away_team": "Chicago Bulls", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_chi", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260211_mia_nop", + "canonical_id": "game_nba_2025_20260211_ind_brk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-11T06:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260211_sac_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-11T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260211_mem_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-11T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_ball_arena", + "season": "2026", + "date": "2026-02-11", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Indiana Pacers", + "home_team_abbrev": "BKN", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_ind", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260211_nyk_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-11T08:00:00Z", + "season": "2026", + "date": "2026-02-11", + "time": "4:30p", + "home_team": "Philadelphia 76ers", + "away_team": "New York Knicks", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NYK", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_nyk", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260211_mia_nop", + "sport": "NBA", + "season": "2026", + "date": "2026-02-11", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Miami Heat", + "home_team_abbrev": "NOP", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_mia", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260211_por_min", + "sport": "NBA", + "season": "2026", + "date": "2026-02-11", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "Portland Blazers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_por", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260211_lac_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-02-11", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_lac", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260211_okc_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-02-11", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "PHX", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_okc", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260211_sac_uta", + "sport": "NBA", + "season": "2026", + "date": "2026-02-11", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Sacramento Kings", + "home_team_abbrev": "UTA", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_sac", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260211_mem_den", + "sport": "NBA", + "season": "2026", + "date": "2026-02-11", + "time": "8p", + "home_team": "Denver Nuggets", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "DEN", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_mem", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260211_sas_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-11T08:00:00Z", + "season": "2026", + "date": "2026-02-11", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "GSW", + "away_team_abbrev": "SAS", "home_team_canonical_id": "team_nba_gsw", "away_team_canonical_id": "team_nba_sas", + "venue": "Chase Center", "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260212_mil_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-12T06:00:00Z", + "season": "2026", + "date": "2026-02-12", + "time": "6:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "OKC", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_nba_okc", "away_team_canonical_id": "team_nba_mil", + "venue": "Paycom Center", "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260212_por_uta", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-12T07:00:00Z", + "season": "2026", + "date": "2026-02-12", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Portland Blazers", + "home_team_abbrev": "UTA", + "away_team_abbrev": "POR", "home_team_canonical_id": "team_nba_uta", "away_team_canonical_id": "team_nba_por", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260212_dal_lal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-12T08:00:00Z", + "season": "2026", + "date": "2026-02-12", + "time": "7p", + "home_team": "Los Angeles Lakers", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "LAL", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nba_lal", "away_team_canonical_id": "team_nba_dal", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260219_hou_cho", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-19T05:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260219_ind_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-19T05:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260219_det_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-19T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260219_brk_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-19T06:00:00Z", + "season": "2026", + "date": "2026-02-19", + "time": "6p", + "home_team": "Cleveland Cavaliers", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "CLE", + "away_team_abbrev": "BKN", "home_team_canonical_id": "team_nba_cle", "away_team_canonical_id": "team_nba_brk", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260219_tor_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-19T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260219_phx_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-19T06:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260219_atl_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-19T08:00:00Z", + "season": "2026", + "date": "2026-02-19", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "PHI", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_atl", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260219_ind_was", + "sport": "NBA", + "season": "2026", + "date": "2026-02-19", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Indiana Pacers", + "home_team_abbrev": "WAS", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_ind", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260219_hou_cho", + "sport": "NBA", + "season": "2026", + "date": "2026-02-19", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Houston Rockets", + "home_team_abbrev": "CHA", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_hou", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260219_det_nyk", + "sport": "NBA", + "season": "2026", + "date": "2026-02-19", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Detroit Pistons", + "home_team_abbrev": "NYK", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_det", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260219_tor_chi", + "sport": "NBA", + "season": "2026", + "date": "2026-02-19", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Toronto Raptors", + "home_team_abbrev": "CHI", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_tor", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260219_phx_sas", + "sport": "NBA", + "season": "2026", + "date": "2026-02-19", + "time": "7:30p", + "home_team": "San Antonio Spurs", + "away_team": "Phoenix Suns", + "home_team_abbrev": "SAS", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_phx", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260219_bos_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-19T08:00:00Z", + "season": "2026", + "date": "2026-02-19", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Boston Celtics", + "home_team_abbrev": "GSW", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_nba_gsw", "away_team_canonical_id": "team_nba_bos", + "venue": "Chase Center", "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260219_orl_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-19T08:00:00Z", + "season": "2026", + "date": "2026-02-19", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Orlando Magic", + "home_team_abbrev": "SAC", + "away_team_abbrev": "ORL", "home_team_canonical_id": "team_nba_sac", "away_team_canonical_id": "team_nba_orl", + "venue": "Golden 1 Center", "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260219_den_lac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-19T08:00:00Z", + "season": "2026", + "date": "2026-02-19", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Denver Nuggets", + "home_team_abbrev": "LAC", + "away_team_abbrev": "DEN", "home_team_canonical_id": "team_nba_lac", "away_team_canonical_id": "team_nba_den", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260220_cle_cho", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-20T05:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260220_ind_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-20T05:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260220_mia_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-20T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260220_uta_mem", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-20T06:00:00Z", + "season": "2026", + "date": "2026-02-20", + "time": "6p", + "home_team": "Memphis Grizzlies", + "away_team": "Utah Jazz", + "home_team_abbrev": "MEM", + "away_team_abbrev": "UTA", "home_team_canonical_id": "team_nba_mem", "away_team_canonical_id": "team_nba_uta", + "venue": "FedExForum", "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260220_cle_cho", + "sport": "NBA", + "season": "2026", + "date": "2026-02-20", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "CHA", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_cle", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260220_ind_was", + "sport": "NBA", + "season": "2026", + "date": "2026-02-20", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Indiana Pacers", + "home_team_abbrev": "WAS", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_ind", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260220_dal_min", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-20T06:00:00Z", + "season": "2026", + "date": "2026-02-20", + "time": "6:30p", + "home_team": "Minnesota Timberwolves", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nba_min", "away_team_canonical_id": "team_nba_dal", + "venue": "Target Center", "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260220_mia_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-02-20", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Miami Heat", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_mia", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260220_mil_nop", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-20T06:00:00Z", + "season": "2026", + "date": "2026-02-20", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "NOP", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_nba_nop", "away_team_canonical_id": "team_nba_mil", + "venue": "Smoothie King Center", "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260220_brk_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-20T06:00:00Z", + "season": "2026", + "date": "2026-02-20", + "time": "7p", + "home_team": "Oklahoma City Thunder", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "OKC", + "away_team_abbrev": "BKN", "home_team_canonical_id": "team_nba_okc", "away_team_canonical_id": "team_nba_brk", + "venue": "Paycom Center", "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260220_lac_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-20T08:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260220_den_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-20T08:00:00Z", + "season": "2026", + "date": "2026-02-20", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Denver Nuggets", + "home_team_abbrev": "POR", + "away_team_abbrev": "DEN", "home_team_canonical_id": "team_nba_por", "away_team_canonical_id": "team_nba_den", + "venue": "Moda Center", "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260220_lac_lal", + "sport": "NBA", + "season": "2026", + "date": "2026-02-20", + "time": "7p", + "home_team": "Los Angeles Lakers", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "LAL", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_lac", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260221_clt_stl", + "sport": "MLS", + "season": "2026", + "date": "2026-02-21", + "time": "1:30p", + "home_team": "St. Louis St. Louis City SC", + "away_team": "Charlotte Charlotte FC", + "home_team_abbrev": "STL", + "away_team_abbrev": "CLT", + "home_team_canonical_id": "team_mls_stl", + "away_team_canonical_id": "team_mls_clt", + "venue": "CITYPARK", + "stadium_canonical_id": "stadium_mls_citypark", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260221_atl_cin", + "sport": "MLS", + "season": "2026", + "date": "2026-02-21", + "time": "4:45p", + "home_team": "Cincinnati FC Cincinnati", + "away_team": "Atlanta Atlanta United", + "home_team_abbrev": "CIN", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mls_cin", + "away_team_canonical_id": "team_mls_atl", + "venue": "TQL Stadium", + "stadium_canonical_id": "stadium_mls_tql_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260221_orl_phx", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-21T05:00:00Z", + "season": "2026", + "date": "2026-02-21", + "time": "5p", + "home_team": "Phoenix Suns", + "away_team": "Orlando Magic", + "home_team_abbrev": "PHX", + "away_team_abbrev": "ORL", "home_team_canonical_id": "team_nba_phx", "away_team_canonical_id": "team_nba_orl", + "venue": "Rocket Mortgage FieldHouse", "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260221_mem_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-21T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260221_hou_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-21T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260221_phi_nop", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-21T06:00:00Z", + "season": "2026", + "date": "2026-02-21", + "time": "6p", + "home_team": "New Orleans Pelicans", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "NOP", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nba_nop", "away_team_canonical_id": "team_nba_phi", + "venue": "Smoothie King Center", "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260222_slc_van", + "sport": "MLS", + "season": "2026", + "date": "2026-02-21", + "time": "4:30p", + "home_team": "Vancouver Vancouver Whitecaps", + "away_team": "Salt Lake Real Salt Lake", + "home_team_abbrev": "VAN", + "away_team_abbrev": "SLC", + "home_team_canonical_id": "team_mls_van", + "away_team_canonical_id": "team_mls_slc", + "venue": "BC Place", + "stadium_canonical_id": "stadium_mls_bc_place", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260222_phi_dc", + "sport": "MLS", + "season": "2026", + "date": "2026-02-21", + "time": "7:30p", + "home_team": "Washington D.C. United", + "away_team": "Philadelphia Philadelphia Union", + "home_team_abbrev": "DC", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mls_dc", + "away_team_canonical_id": "team_mls_phi", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_mls_audi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260222_ny_orl", + "sport": "MLS", + "season": "2026", + "date": "2026-02-21", + "time": "7:30p", + "home_team": "Orlando Orlando City", + "away_team": "New York New York Red Bulls", + "home_team_abbrev": "ORL", + "away_team_abbrev": "RB", + "home_team_canonical_id": "team_mls_orl", + "away_team_canonical_id": "team_mls_ny", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260221_mem_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-02-21", + "time": "8p", + "home_team": "Miami Heat", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "MIA", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_mem", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260221_det_chi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-21T06:00:00Z", + "season": "2026", + "date": "2026-02-21", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Detroit Pistons", + "home_team_abbrev": "CHI", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nba_chi", "away_team_canonical_id": "team_nba_det", + "venue": "United Center", "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260221_sac_sas", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-21T06:00:00Z", + "season": "2026", + "date": "2026-02-21", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Sacramento Kings", + "home_team_abbrev": "SAS", + "away_team_abbrev": "SAC", "home_team_canonical_id": "team_nba_sas", "away_team_canonical_id": "team_nba_sac", + "venue": "Frost Bank Center", "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260222_brk_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-22T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_state_farm_arena", + "canonical_id": "game_mls_2026_20260222_tor_dal", + "sport": "MLS", + "season": "2026", + "date": "2026-02-21", + "time": "7:30p", + "home_team": "Dallas FC Dallas", + "away_team": "Toronto Toronto FC", + "home_team_abbrev": "DAL", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mls_dal", + "away_team_canonical_id": "team_mls_tor", + "venue": "Toyota Stadium", + "stadium_canonical_id": "stadium_mls_toyota_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260222_dal_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-22T05:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "canonical_id": "game_mls_2026_20260222_min_aus", + "sport": "MLS", + "season": "2026", + "date": "2026-02-21", + "time": "7:30p", + "home_team": "Austin Austin FC", + "away_team": "Minnesota Minnesota United", + "home_team_abbrev": "AUS", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mls_aus", + "away_team_canonical_id": "team_mls_min", + "venue": "Q2 Stadium", + "stadium_canonical_id": "stadium_mls_q2_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260222_cho_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-22T05:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_capital_one_arena", + "canonical_id": "game_mls_2026_20260222_chi_hou", + "sport": "MLS", + "season": "2026", + "date": "2026-02-21", + "time": "7:30p", + "home_team": "Houston Houston Dynamo", + "away_team": "Chicago Chicago Fire", + "home_team_abbrev": "HOU", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_mls_hou", + "away_team_canonical_id": "team_mls_chi", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_mls_shell_energy_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260222_por_phx", + "canonical_id": "game_mls_2026_20260222_ne_nsh", + "sport": "MLS", + "season": "2026", + "date": "2026-02-21", + "time": "7:30p", + "home_team": "Nashville Nashville SC", + "away_team": "New England New England Revolution", + "home_team_abbrev": "NSH", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_mls_nsh", + "away_team_canonical_id": "team_mls_ne", + "venue": "GEODIS Park", + "stadium_canonical_id": "stadium_mls_geodis_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260221_hou_nyk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-22T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "season": "2026", + "date": "2026-02-21", + "time": "8:30p", + "home_team": "New York Knicks", + "away_team": "Houston Rockets", + "home_team_abbrev": "NYK", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_hou", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260222_mia_lafc", + "sport": "MLS", + "season": "2026", + "date": "2026-02-21", + "time": "6:30p", + "home_team": "Los Angeles Los Angeles FC", + "away_team": "Miami Inter Miami", + "home_team_abbrev": "LAFC", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mls_lafc", + "away_team_canonical_id": "team_mls_mia", + "venue": "Los Angeles Memorial Coliseum", + "stadium_canonical_id": "stadium_mls_los_angeles_memorial_coliseum", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260222_skc_sj", + "sport": "MLS", + "season": "2026", + "date": "2026-02-21", + "time": "7:30p", + "home_team": "San Jose San Jose Earthquakes", + "away_team": "Kansas City Sporting Kansas City", + "home_team_abbrev": "SJ", + "away_team_abbrev": "SKC", + "home_team_canonical_id": "team_mls_sj", + "away_team_canonical_id": "team_mls_skc", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_mls_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260222_clb_por", + "sport": "MLS", + "season": "2026", + "date": "2026-02-21", + "time": "7:30p", + "home_team": "Portland Portland Timbers", + "away_team": "Columbus Columbus Crew", + "home_team_abbrev": "POR", + "away_team_abbrev": "CLB", + "home_team_canonical_id": "team_mls_por", + "away_team_canonical_id": "team_mls_clb", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_mls_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260222_mtl_sd", + "sport": "MLS", + "season": "2026", + "date": "2026-02-21", + "time": "7:30p", + "home_team": "San Diego San Diego FC", + "away_team": "Montreal CF Montreal", + "home_team_abbrev": "SD", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_mls_sd", + "away_team_canonical_id": "team_mls_mtl", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260222_cle_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-22T06:00:00Z", + "season": "2026", + "date": "2026-02-22", + "time": "12p", + "home_team": "Oklahoma City Thunder", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "OKC", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nba_okc", "away_team_canonical_id": "team_nba_cle", + "venue": "Paycom Center", "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260222_brk_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-02-22", + "time": "3:30p", + "home_team": "Atlanta Hawks", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "ATL", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_brk", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260222_tor_mil", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-22T06:00:00Z", + "season": "2026", + "date": "2026-02-22", + "time": "2:30p", + "home_team": "Milwaukee Bucks", + "away_team": "Toronto Raptors", + "home_team_abbrev": "MIL", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_nba_mil", "away_team_canonical_id": "team_nba_tor", + "venue": "Fiserv Forum", "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260222_phi_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-22T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260222_nyk_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-22T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260222_den_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-22T08:00:00Z", + "season": "2026", + "date": "2026-02-22", + "time": "12:30p", + "home_team": "Golden State Warriors", + "away_team": "Denver Nuggets", + "home_team_abbrev": "GSW", + "away_team_abbrev": "DEN", "home_team_canonical_id": "team_nba_gsw", "away_team_canonical_id": "team_nba_den", + "venue": "Chase Center", "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260222_dal_ind", + "sport": "NBA", + "season": "2026", + "date": "2026-02-22", + "time": "5p", + "home_team": "Indiana Pacers", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "IND", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_dal", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260222_cho_was", + "sport": "NBA", + "season": "2026", + "date": "2026-02-22", + "time": "6p", + "home_team": "Washington Wizards", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "WAS", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_cho", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260222_bos_lal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-22T08:00:00Z", + "season": "2026", + "date": "2026-02-22", + "time": "3:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Boston Celtics", + "home_team_abbrev": "LAL", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_nba_lal", "away_team_canonical_id": "team_nba_bos", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260223_nyc_lag", + "sport": "MLS", + "season": "2026", + "date": "2026-02-22", + "time": "4p", + "home_team": "Los Angeles LA Galaxy", + "away_team": "New York New York City FC", + "home_team_abbrev": "LAG", + "away_team_abbrev": "NYC", + "home_team_canonical_id": "team_mls_lag", + "away_team_canonical_id": "team_mls_nyc", + "venue": "Dignity Health Sports Park", + "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260222_phi_min", + "sport": "NBA", + "season": "2026", + "date": "2026-02-22", + "time": "6p", + "home_team": "Minnesota Timberwolves", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_phi", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260222_por_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-02-22", + "time": "8p", + "home_team": "Phoenix Suns", + "away_team": "Portland Blazers", + "home_team_abbrev": "PHX", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_por", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260222_nyk_chi", + "sport": "NBA", + "season": "2026", + "date": "2026-02-22", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "New York Knicks", + "home_team_abbrev": "CHI", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_nyk", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260222_orl_lac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-22T08:00:00Z", + "season": "2026", + "date": "2026-02-22", + "time": "6p", + "home_team": "Los Angeles Clippers", + "away_team": "Orlando Magic", + "home_team_abbrev": "LAC", + "away_team_abbrev": "ORL", "home_team_canonical_id": "team_nba_lac", "away_team_canonical_id": "team_nba_orl", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260223_col_sea", + "sport": "MLS", + "season": "2026", + "date": "2026-02-22", + "time": "6:15p", + "home_team": "Seattle Seattle Sounders", + "away_team": "Colorado Colorado Rapids", + "home_team_abbrev": "SEA", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mls_sea", + "away_team_canonical_id": "team_mls_col", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_mls_lumen_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260223_sas_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-23T05:00:00Z", + "season": "2026", + "date": "2026-02-23", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "DET", + "away_team_abbrev": "SAS", "home_team_canonical_id": "team_nba_det", "away_team_canonical_id": "team_nba_sas", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260223_sac_mem", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-23T06:00:00Z", + "season": "2026", + "date": "2026-02-23", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Sacramento Kings", + "home_team_abbrev": "MEM", + "away_team_abbrev": "SAC", "home_team_canonical_id": "team_nba_mem", "away_team_canonical_id": "team_nba_sac", + "venue": "FedExForum", "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260223_uta_hou", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-23T06:00:00Z", + "season": "2026", + "date": "2026-02-23", + "time": "8:30p", + "home_team": "Houston Rockets", + "away_team": "Utah Jazz", + "home_team_abbrev": "HOU", + "away_team_abbrev": "UTA", "home_team_canonical_id": "team_nba_hou", "away_team_canonical_id": "team_nba_uta", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260224_phi_ind", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-24T05:00:00Z", + "season": "2026", + "date": "2026-02-24", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "IND", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nba_ind", "away_team_canonical_id": "team_nba_phi", + "venue": "Gainbridge Fieldhouse", "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260224_was_atl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-24T05:00:00Z", + "season": "2026", + "date": "2026-02-24", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Washington Wizards", + "home_team_abbrev": "ATL", + "away_team_abbrev": "WAS", "home_team_canonical_id": "team_nba_atl", "away_team_canonical_id": "team_nba_was", + "venue": "State Farm Arena", "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260224_dal_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-24T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260224_okc_tor", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-24T05:00:00Z", + "season": "2026", + "date": "2026-02-24", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "TOR", + "away_team_abbrev": "OKC", "home_team_canonical_id": "team_nba_tor", "away_team_canonical_id": "team_nba_okc", + "venue": "Scotiabank Arena", "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260224_bos_phx", + "canonical_id": "game_nba_2025_20260224_dal_brk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-24T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "season": "2026", + "date": "2026-02-24", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "BKN", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_dal", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260224_cho_chi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-24T06:00:00Z", + "season": "2026", + "date": "2026-02-24", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "CHI", + "away_team_abbrev": "CHA", "home_team_canonical_id": "team_nba_chi", "away_team_canonical_id": "team_nba_cho", + "venue": "United Center", "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260224_nyk_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-24T06:00:00Z", + "season": "2026", + "date": "2026-02-24", + "time": "7p", + "home_team": "Cleveland Cavaliers", + "away_team": "New York Knicks", + "home_team_abbrev": "CLE", + "away_team_abbrev": "NYK", "home_team_canonical_id": "team_nba_cle", "away_team_canonical_id": "team_nba_nyk", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260224_mia_mil", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-24T06:00:00Z", + "season": "2026", + "date": "2026-02-24", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Miami Heat", + "home_team_abbrev": "MIL", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_nba_mil", "away_team_canonical_id": "team_nba_mia", + "venue": "Fiserv Forum", "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260224_gsw_nop", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-24T06:00:00Z", + "season": "2026", + "date": "2026-02-24", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Golden State Warriors", + "home_team_abbrev": "NOP", + "away_team_abbrev": "GSW", "home_team_canonical_id": "team_nba_nop", "away_team_canonical_id": "team_nba_gsw", + "venue": "Smoothie King Center", "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260224_bos_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-02-24", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "Boston Celtics", + "home_team_abbrev": "PHX", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_bos", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260224_orl_lal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-24T08:00:00Z", + "season": "2026", + "date": "2026-02-24", + "time": "7:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Orlando Magic", + "home_team_abbrev": "LAL", + "away_team_abbrev": "ORL", "home_team_canonical_id": "team_nba_lal", "away_team_canonical_id": "team_nba_orl", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260224_min_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-24T08:00:00Z", + "season": "2026", + "date": "2026-02-24", + "time": "8p", + "home_team": "Portland Blazers", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "POR", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nba_por", "away_team_canonical_id": "team_nba_min", + "venue": "Moda Center", "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260225_okc_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-25T05:00:00Z", + "season": "2026", + "date": "2026-02-25", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "DET", + "away_team_abbrev": "OKC", "home_team_canonical_id": "team_nba_det", "away_team_canonical_id": "team_nba_okc", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260225_sas_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-25T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260225_buf_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-25T05:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260225_tor_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-25T05:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260225_phi_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-25T05:00:00Z", + "season": "2026", + "date": "2026-02-25", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "WAS", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_nhl_was", "away_team_canonical_id": "team_nhl_phi", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260225_buf_njd", + "sport": "NHL", + "season": "2026", + "date": "2026-02-25", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "NJ", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260225_sas_tor", + "sport": "NBA", + "season": "2026", + "date": "2026-02-25", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "TOR", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_sas", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260225_gsw_mem", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-25T06:00:00Z", + "season": "2026", + "date": "2026-02-25", + "time": "6:30p", + "home_team": "Memphis Grizzlies", + "away_team": "Golden State Warriors", + "home_team_abbrev": "MEM", + "away_team_abbrev": "GSW", "home_team_canonical_id": "team_nba_mem", "away_team_canonical_id": "team_nba_gsw", + "venue": "FedExForum", "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260225_tor_tb", + "sport": "NHL", + "season": "2026", + "date": "2026-02-25", + "time": "7:30p", + "home_team": "Tampa Bay Lightning", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "TB", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260225_sac_hou", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-25T06:00:00Z", + "season": "2026", + "date": "2026-02-25", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Sacramento Kings", + "home_team_abbrev": "HOU", + "away_team_abbrev": "SAC", "home_team_canonical_id": "team_nba_hou", "away_team_canonical_id": "team_nba_sac", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260225_cle_mil", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-25T06:00:00Z", + "season": "2026", + "date": "2026-02-25", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nba_mil", "away_team_canonical_id": "team_nba_cle", + "venue": "Fiserv Forum", "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260225_sea_dal", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-25T06:00:00Z", + "season": "2026", + "date": "2026-02-25", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Seattle Kraken", + "home_team_abbrev": "DAL", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_nhl_dal", "away_team_canonical_id": "team_nhl_sea", + "venue": "American Airlines Center", "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260225_bos_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-25T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260225_col_ari", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-25T07:00:00Z", + "season": "2026", + "date": "2026-02-25", + "time": "7p", + "home_team": "Utah Club", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "ARI", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_nhl_ari", "away_team_canonical_id": "team_nhl_col", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260225_edm_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-25T08:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260225_vgk_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-25T08:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "canonical_id": "game_nba_2025_20260225_bos_den", + "sport": "NBA", + "season": "2026", + "date": "2026-02-25", + "time": "8p", + "home_team": "Denver Nuggets", + "away_team": "Boston Celtics", + "home_team_abbrev": "DEN", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_bos", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260225_wpg_van", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-25T08:00:00Z", + "season": "2026", + "date": "2026-02-25", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "VAN", + "away_team_abbrev": "WPG", "home_team_canonical_id": "team_nhl_van", "away_team_canonical_id": "team_nhl_wpg", + "venue": "Rogers Arena", "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260225_vgk_la", + "sport": "NHL", + "season": "2026", + "date": "2026-02-25", + "time": "7p", + "home_team": "Los Angeles Kings", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "LA", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260225_edm_ana", + "sport": "NHL", + "season": "2026", + "date": "2026-02-25", + "time": "7:30p", + "home_team": "Anaheim Ducks", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "ANA", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260226_cho_ind", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T05:00:00Z", + "season": "2026", + "date": "2026-02-26", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "IND", + "away_team_abbrev": "CHA", "home_team_canonical_id": "team_nba_ind", "away_team_canonical_id": "team_nba_cho", + "venue": "Gainbridge Fieldhouse", "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260226_was_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260226_sas_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260226_hou_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T05:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260226_lal_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260226_cbj_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260226_tb_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260226_tor_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260226_nyi_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260226_phi_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260226_det_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260226_njd_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260226_por_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260226_sac_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260226_chi_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T06:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260226_sea_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T06:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260226_nop_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260226_min_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T07:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260226_mia_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T08:00:00Z", + "season": "2026", + "date": "2026-02-26", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Miami Heat", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_mia", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260226_det_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-02-26", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "OTT", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_det", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260226_cbj_bos", + "sport": "NHL", + "season": "2026", + "date": "2026-02-26", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260226_tor_fla", + "sport": "NHL", + "season": "2026", + "date": "2026-02-26", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "FLA", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260226_nyi_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-02-26", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "New York Islanders", + "home_team_abbrev": "MTL", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260226_njd_pit", + "sport": "NHL", + "season": "2026", + "date": "2026-02-26", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "New Jersey Devils", + "home_team_abbrev": "PIT", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_njd", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260226_tb_car", + "sport": "NHL", + "season": "2026", + "date": "2026-02-26", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "CAR", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_tb", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260226_sas_brk", + "sport": "NBA", + "season": "2026", + "date": "2026-02-26", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "BKN", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_sas", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260226_hou_orl", + "sport": "NBA", + "season": "2026", + "date": "2026-02-26", + "time": "7:30p", + "home_team": "Orlando Magic", + "away_team": "Houston Rockets", + "home_team_abbrev": "ORL", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_hou", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260226_was_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-02-26", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Washington Wizards", + "home_team_abbrev": "ATL", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_was", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260226_por_chi", + "sport": "NBA", + "season": "2026", + "date": "2026-02-26", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Portland Blazers", + "home_team_abbrev": "CHI", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_por", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260226_sea_stl", + "sport": "NHL", + "season": "2026", + "date": "2026-02-26", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Seattle Kraken", + "home_team_abbrev": "STL", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260226_chi_nsh", + "sport": "NHL", + "season": "2026", + "date": "2026-02-26", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "NSH", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260226_phi_nyr", + "sport": "NHL", + "season": "2026", + "date": "2026-02-26", + "time": "8p", + "home_team": "New York Rangers", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "NYR", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_phi", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260226_sac_dal", + "sport": "NBA", + "season": "2026", + "date": "2026-02-26", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Sacramento Kings", + "home_team_abbrev": "DAL", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_sac", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260226_lal_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-02-26", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "PHX", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_lal", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260226_nop_uta", + "sport": "NBA", + "season": "2026", + "date": "2026-02-26", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "UTA", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_nop", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260226_min_col", + "sport": "NHL", + "season": "2026", + "date": "2026-02-26", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "Minnesota Wild", + "home_team_abbrev": "COL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_min", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260226_min_lac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T08:00:00Z", + "season": "2026", + "date": "2026-02-26", + "time": "7p", + "home_team": "Los Angeles Clippers", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "LAC", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nba_lac", "away_team_canonical_id": "team_nba_min", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260226_edm_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T08:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260226_cgy_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-26T08:00:00Z", + "season": "2026", + "date": "2026-02-26", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Calgary Flames", + "home_team_abbrev": "SJ", + "away_team_abbrev": "CGY", "home_team_canonical_id": "team_nhl_sj", "away_team_canonical_id": "team_nhl_cgy", + "venue": "SAP Center", "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260226_edm_la", + "sport": "NHL", + "season": "2026", + "date": "2026-02-26", + "time": "7:30p", + "home_team": "Los Angeles Kings", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "LA", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260227_cle_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-27T05:00:00Z", + "season": "2026", + "date": "2026-02-27", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "DET", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nba_det", "away_team_canonical_id": "team_nba_cle", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260227_brk_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-27T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260227_buf_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-27T05:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260227_vgk_was", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-27T05:00:00Z", + "season": "2026", + "date": "2026-02-27", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "WAS", + "away_team_abbrev": "VGK", "home_team_canonical_id": "team_nhl_was", "away_team_canonical_id": "team_nhl_vgk", + "venue": "Capital One Arena", "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260227_buf_fla", + "sport": "NHL", + "season": "2026", + "date": "2026-02-27", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "FLA", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260227_brk_bos", + "sport": "NBA", + "season": "2026", + "date": "2026-02-27", + "time": "7:30p", + "home_team": "Boston Celtics", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "BOS", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_brk", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260227_nyk_mil", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-27T06:00:00Z", + "season": "2026", + "date": "2026-02-27", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "New York Knicks", + "home_team_abbrev": "MIL", + "away_team_abbrev": "NYK", "home_team_canonical_id": "team_nba_mil", "away_team_canonical_id": "team_nba_nyk", + "venue": "Fiserv Forum", "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260227_mem_dal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-27T06:00:00Z", + "season": "2026", + "date": "2026-02-27", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "DAL", + "away_team_abbrev": "MEM", "home_team_canonical_id": "team_nba_dal", "away_team_canonical_id": "team_nba_mem", + "venue": "American Airlines Center", "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260227_den_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-27T06:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260227_min_ari", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-27T07:00:00Z", + "season": "2026", + "date": "2026-02-27", + "time": "7p", + "home_team": "Utah Club", + "away_team": "Minnesota Wild", + "home_team_abbrev": "ARI", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nhl_ari", "away_team_canonical_id": "team_nhl_min", + "venue": "Delta Center", "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260227_den_okc", + "sport": "NBA", + "season": "2026", + "date": "2026-02-27", + "time": "8:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "Denver Nuggets", + "home_team_abbrev": "OKC", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_den", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260227_wpg_ana", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-27T08:00:00Z", + "season": "2026", + "date": "2026-02-27", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "ANA", + "away_team_abbrev": "WPG", "home_team_canonical_id": "team_nhl_ana", "away_team_canonical_id": "team_nhl_wpg", + "venue": "Honda Center", "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260228_por_cho", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-28T05:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260228_hou_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-28T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260228_tor_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-28T05:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260228_det_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260228_nyi_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260228_was_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260228_pit_nyr", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-28T05:00:00Z", + "season": "2026", + "date": "2026-02-28", + "time": "12:30p", + "home_team": "New York Rangers", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "NYR", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_nhl_nyr", "away_team_canonical_id": "team_nhl_pit", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260228_por_cho", + "sport": "NBA", + "season": "2026", + "date": "2026-02-28", + "time": "1p", + "home_team": "Charlotte Hornets", + "away_team": "Portland Blazers", + "home_team_abbrev": "CHA", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_por", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260228_mtl_chi", + "sport": "MLS", + "season": "2026", + "date": "2026-02-28", + "time": "1:30p", + "home_team": "Chicago Chicago Fire", + "away_team": "Montreal CF Montreal", + "home_team_abbrev": "CHI", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_mls_chi", + "away_team_canonical_id": "team_mls_mtl", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_mls_soldier_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260228_ne_ny", + "sport": "MLS", + "season": "2026", + "date": "2026-02-28", + "time": "2:30p", + "home_team": "New York New York Red Bulls", + "away_team": "New England New England Revolution", + "home_team_abbrev": "RB", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_mls_ny", + "away_team_canonical_id": "team_mls_ne", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_mls_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260228_hou_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-02-28", + "time": "3p", + "home_team": "Miami Heat", + "away_team": "Houston Rockets", + "home_team_abbrev": "MIA", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_hou", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260228_bos_phi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-28T05:00:00Z", + "season": "2026", + "date": "2026-02-28", + "time": "3p", + "home_team": "Philadelphia Flyers", + "away_team": "Boston Bruins", + "home_team_abbrev": "PHI", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_nhl_phi", "away_team_canonical_id": "team_nhl_bos", + "venue": "Wells Fargo Center", "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260228_buf_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_amalie_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260228_ott_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260228_nsh_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-28T06:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260228_njd_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-28T06:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260228_nop_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-28T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260228_chi_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-28T07:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260228_lal_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-02-28T08:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260228_cgy_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-28T08:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260228_van_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-28T08:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260228_edm_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-02-28T08:00:00Z", + "season": "2026", + "date": "2026-02-28", + "time": "1p", + "home_team": "San Jose Sharks", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "SJ", + "away_team_abbrev": "EDM", "home_team_canonical_id": "team_nhl_sj", "away_team_canonical_id": "team_nhl_edm", + "venue": "SAP Center", "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260228_por_col", + "sport": "MLS", + "season": "2026", + "date": "2026-02-28", + "time": "2:30p", + "home_team": "Colorado Colorado Rapids", + "away_team": "Portland Portland Timbers", + "home_team_abbrev": "COL", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_mls_col", + "away_team_canonical_id": "team_mls_por", + "venue": "Dick's Sporting Goods Park", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260228_cin_min", + "sport": "MLS", + "season": "2026", + "date": "2026-02-28", + "time": "3:30p", + "home_team": "Minnesota Minnesota United", + "away_team": "Cincinnati FC Cincinnati", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mls_min", + "away_team_canonical_id": "team_mls_cin", + "venue": "Allianz Field", + "stadium_canonical_id": "stadium_mls_allianz_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260228_njd_stl", + "sport": "NHL", + "season": "2026", + "date": "2026-02-28", + "time": "4p", + "home_team": "St. Louis Blues", + "away_team": "New Jersey Devils", + "home_team_abbrev": "STL", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_njd", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260228_nyi_cbj", + "sport": "NHL", + "season": "2026", + "date": "2026-02-28", + "time": "6p", + "home_team": "Columbus Blue Jackets", + "away_team": "New York Islanders", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260228_chi_col", + "sport": "NHL", + "season": "2026", + "date": "2026-02-28", + "time": "4p", + "home_team": "Colorado Avalanche", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "COL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260228_tor_was", + "sport": "NBA", + "season": "2026", + "date": "2026-02-28", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Toronto Raptors", + "home_team_abbrev": "WAS", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_tor", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260228_was_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-02-28", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Washington Capitals", + "home_team_abbrev": "MTL", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_was", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260228_cgy_la", + "sport": "NHL", + "season": "2026", + "date": "2026-02-28", + "time": "4p", + "home_team": "Los Angeles Kings", + "away_team": "Calgary Flames", + "home_team_abbrev": "LA", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260228_buf_tb", + "sport": "NHL", + "season": "2026", + "date": "2026-02-28", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "TB", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260228_det_car", + "sport": "NHL", + "season": "2026", + "date": "2026-02-28", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "CAR", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_det", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260228_ott_tor", + "sport": "NHL", + "season": "2026", + "date": "2026-02-28", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Ottawa Senators", + "home_team_abbrev": "TOR", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260301_sea_slc", + "sport": "MLS", + "season": "2026", + "date": "2026-02-28", + "time": "5:30p", + "home_team": "Salt Lake Real Salt Lake", + "away_team": "Seattle Seattle Sounders", + "home_team_abbrev": "SLC", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mls_slc", + "away_team_canonical_id": "team_mls_sea", + "venue": "America First Field", + "stadium_canonical_id": "stadium_mls_america_first_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260301_atl_sj", + "sport": "MLS", + "season": "2026", + "date": "2026-02-28", + "time": "4:30p", + "home_team": "San Jose San Jose Earthquakes", + "away_team": "Atlanta Atlanta United", + "home_team_abbrev": "SJ", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mls_sj", + "away_team_canonical_id": "team_mls_atl", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_mls_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260228_nsh_dal", + "sport": "NHL", + "season": "2026", + "date": "2026-02-28", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Nashville Predators", + "home_team_abbrev": "DAL", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260301_lafc_hou", + "sport": "MLS", + "season": "2026", + "date": "2026-02-28", + "time": "7:30p", + "home_team": "Houston Houston Dynamo", + "away_team": "Los Angeles Los Angeles FC", + "home_team_abbrev": "HOU", + "away_team_abbrev": "LAFC", + "home_team_canonical_id": "team_mls_hou", + "away_team_canonical_id": "team_mls_lafc", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_mls_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260301_clb_skc", + "sport": "MLS", + "season": "2026", + "date": "2026-02-28", + "time": "7:30p", + "home_team": "Kansas City Sporting Kansas City", + "away_team": "Columbus Columbus Crew", + "home_team_abbrev": "SKC", + "away_team_abbrev": "CLB", + "home_team_canonical_id": "team_mls_skc", + "away_team_canonical_id": "team_mls_clb", + "venue": "Children's Mercy Park", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260301_nsh_dal", + "sport": "MLS", + "season": "2026", + "date": "2026-02-28", + "time": "7:30p", + "home_team": "Dallas FC Dallas", + "away_team": "Nashville Nashville SC", + "home_team_abbrev": "DAL", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_mls_dal", + "away_team_canonical_id": "team_mls_nsh", + "venue": "Toyota Stadium", + "stadium_canonical_id": "stadium_mls_toyota_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260228_lal_gsw", + "sport": "NBA", + "season": "2026", + "date": "2026-02-28", + "time": "5:30p", + "home_team": "Golden State Warriors", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "GSW", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_lal", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260301_tor_van", + "sport": "MLS", + "season": "2026", + "date": "2026-02-28", + "time": "6:30p", + "home_team": "Vancouver Vancouver Whitecaps", + "away_team": "Toronto Toronto FC", + "home_team_abbrev": "VAN", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mls_van", + "away_team_canonical_id": "team_mls_tor", + "venue": "BC Place", + "stadium_canonical_id": "stadium_mls_bc_place", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260228_nop_uta", + "sport": "NBA", + "season": "2026", + "date": "2026-02-28", + "time": "7:30p", + "home_team": "Utah Jazz", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "UTA", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_nop", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260228_van_sea", + "sport": "NHL", + "season": "2026", + "date": "2026-02-28", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "SEA", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_van", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260301_clt_lag", + "sport": "MLS", + "season": "2026", + "date": "2026-02-28", + "time": "7:30p", + "home_team": "Los Angeles LA Galaxy", + "away_team": "Charlotte Charlotte FC", + "home_team_abbrev": "LAG", + "away_team_abbrev": "CLT", + "home_team_canonical_id": "team_mls_lag", + "away_team_canonical_id": "team_mls_clt", + "venue": "Dignity Health Sports Park", + "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260301_sas_nyk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-01T05:00:00Z", + "season": "2026", + "date": "2026-03-01", + "time": "1p", + "home_team": "New York Knicks", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "NYK", + "away_team_abbrev": "SAS", "home_team_canonical_id": "team_nba_nyk", "away_team_canonical_id": "team_nba_sas", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260301_cle_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-01T05:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260301_mem_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-01T05:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260301_por_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-01T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260301_phi_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-01T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260301_det_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-01T05:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260301_fla_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-01T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260301_vgk_pit", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-01T05:00:00Z", + "season": "2026", + "date": "2026-03-01", + "time": "1p", + "home_team": "Pittsburgh Penguins", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "PIT", + "away_team_abbrev": "VGK", "home_team_canonical_id": "team_nhl_pit", "away_team_canonical_id": "team_nhl_vgk", + "venue": "PPG Paints Arena", "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260301_mil_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-01T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260301_okc_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-01T06:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260301_stl_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-01T06:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260301_min_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-01T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260301_chi_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-01T07:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260301_nop_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-01T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260301_sac_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-01T08:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260301_cgy_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-01T08:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260301_wpg_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-01T08:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -70854,54 +39657,17 @@ "canonical_id": "game_mlb_2026_20260301_tor_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-01T18:05:00Z", + "date": "2026-03-01", + "time": "1:05p", + "home_team": "Detroit Tigers", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "DET", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_publix_field_at_joker_marchant_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260301_tbr_atl", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-01T18:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_cooltoday_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260301_pit_stl", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-01T18:05:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260301_nyy_phi", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-01T18:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_baycare_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260301_mia_wsn", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-01T18:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", + "venue": "Publix Field at Joker Marchant Stadium", + "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -70909,10 +39675,35 @@ "canonical_id": "game_mlb_2026_20260301_bal_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-01T18:05:00Z", + "date": "2026-03-01", + "time": "1:05p", + "home_team": "Boston Red Sox", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "BOS", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_jetblue_park", + "venue": "JetBlue Park", + "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260301_pit_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-01", + "time": "1:05p", + "home_team": "St. Louis Cardinals", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "STL", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_pit", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -70920,10 +39711,71 @@ "canonical_id": "game_mlb_2026_20260301_atl_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-01T18:05:00Z", + "date": "2026-03-01", + "time": "1:05p", + "home_team": "Minnesota Twins", + "away_team": "Atlanta Braves", + "home_team_abbrev": "MIN", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_hammond_stadium", + "venue": "Hammond Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260301_mia_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-03-01", + "time": "1:05p", + "home_team": "Washington Nationals", + "away_team": "Miami Marlins", + "home_team_abbrev": "WSN", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mia", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260301_nyy_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-03-01", + "time": "1:05p", + "home_team": "Philadelphia Phillies", + "away_team": "New York Yankees", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "BayCare Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260301_tbr_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-01", + "time": "1:05p", + "home_team": "Atlanta Braves", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "ATL", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "CoolToday Park", + "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -70931,65 +39783,35 @@ "canonical_id": "game_mlb_2026_20260301_hou_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-01T18:10:00Z", + "date": "2026-03-01", + "time": "1:10p", + "home_team": "New York Mets", + "away_team": "Houston Astros", + "home_team_abbrev": "NYM", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_clover_park", + "venue": "Clover Park", + "stadium_canonical_id": "stadium_mlb_spring_clover_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260301_sd_sf", - "sport": "MLB", + "canonical_id": "game_mls_2026_20260301_dc_aus", + "sport": "MLS", "season": "2026", - "game_datetime_utc": "2026-03-01T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_scottsdale_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260301_mil_kc", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-01T20:05:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260301_laa_lad", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-01T20:05:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260301_col_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-01T20:05:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260301_cin_oak", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-01T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_hohokam_stadium", + "date": "2026-03-01", + "time": "1:30p", + "home_team": "Austin Austin FC", + "away_team": "Washington D.C. United", + "home_team_abbrev": "AUS", + "away_team_abbrev": "DC", + "home_team_canonical_id": "team_mls_aus", + "away_team_canonical_id": "team_mls_dc", + "venue": "Q2 Stadium", + "stadium_canonical_id": "stadium_mls_q2_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -70997,21 +39819,107 @@ "canonical_id": "game_mlb_2026_20260301_chw_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-01T20:05:00Z", + "date": "2026-03-01", + "time": "1:05p", + "home_team": "Chicago Cubs", + "away_team": "Chicago White Sox", + "home_team_abbrev": "CHC", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_sloan_park", + "venue": "Sloan Park", + "stadium_canonical_id": "stadium_mlb_spring_sloan_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260301_tex_sea", + "canonical_id": "game_mlb_2026_20260301_cin_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-01T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "date": "2026-03-01", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "OAK", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_cin", + "venue": "Hohokam Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260301_laa_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-03-01", + "time": "1:05p", + "home_team": "Los Angeles Dodgers", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "LAD", + "away_team_abbrev": "LAA", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_laa", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260301_mil_kc", + "sport": "MLB", + "season": "2026", + "date": "2026-03-01", + "time": "1:05p", + "home_team": "Kansas City Royals", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "KC", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_mlb_kc", + "away_team_canonical_id": "team_mlb_mil", + "venue": "Surprise Stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260301_col_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-03-01", + "time": "1:05p", + "home_team": "Cleveland Guardians", + "away_team": "Colorado Rockies", + "home_team_abbrev": "CLE", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_col", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260301_sd_sf", + "sport": "MLB", + "season": "2026", + "date": "2026-03-01", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "San Diego Padres", + "home_team_abbrev": "SF", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_sf", + "away_team_canonical_id": "team_mlb_sd", + "venue": "Scottsdale Stadium", + "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -71019,131 +39927,359 @@ "canonical_id": "game_mlb_2026_20260301_cle_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-01T20:10:00Z", + "date": "2026-03-01", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260302_hou_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-02T05:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260302_cbj_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-02T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260302_phi_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-02T05:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260302_bos_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-02T06:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260302_det_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-02T06:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260302_den_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-02T07:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260302_lac_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-02T08:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260302_col_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-02T08:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260302_car_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-02T08:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260302_dal_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-02T08:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_rogers_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260302_wsn_hou", + "canonical_id": "game_mlb_2026_20260301_tex_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-02T18:05:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", + "date": "2026-03-01", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Texas Rangers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260301_mil_chi", + "sport": "NBA", + "season": "2026", + "date": "2026-03-01", + "time": "2:30p", + "home_team": "Chicago Bulls", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "CHI", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_mil", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260301_min_den", + "sport": "NBA", + "season": "2026", + "date": "2026-03-01", + "time": "1:30p", + "home_team": "Denver Nuggets", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "DEN", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_min", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260301_cle_brk", + "sport": "NBA", + "season": "2026", + "date": "2026-03-01", + "time": "3:30p", + "home_team": "Brooklyn Nets", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "BKN", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_cle", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260301_wpg_sj", + "sport": "NHL", + "season": "2026", + "date": "2026-03-01", + "time": "1p", + "home_team": "San Jose Sharks", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "SJ", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260301_chi_ari", + "sport": "NHL", + "season": "2026", + "date": "2026-03-01", + "time": "2p", + "home_team": "Utah Club", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260301_nyc_phi", + "sport": "MLS", + "season": "2026", + "date": "2026-03-01", + "time": "4:30p", + "home_team": "Philadelphia Philadelphia Union", + "away_team": "New York New York City FC", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NYC", + "home_team_canonical_id": "team_mls_phi", + "away_team_canonical_id": "team_mls_nyc", + "venue": "Subaru Park", + "stadium_canonical_id": "stadium_mls_subaru_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260301_mem_ind", + "sport": "NBA", + "season": "2026", + "date": "2026-03-01", + "time": "5p", + "home_team": "Indiana Pacers", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "IND", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_mem", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260301_stl_min", + "sport": "NHL", + "season": "2026", + "date": "2026-03-01", + "time": "4p", + "home_team": "Minnesota Wild", + "away_team": "St. Louis Blues", + "home_team_abbrev": "MIN", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260301_phi_bos", + "sport": "NBA", + "season": "2026", + "date": "2026-03-01", + "time": "6p", + "home_team": "Boston Celtics", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_phi", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260301_det_orl", + "sport": "NBA", + "season": "2026", + "date": "2026-03-01", + "time": "6p", + "home_team": "Orlando Magic", + "away_team": "Detroit Pistons", + "home_team_abbrev": "ORL", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_det", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260301_por_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-03-01", + "time": "6p", + "home_team": "Atlanta Hawks", + "away_team": "Portland Blazers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_por", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260301_fla_nyi", + "sport": "NHL", + "season": "2026", + "date": "2026-03-01", + "time": "6:30p", + "home_team": "New York Islanders", + "away_team": "Florida Panthers", + "home_team_abbrev": "NYI", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_fla", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260302_mia_orl", + "sport": "MLS", + "season": "2026", + "date": "2026-03-01", + "time": "7p", + "home_team": "Orlando Orlando City", + "away_team": "Miami Inter Miami", + "home_team_abbrev": "ORL", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mls_orl", + "away_team_canonical_id": "team_mls_mia", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260301_okc_dal", + "sport": "NBA", + "season": "2026", + "date": "2026-03-01", + "time": "7p", + "home_team": "Dallas Mavericks", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "DAL", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_okc", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260301_cgy_ana", + "sport": "NHL", + "season": "2026", + "date": "2026-03-01", + "time": "5p", + "home_team": "Anaheim Ducks", + "away_team": "Calgary Flames", + "home_team_abbrev": "ANA", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260302_stl_sd", + "sport": "MLS", + "season": "2026", + "date": "2026-03-01", + "time": "6p", + "home_team": "San Diego San Diego FC", + "away_team": "St. Louis St. Louis City SC", + "home_team_abbrev": "SD", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mls_sd", + "away_team_canonical_id": "team_mls_stl", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260301_nop_lac", + "sport": "NBA", + "season": "2026", + "date": "2026-03-01", + "time": "6p", + "home_team": "Los Angeles Clippers", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "LAC", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_nop", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260301_sac_lal", + "sport": "NBA", + "season": "2026", + "date": "2026-03-01", + "time": "6:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Sacramento Kings", + "home_team_abbrev": "LAL", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_sac", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -71151,21 +40287,35 @@ "canonical_id": "game_mlb_2026_20260302_tbr_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-02T18:05:00Z", + "date": "2026-03-02", + "time": "1:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "PIT", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_lecom_park", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "LECOM Park", + "stadium_canonical_id": "stadium_mlb_spring_lecom_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260302_mia_stl", + "canonical_id": "game_mlb_2026_20260302_wsn_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-02T18:05:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", + "date": "2026-03-02", + "time": "1:05p", + "home_team": "Houston Astros", + "away_team": "Washington Nationals", + "home_team_abbrev": "HOU", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -71173,10 +40323,35 @@ "canonical_id": "game_mlb_2026_20260302_atl_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-02T18:05:00Z", + "date": "2026-03-02", + "time": "1:05p", + "home_team": "Detroit Tigers", + "away_team": "Atlanta Braves", + "home_team_abbrev": "DET", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_publix_field_at_joker_marchant_stadium", + "venue": "Publix Field at Joker Marchant Stadium", + "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260302_mia_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-02", + "time": "1:05p", + "home_team": "St. Louis Cardinals", + "away_team": "Miami Marlins", + "home_team_abbrev": "STL", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mia", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -71184,10 +40359,35 @@ "canonical_id": "game_mlb_2026_20260302_bos_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-02T18:07:00Z", + "date": "2026-03-02", + "time": "1:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Boston Red Sox", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_td_ballpark", + "venue": "TD Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260302_det_nsh", + "sport": "NHL", + "season": "2026", + "date": "2026-03-02", + "time": "1p", + "home_team": "Nashville Predators", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "NSH", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_det", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -71195,21 +40395,17 @@ "canonical_id": "game_mlb_2026_20260302_sf_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-02T20:05:00Z", + "date": "2026-03-02", + "time": "1:05p", + "home_team": "Chicago White Sox", + "away_team": "San Francisco Giants", + "home_team_abbrev": "CHW", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260302_cle_tex", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-02T20:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_surprise_stadium", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -71217,21 +40413,35 @@ "canonical_id": "game_mlb_2026_20260302_chc_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-02T20:05:00Z", + "date": "2026-03-02", + "time": "1:05p", + "home_team": "Cincinnati Reds", + "away_team": "Chicago Cubs", + "home_team_abbrev": "CIN", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260302_oak_sd", + "canonical_id": "game_mlb_2026_20260302_cle_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-02T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "date": "2026-03-02", + "time": "1:05p", + "home_team": "Texas Rangers", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "TEX", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_cle", + "venue": "Surprise Stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -71239,10 +40449,17 @@ "canonical_id": "game_mlb_2026_20260302_lad_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-02T20:10:00Z", + "date": "2026-03-02", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "COL", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -71250,241 +40467,197 @@ "canonical_id": "game_mlb_2026_20260302_kc_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-02T20:10:00Z", + "date": "2026-03-02", + "time": "1:10p", + "home_team": "Los Angeles Angels", + "away_team": "Kansas City Royals", + "home_team_abbrev": "LAA", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_tempe_diablo_stadium", + "venue": "Tempe Diablo Stadium", + "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260303_dal_cho", + "canonical_id": "game_mlb_2026_20260302_oak_sd", + "sport": "MLB", + "season": "2026", + "date": "2026-03-02", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Oakland Athletics", + "home_team_abbrev": "SD", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_sd", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260302_hou_was", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T05:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_spectrum_center", + "season": "2026", + "date": "2026-03-02", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Houston Rockets", + "home_team_abbrev": "WAS", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_hou", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260303_was_orl", + "canonical_id": "game_nhl_2025_20260302_cbj_nyr", + "sport": "NHL", + "season": "2026", + "date": "2026-03-02", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "NYR", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260302_bos_mil", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T05:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_kia_center", + "season": "2026", + "date": "2026-03-02", + "time": "6:30p", + "home_team": "Milwaukee Bucks", + "away_team": "Boston Celtics", + "home_team_abbrev": "MIL", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_bos", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260303_brk_mia", + "canonical_id": "game_nhl_2025_20260302_phi_tor", + "sport": "NHL", + "season": "2026", + "date": "2026-03-02", + "time": "7:30p", + "home_team": "Toronto Maple Leafs", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_phi", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260302_den_uta", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_kaseya_center", + "season": "2026", + "date": "2026-03-02", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Denver Nuggets", + "home_team_abbrev": "UTA", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_den", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260303_nyk_tor", + "canonical_id": "game_nba_2025_20260302_lac_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "season": "2026", + "date": "2026-03-02", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "GSW", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_lac", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260303_pit_bos", + "canonical_id": "game_nhl_2025_20260302_dal_van", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260303_vgk_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T05:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260303_nsh_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260303_fla_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T05:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260303_ari_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T05:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260303_det_cle", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T06:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260303_okc_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T06:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260303_mem_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260303_tb_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T06:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260303_chi_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T06:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260303_dal_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", + "season": "2026", + "date": "2026-03-02", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Dallas Stars", + "home_team_abbrev": "VAN", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_van", "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260303_ott_edm", + "canonical_id": "game_nhl_2025_20260302_car_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_rogers_place", + "season": "2026", + "date": "2026-03-02", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_car", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260303_sas_phi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T08:00:00Z", - "home_team_canonical_id": "team_nba_phi", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260303_nop_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T08:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260303_phx_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T08:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260303_col_ana", + "canonical_id": "game_nhl_2025_20260302_col_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T08:00:00Z", - "home_team_canonical_id": "team_nhl_ana", + "season": "2026", + "date": "2026-03-02", + "time": "7:30p", + "home_team": "Los Angeles Kings", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "LA", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_la", "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260303_mtl_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-03T08:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_sap_center", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -71492,10 +40665,17 @@ "canonical_id": "game_mlb_2026_20260303_tbr_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-03T18:05:00Z", + "date": "2026-03-03", + "time": "1:05p", + "home_team": "Minnesota Twins", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "MIN", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_hammond_stadium", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Hammond Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -71503,21 +40683,17 @@ "canonical_id": "game_mlb_2026_20260303_phi_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-03T18:05:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-03-03", + "time": "1:05p", + "home_team": "Tampa Bay Rays", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "TB", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_charlotte_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260303_sd_chw", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-03T20:05:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", + "venue": "Charlotte Sports Park", + "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -71525,10 +40701,35 @@ "canonical_id": "game_mlb_2026_20260303_lad_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-03T20:05:00Z", + "date": "2026-03-03", + "time": "1:05p", + "home_team": "Cleveland Guardians", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260303_sd_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-03-03", + "time": "1:05p", + "home_team": "Chicago White Sox", + "away_team": "San Diego Padres", + "home_team_abbrev": "CHW", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_sd", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -71536,131 +40737,395 @@ "canonical_id": "game_mlb_2026_20260303_laa_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-03T20:10:00Z", + "date": "2026-03-03", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "SEA", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260304_okc_nyk", + "canonical_id": "game_nba_2025_20260303_was_orl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-04T05:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_madison_square_garden", + "season": "2026", + "date": "2026-03-03", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Washington Wizards", + "home_team_abbrev": "ORL", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_was", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260304_cho_bos", + "canonical_id": "game_nba_2025_20260303_det_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-04T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_td_garden", + "season": "2026", + "date": "2026-03-03", + "time": "6p", + "home_team": "Cleveland Cavaliers", + "away_team": "Detroit Pistons", + "home_team_abbrev": "CLE", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_det", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260304_vgk_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-04T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "canonical_id": "game_nba_2025_20260303_dal_cho", + "sport": "NBA", + "season": "2026", + "date": "2026-03-03", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "CHA", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_dal", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260304_tor_njd", + "canonical_id": "game_nhl_2025_20260303_pit_bos", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-04T05:00:00Z", + "season": "2026", + "date": "2026-03-03", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "BOS", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_pit", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260303_ari_was", + "sport": "NHL", + "season": "2026", + "date": "2026-03-03", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Utah Club", + "home_team_abbrev": "WAS", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260303_fla_njd", + "sport": "NHL", + "season": "2026", + "date": "2026-03-03", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Florida Panthers", + "home_team_abbrev": "NJ", + "away_team_abbrev": "FLA", "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Prudential Center", "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260304_por_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-04T06:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_fedexforum", + "canonical_id": "game_nhl_2025_20260303_nsh_cbj", + "sport": "NHL", + "season": "2026", + "date": "2026-03-03", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Nashville Predators", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260304_atl_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-04T06:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_fiserv_forum", + "canonical_id": "game_nhl_2025_20260303_vgk_buf", + "sport": "NHL", + "season": "2026", + "date": "2026-03-03", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "BUF", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260304_uta_phi", + "canonical_id": "game_nba_2025_20260303_brk_mia", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-04T08:00:00Z", + "season": "2026", + "date": "2026-03-03", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "MIA", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_brk", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260303_nyk_tor", + "sport": "NBA", + "season": "2026", + "date": "2026-03-03", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "New York Knicks", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260303_mem_min", + "sport": "NBA", + "season": "2026", + "date": "2026-03-03", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "MIN", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_mem", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260303_sas_phi", + "sport": "NBA", + "season": "2026", + "date": "2026-03-03", + "time": "5p", + "home_team": "Philadelphia 76ers", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "PHI", + "away_team_abbrev": "SAS", "home_team_canonical_id": "team_nba_phi", - "away_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_sas", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260304_ind_lac", + "canonical_id": "game_nba_2025_20260303_okc_chi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-04T08:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_intuit_dome", + "season": "2026", + "date": "2026-03-03", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "CHI", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_okc", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260304_nyi_ana", + "canonical_id": "game_nhl_2025_20260303_chi_wpg", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-04T08:00:00Z", + "season": "2026", + "date": "2026-03-03", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "WPG", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260303_ott_edm", + "sport": "NHL", + "season": "2026", + "date": "2026-03-03", + "time": "7p", + "home_team": "Edmonton Oilers", + "away_team": "Ottawa Senators", + "home_team_abbrev": "EDM", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260303_dal_cgy", + "sport": "NHL", + "season": "2026", + "date": "2026-03-03", + "time": "7p", + "home_team": "Calgary Flames", + "away_team": "Dallas Stars", + "home_team_abbrev": "CGY", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260303_tb_min", + "sport": "NHL", + "season": "2026", + "date": "2026-03-03", + "time": "8:30p", + "home_team": "Minnesota Wild", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "MIN", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260303_col_ana", + "sport": "NHL", + "season": "2026", + "date": "2026-03-03", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "ANA", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_col", + "venue": "Honda Center", "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260304_stl_sea", + "canonical_id": "game_nhl_2025_20260303_mtl_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-04T08:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "season": "2026", + "date": "2026-03-03", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "SJ", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260304_car_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-04T08:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_rogers_arena", + "canonical_id": "game_nba_2025_20260303_nop_lal", + "sport": "NBA", + "season": "2026", + "date": "2026-03-03", + "time": "7:30p", + "home_team": "Los Angeles Lakers", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "LAL", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_nop", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260303_phx_sac", + "sport": "NBA", + "season": "2026", + "date": "2026-03-03", + "time": "8p", + "home_team": "Sacramento Kings", + "away_team": "Phoenix Suns", + "home_team_abbrev": "SAC", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_phx", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -71668,10 +41133,17 @@ "canonical_id": "game_mlb_2026_20260304_nyy_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-04T18:05:00Z", + "date": "2026-03-04", + "time": "1:05p", + "home_team": "Boston Red Sox", + "away_team": "New York Yankees", + "home_team_abbrev": "BOS", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_jetblue_park", + "venue": "JetBlue Park", + "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -71679,10 +41151,17 @@ "canonical_id": "game_mlb_2026_20260304_hou_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-04T18:05:00Z", + "date": "2026-03-04", + "time": "1:05p", + "home_team": "Baltimore Orioles", + "away_team": "Houston Astros", + "home_team_abbrev": "BAL", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_ed_smith_stadium", + "venue": "Ed Smith Stadium", + "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -71690,10 +41169,17 @@ "canonical_id": "game_mlb_2026_20260304_ari_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-04T20:05:00Z", + "date": "2026-03-04", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "OAK", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_hohokam_stadium", + "venue": "Hohokam Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -71701,10 +41187,125 @@ "canonical_id": "game_mlb_2026_20260304_chc_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-04T20:10:00Z", + "date": "2026-03-04", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Chicago Cubs", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_american_family_fields_of_phoenix", + "venue": "American Family Fields of Phoenix", + "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260304_okc_nyk", + "sport": "NBA", + "season": "2026", + "date": "2026-03-04", + "time": "7p", + "home_team": "New York Knicks", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "NYK", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_okc", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260304_vgk_det", + "sport": "NHL", + "season": "2026", + "date": "2026-03-04", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "DET", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260304_tor_njd", + "sport": "NHL", + "season": "2026", + "date": "2026-03-04", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "NJ", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260304_uta_phi", + "sport": "NBA", + "season": "2026", + "date": "2026-03-04", + "time": "4:30p", + "home_team": "Philadelphia 76ers", + "away_team": "Utah Jazz", + "home_team_abbrev": "PHI", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_uta", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260304_cho_bos", + "sport": "NBA", + "season": "2026", + "date": "2026-03-04", + "time": "7:30p", + "home_team": "Boston Celtics", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_cho", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260304_por_mem", + "sport": "NBA", + "season": "2026", + "date": "2026-03-04", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Portland Blazers", + "home_team_abbrev": "MEM", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_por", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -71712,230 +41313,107 @@ "canonical_id": "game_mlb_2026_20260305_sea_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-05T02:05:00Z", + "date": "2026-03-04", + "time": "7:05p", + "home_team": "San Francisco Giants", + "away_team": "Seattle Mariners", + "home_team_abbrev": "SF", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_scottsdale_stadium", + "venue": "Scottsdale Stadium", + "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260305_dal_orl", + "canonical_id": "game_nba_2025_20260304_atl_mil", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-05T05:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_kia_center", + "season": "2026", + "date": "2026-03-04", + "time": "8:30p", + "home_team": "Milwaukee Bucks", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "MIL", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_atl", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260305_uta_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-05T05:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260305_brk_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-05T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260305_chi_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-05T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260305_fla_cbj", + "canonical_id": "game_nhl_2025_20260304_nyi_ana", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-05T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260305_tor_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-05T05:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260305_ari_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-05T05:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260305_buf_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-05T05:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260305_gsw_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-05T06:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260305_tor_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-05T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260305_det_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-05T06:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260305_bos_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-05T06:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260305_tb_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-05T06:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260305_lal_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-05T07:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260305_ott_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-05T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260305_nop_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-05T08:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260305_nyi_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-05T08:00:00Z", - "home_team_canonical_id": "team_nhl_la", + "season": "2026", + "date": "2026-03-04", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "New York Islanders", + "home_team_abbrev": "ANA", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_ana", "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260305_tor_atl", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20260304_car_van", + "sport": "NHL", "season": "2026", - "game_datetime_utc": "2026-03-05T18:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_cooltoday_park", + "date": "2026-03-04", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "VAN", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_car", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260305_stl_pit", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20260304_stl_sea", + "sport": "NHL", "season": "2026", - "game_datetime_utc": "2026-03-05T18:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_lecom_park", + "date": "2026-03-04", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "St. Louis Blues", + "home_team_abbrev": "SEA", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260305_nym_wsn", - "sport": "MLB", + "canonical_id": "game_nba_2025_20260304_ind_lac", + "sport": "NBA", "season": "2026", - "game_datetime_utc": "2026-03-05T18:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", + "date": "2026-03-04", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Indiana Pacers", + "home_team_abbrev": "LAC", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_ind", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -71943,10 +41421,35 @@ "canonical_id": "game_mlb_2026_20260305_min_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-05T18:05:00Z", + "date": "2026-03-05", + "time": "1:05p", + "home_team": "New York Yankees", + "away_team": "Minnesota Twins", + "home_team_abbrev": "NYY", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_george_m_steinbrenner_field", + "venue": "George M. Steinbrenner Field", + "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260305_tor_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-05", + "time": "1:05p", + "home_team": "Atlanta Braves", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "ATL", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tor", + "venue": "CoolToday Park", + "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -71954,10 +41457,17 @@ "canonical_id": "game_mlb_2026_20260305_bos_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-05T18:05:00Z", + "date": "2026-03-05", + "time": "1:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Boston Red Sox", + "home_team_abbrev": "PHI", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_baycare_ballpark", + "venue": "BayCare Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -71965,10 +41475,53 @@ "canonical_id": "game_mlb_2026_20260305_bal_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-05T18:05:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-03-05", + "time": "1:05p", + "home_team": "Tampa Bay Rays", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "TB", + "away_team_abbrev": "BAL", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_charlotte_sports_park", + "venue": "Charlotte Sports Park", + "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260305_stl_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-03-05", + "time": "1:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "PIT", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_stl", + "venue": "LECOM Park", + "stadium_canonical_id": "stadium_mlb_spring_lecom_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260305_nym_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-03-05", + "time": "1:05p", + "home_team": "Washington Nationals", + "away_team": "New York Mets", + "home_team_abbrev": "WSN", + "away_team_abbrev": "NYM", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nym", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -71976,21 +41529,17 @@ "canonical_id": "game_mlb_2026_20260305_hou_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-05T18:10:00Z", + "date": "2026-03-05", + "time": "1:10p", + "home_team": "Miami Marlins", + "away_team": "Houston Astros", + "home_team_abbrev": "MIA", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260305_lad_cin", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-05T20:05:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -71998,10 +41547,35 @@ "canonical_id": "game_mlb_2026_20260305_ari_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-05T20:05:00Z", + "date": "2026-03-05", + "time": "1:05p", + "home_team": "Chicago Cubs", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "CHC", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_sloan_park", + "venue": "Sloan Park", + "stadium_canonical_id": "stadium_mlb_spring_sloan_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260305_lad_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-03-05", + "time": "1:05p", + "home_team": "Cincinnati Reds", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "CIN", + "away_team_abbrev": "LAD", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_lad", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -72009,10 +41583,17 @@ "canonical_id": "game_mlb_2026_20260305_sd_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-05T20:10:00Z", + "date": "2026-03-05", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "San Diego Padres", + "home_team_abbrev": "SEA", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -72020,10 +41601,17 @@ "canonical_id": "game_mlb_2026_20260305_oak_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-05T20:10:00Z", + "date": "2026-03-05", + "time": "1:10p", + "home_team": "Los Angeles Angels", + "away_team": "Oakland Athletics", + "home_team_abbrev": "LAA", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_tempe_diablo_stadium", + "venue": "Tempe Diablo Stadium", + "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -72031,21 +41619,233 @@ "canonical_id": "game_mlb_2026_20260305_mil_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-05T20:10:00Z", + "date": "2026-03-05", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "COL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260306_tex_kc", - "sport": "MLB", + "canonical_id": "game_nba_2025_20260305_uta_was", + "sport": "NBA", "season": "2026", - "game_datetime_utc": "2026-03-06T01:05:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_surprise_stadium", + "date": "2026-03-05", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Utah Jazz", + "home_team_abbrev": "WAS", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_uta", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260305_dal_orl", + "sport": "NBA", + "season": "2026", + "date": "2026-03-05", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "ORL", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_dal", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260305_tor_nyr", + "sport": "NHL", + "season": "2026", + "date": "2026-03-05", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "NYR", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260305_fla_cbj", + "sport": "NHL", + "season": "2026", + "date": "2026-03-05", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Florida Panthers", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260305_ari_phi", + "sport": "NHL", + "season": "2026", + "date": "2026-03-05", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Utah Club", + "home_team_abbrev": "PHI", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260305_buf_pit", + "sport": "NHL", + "season": "2026", + "date": "2026-03-05", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "PIT", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_buf", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260305_gsw_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-03-05", + "time": "6:30p", + "home_team": "Houston Rockets", + "away_team": "Golden State Warriors", + "home_team_abbrev": "HOU", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260305_brk_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-03-05", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "MIA", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_brk", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260305_tor_min", + "sport": "NBA", + "season": "2026", + "date": "2026-03-05", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "Toronto Raptors", + "home_team_abbrev": "MIN", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_tor", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260305_det_sas", + "sport": "NBA", + "season": "2026", + "date": "2026-03-05", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Detroit Pistons", + "home_team_abbrev": "SAS", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_det", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260305_tb_wpg", + "sport": "NHL", + "season": "2026", + "date": "2026-03-05", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "WPG", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260305_bos_nsh", + "sport": "NHL", + "season": "2026", + "date": "2026-03-05", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "Boston Bruins", + "home_team_abbrev": "NSH", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -72053,197 +41853,125 @@ "canonical_id": "game_mlb_2026_20260306_cle_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-06T01:05:00Z", + "date": "2026-03-05", + "time": "6:05p", + "home_team": "Chicago White Sox", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "CHW", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260306_dal_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-06T05:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_td_garden", + "canonical_id": "game_mlb_2026_20260306_tex_kc", + "sport": "MLB", + "season": "2026", + "date": "2026-03-05", + "time": "6:05p", + "home_team": "Kansas City Royals", + "away_team": "Texas Rangers", + "home_team_abbrev": "KC", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_kc", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Surprise Stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260306_mia_cho", + "canonical_id": "game_nba_2025_20260305_chi_phx", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-06T05:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260306_nop_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-06T05:00:00Z", + "season": "2026", + "date": "2026-03-05", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "Chicago Bulls", + "home_team_abbrev": "PHX", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_chi", + "venue": "Rocket Mortgage FieldHouse", "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260306_fla_det", + "canonical_id": "game_nhl_2025_20260305_ott_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-06T05:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "season": "2026", + "date": "2026-03-05", + "time": "7p", + "home_team": "Calgary Flames", + "away_team": "Ottawa Senators", + "home_team_abbrev": "CGY", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260306_por_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-06T06:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260306_lac_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-06T06:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260306_van_chi", + "canonical_id": "game_nhl_2025_20260305_nyi_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-06T06:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_united_center", + "season": "2026", + "date": "2026-03-05", + "time": "6:30p", + "home_team": "Los Angeles Kings", + "away_team": "New York Islanders", + "home_team_abbrev": "LA", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260306_col_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-06T06:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260306_nyk_den", + "canonical_id": "game_nba_2025_20260305_nop_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-06T07:00:00Z", + "season": "2026", + "date": "2026-03-05", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "SAC", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_nop", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260305_lal_den", + "sport": "NBA", + "season": "2026", + "date": "2026-03-05", + "time": "8p", + "home_team": "Denver Nuggets", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "DEN", + "away_team_abbrev": "LAL", "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_lal", + "venue": "Ball Arena", "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260306_car_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-06T07:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260306_ind_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-06T08:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260306_mtl_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-06T08:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260306_stl_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-06T08:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260306_min_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-06T08:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260306_wsn_hou", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-06T18:05:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260306_stl_bal", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-06T18:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_ed_smith_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260306_phi_pit", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-06T18:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_lecom_park", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -72251,10 +41979,71 @@ "canonical_id": "game_mlb_2026_20260306_bos_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-06T18:05:00Z", + "date": "2026-03-06", + "time": "1:05p", + "home_team": "Detroit Tigers", + "away_team": "Boston Red Sox", + "home_team_abbrev": "DET", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_publix_field_at_joker_marchant_stadium", + "venue": "Publix Field at Joker Marchant Stadium", + "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260306_phi_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-03-06", + "time": "1:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "PIT", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_phi", + "venue": "LECOM Park", + "stadium_canonical_id": "stadium_mlb_spring_lecom_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260306_stl_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-03-06", + "time": "1:05p", + "home_team": "Baltimore Orioles", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "BAL", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_stl", + "venue": "Ed Smith Stadium", + "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260306_wsn_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-03-06", + "time": "1:05p", + "home_team": "Houston Astros", + "away_team": "Washington Nationals", + "home_team_abbrev": "HOU", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -72262,10 +42051,17 @@ "canonical_id": "game_mlb_2026_20260306_pit_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-06T18:07:00Z", + "date": "2026-03-06", + "time": "1:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "TOR", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_td_ballpark", + "venue": "TD Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -72273,32 +42069,17 @@ "canonical_id": "game_mlb_2026_20260306_sea_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-06T20:05:00Z", + "date": "2026-03-06", + "time": "1:05p", + "home_team": "Texas Rangers", + "away_team": "Seattle Mariners", + "home_team_abbrev": "TEX", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260306_laa_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-06T20:05:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260306_col_oak", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-06T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_hohokam_stadium", + "venue": "Surprise Stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -72306,21 +42087,53 @@ "canonical_id": "game_mlb_2026_20260306_cin_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-06T20:05:00Z", + "date": "2026-03-06", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "SF", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_scottsdale_stadium", + "venue": "Scottsdale Stadium", + "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260306_chw_ari", + "canonical_id": "game_mlb_2026_20260306_col_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-06T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", + "date": "2026-03-06", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Colorado Rockies", + "home_team_abbrev": "OAK", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_col", + "venue": "Hohokam Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260306_laa_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-03-06", + "time": "1:05p", + "home_team": "Cleveland Guardians", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "CLE", + "away_team_abbrev": "LAA", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_laa", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -72328,10 +42141,35 @@ "canonical_id": "game_mlb_2026_20260306_ari_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-06T20:10:00Z", + "date": "2026-03-06", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "MIL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_american_family_fields_of_phoenix", + "venue": "American Family Fields of Phoenix", + "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260306_chw_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-03-06", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Chicago White Sox", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CHW", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_chw", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -72339,10 +42177,17 @@ "canonical_id": "game_mlb_2026_20260306_atl_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-06T23:05:00Z", + "date": "2026-03-06", + "time": "6:05p", + "home_team": "Minnesota Twins", + "away_team": "Atlanta Braves", + "home_team_abbrev": "MIN", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_hammond_stadium", + "venue": "Hammond Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -72350,10 +42195,71 @@ "canonical_id": "game_mlb_2026_20260306_tbr_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-06T23:35:00Z", + "date": "2026-03-06", + "time": "6:35p", + "home_team": "New York Yankees", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "NYY", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_george_m_steinbrenner_field", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "George M. Steinbrenner Field", + "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260306_mia_cho", + "sport": "NBA", + "season": "2026", + "date": "2026-03-06", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Miami Heat", + "home_team_abbrev": "CHA", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_mia", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260306_dal_bos", + "sport": "NBA", + "season": "2026", + "date": "2026-03-06", + "time": "7p", + "home_team": "Boston Celtics", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "BOS", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_dal", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260306_fla_det", + "sport": "NHL", + "season": "2026", + "date": "2026-03-06", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Florida Panthers", + "home_team_abbrev": "DET", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -72361,10 +42267,53 @@ "canonical_id": "game_mlb_2026_20260307_nym_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-07T00:10:00Z", + "date": "2026-03-06", + "time": "7:10p", + "home_team": "Miami Marlins", + "away_team": "New York Mets", + "home_team_abbrev": "MIA", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260306_por_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-03-06", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Portland Blazers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_por", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260306_col_dal", + "sport": "NHL", + "season": "2026", + "date": "2026-03-06", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "DAL", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_col", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -72372,10 +42321,17 @@ "canonical_id": "game_mlb_2026_20260307_kc_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-07T01:05:00Z", + "date": "2026-03-06", + "time": "6:05p", + "home_team": "Los Angeles Dodgers", + "away_team": "Kansas City Royals", + "home_team_abbrev": "LAD", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -72383,197 +42339,179 @@ "canonical_id": "game_mlb_2026_20260307_chc_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-07T01:10:00Z", + "date": "2026-03-06", + "time": "6:10p", + "home_team": "San Diego Padres", + "away_team": "Chicago Cubs", + "home_team_abbrev": "SD", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260307_brk_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-07T05:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260307_phi_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-07T05:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260307_was_bos", + "canonical_id": "game_nhl_2025_20260306_van_chi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-07T05:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260307_nsh_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-07T05:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260307_ari_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-07T05:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260307_nyr_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-07T05:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260307_phi_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-07T05:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260307_tb_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-07T05:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260307_orl_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-07T06:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260307_lac_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-07T06:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260307_uta_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-07T06:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260307_gsw_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-07T06:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260307_van_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-07T06:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", + "season": "2026", + "date": "2026-03-06", + "time": "7:30p", + "home_team": "Chicago Blackhawks", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "CHI", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_chi", "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260307_car_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-07T07:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "canonical_id": "game_nba_2025_20260306_nop_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-03-06", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "PHX", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_nop", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260307_mtl_la", + "canonical_id": "game_nba_2025_20260306_nyk_den", + "sport": "NBA", + "season": "2026", + "date": "2026-03-06", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "New York Knicks", + "home_team_abbrev": "DEN", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260306_mtl_ana", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-07T08:00:00Z", - "home_team_canonical_id": "team_nhl_la", + "season": "2026", + "date": "2026-03-06", + "time": "6p", + "home_team": "Anaheim Ducks", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "ANA", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_ana", "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260307_ott_sea", + "canonical_id": "game_nhl_2025_20260306_car_edm", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-07T08:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "season": "2026", + "date": "2026-03-06", + "time": "7p", + "home_team": "Edmonton Oilers", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "EDM", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_car", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260307_nyi_sj", + "canonical_id": "game_nba_2025_20260306_lac_sas", + "sport": "NBA", + "season": "2026", + "date": "2026-03-06", + "time": "8:30p", + "home_team": "San Antonio Spurs", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "SAS", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_lac", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260306_min_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-07T08:00:00Z", + "season": "2026", + "date": "2026-03-06", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Minnesota Wild", + "home_team_abbrev": "VGK", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_min", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260306_stl_sj", + "sport": "NHL", + "season": "2026", + "date": "2026-03-06", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "St. Louis Blues", + "home_team_abbrev": "SJ", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_stl", + "venue": "SAP Center", "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260306_ind_lal", + "sport": "NBA", + "season": "2026", + "date": "2026-03-06", + "time": "7:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Indiana Pacers", + "home_team_abbrev": "LAL", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_ind", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -72581,65 +42519,35 @@ "canonical_id": "game_mlb_2026_20260307_mia_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-07T17:05:00Z", + "date": "2026-03-07", + "time": "12:05p", + "home_team": "Houston Astros", + "away_team": "Miami Marlins", + "home_team_abbrev": "HOU", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260307_tor_phi", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20260307_was_bos", + "sport": "NHL", "season": "2026", - "game_datetime_utc": "2026-03-07T18:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_baycare_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260307_tbr_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-07T18:05:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_jetblue_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260307_pit_det", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-07T18:05:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_publix_field_at_joker_marchant_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260307_nym_stl", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-07T18:05:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260307_min_bal", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-07T18:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_ed_smith_stadium", + "date": "2026-03-07", + "time": "12:30p", + "home_team": "Boston Bruins", + "away_team": "Washington Capitals", + "home_team_abbrev": "BOS", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_was", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -72647,43 +42555,179 @@ "canonical_id": "game_mlb_2026_20260307_bal_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-07T18:05:00Z", + "date": "2026-03-07", + "time": "1:05p", + "home_team": "Atlanta Braves", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "ATL", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_cooltoday_park", + "venue": "CoolToday Park", + "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260307_tex_sf", + "canonical_id": "game_mlb_2026_20260307_tor_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-07T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_scottsdale_stadium", + "date": "2026-03-07", + "time": "1:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tor", + "venue": "BayCare Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260307_sd_cle", + "canonical_id": "game_mlb_2026_20260307_min_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-07T20:05:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", + "date": "2026-03-07", + "time": "1:05p", + "home_team": "Baltimore Orioles", + "away_team": "Minnesota Twins", + "home_team_abbrev": "BAL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_min", + "venue": "Ed Smith Stadium", + "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260307_oak_chc", + "canonical_id": "game_mlb_2026_20260307_tbr_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-07T20:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_sloan_park", + "date": "2026-03-07", + "time": "1:05p", + "home_team": "Boston Red Sox", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "JetBlue Park", + "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260307_pit_det", + "sport": "MLB", + "season": "2026", + "date": "2026-03-07", + "time": "1:05p", + "home_team": "Detroit Tigers", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "DET", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_pit", + "venue": "Publix Field at Joker Marchant Stadium", + "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260307_nym_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-07", + "time": "1:05p", + "home_team": "St. Louis Cardinals", + "away_team": "New York Mets", + "home_team_abbrev": "STL", + "away_team_abbrev": "NYM", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_nym", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260307_hou_ne", + "sport": "MLS", + "season": "2026", + "date": "2026-03-07", + "time": "2:30p", + "home_team": "New England New England Revolution", + "away_team": "Houston Houston Dynamo", + "home_team_abbrev": "NE", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mls_ne", + "away_team_canonical_id": "team_mls_hou", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_mls_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260307_orl_nyc", + "sport": "MLS", + "season": "2026", + "date": "2026-03-07", + "time": "2:30p", + "home_team": "New York New York City FC", + "away_team": "Orlando Orlando City", + "home_team_abbrev": "NYC", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_mls_nyc", + "away_team_canonical_id": "team_mls_orl", + "venue": "Yankee Stadium", + "stadium_canonical_id": "stadium_mls_yankee_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260307_orl_min", + "sport": "NBA", + "season": "2026", + "date": "2026-03-07", + "time": "2p", + "home_team": "Minnesota Timberwolves", + "away_team": "Orlando Magic", + "home_team_abbrev": "MIN", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_orl", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260307_nyr_njd", + "sport": "NHL", + "season": "2026", + "date": "2026-03-07", + "time": "3p", + "home_team": "New Jersey Devils", + "away_team": "New York Rangers", + "home_team_abbrev": "NJ", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -72691,32 +42735,71 @@ "canonical_id": "game_mlb_2026_20260307_cin_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-07T20:05:00Z", + "date": "2026-03-07", + "time": "1:05p", + "home_team": "Kansas City Royals", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "KC", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_surprise_stadium", + "venue": "Surprise Stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260307_sf_ari", + "canonical_id": "game_mlb_2026_20260307_tex_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-07T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", + "date": "2026-03-07", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Texas Rangers", + "home_team_abbrev": "SF", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_sf", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Scottsdale Stadium", + "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260307_mil_laa", + "canonical_id": "game_mlb_2026_20260307_oak_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-07T20:10:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_tempe_diablo_stadium", + "date": "2026-03-07", + "time": "1:05p", + "home_team": "Chicago Cubs", + "away_team": "Oakland Athletics", + "home_team_abbrev": "CHC", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Sloan Park", + "stadium_canonical_id": "stadium_mlb_spring_sloan_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260307_sd_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-03-07", + "time": "1:05p", + "home_team": "Cleveland Guardians", + "away_team": "San Diego Padres", + "home_team_abbrev": "CLE", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sd", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -72724,10 +42807,53 @@ "canonical_id": "game_mlb_2026_20260307_chw_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-07T20:10:00Z", + "date": "2026-03-07", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Chicago White Sox", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260307_mil_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-03-07", + "time": "1:10p", + "home_team": "Los Angeles Angels", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "LAA", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_mil", + "venue": "Tempe Diablo Stadium", + "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260307_sf_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-03-07", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "San Francisco Giants", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -72735,10 +42861,89 @@ "canonical_id": "game_mlb_2026_20260307_laa_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-07T21:05:00Z", + "date": "2026-03-07", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "OAK", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_laa", + "venue": "Las Vegas Ballpark", "stadium_canonical_id": "stadium_mlb_las_vegas_ballpark", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260307_mia_dc", + "sport": "MLS", + "season": "2026", + "date": "2026-03-07", + "time": "4:30p", + "home_team": "Washington D.C. United", + "away_team": "Miami Inter Miami", + "home_team_abbrev": "DC", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mls_dc", + "away_team_canonical_id": "team_mls_mia", + "venue": "M&T Bank Stadium", + "stadium_canonical_id": "stadium_mls_mandt_bank_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260307_phi_pit", + "sport": "NHL", + "season": "2026", + "date": "2026-03-07", + "time": "5:30p", + "home_team": "Pittsburgh Penguins", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_phi", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260307_nsh_buf", + "sport": "NHL", + "season": "2026", + "date": "2026-03-07", + "time": "5:30p", + "home_team": "Buffalo Sabres", + "away_team": "Nashville Predators", + "home_team_abbrev": "BUF", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260307_brk_det", + "sport": "NBA", + "season": "2026", + "date": "2026-03-07", + "time": "6p", + "home_team": "Detroit Pistons", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "DET", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_brk", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -72746,10 +42951,215 @@ "canonical_id": "game_mlb_2026_20260307_nyy_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-07T23:05:00Z", + "date": "2026-03-07", + "time": "6:05p", + "home_team": "Washington Nationals", + "away_team": "New York Yankees", + "home_team_abbrev": "WSN", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260307_van_wpg", + "sport": "NHL", + "season": "2026", + "date": "2026-03-07", + "time": "6p", + "home_team": "Winnipeg Jets", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "WPG", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_van", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260307_tb_tor", + "sport": "NHL", + "season": "2026", + "date": "2026-03-07", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "TOR", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260307_mtl_la", + "sport": "NHL", + "season": "2026", + "date": "2026-03-07", + "time": "4p", + "home_team": "Los Angeles Kings", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "LA", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260307_ari_cbj", + "sport": "NHL", + "season": "2026", + "date": "2026-03-07", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Utah Club", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260308_slc_atl", + "sport": "MLS", + "season": "2026", + "date": "2026-03-07", + "time": "7:30p", + "home_team": "Atlanta Atlanta United", + "away_team": "Salt Lake Real Salt Lake", + "home_team_abbrev": "ATL", + "away_team_abbrev": "SLC", + "home_team_canonical_id": "team_mls_atl", + "away_team_canonical_id": "team_mls_slc", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260308_sj_phi", + "sport": "MLS", + "season": "2026", + "date": "2026-03-07", + "time": "7:30p", + "home_team": "Philadelphia Philadelphia Union", + "away_team": "San Jose San Jose Earthquakes", + "home_team_abbrev": "PHI", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_mls_phi", + "away_team_canonical_id": "team_mls_sj", + "venue": "Subaru Park", + "stadium_canonical_id": "stadium_mls_subaru_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260308_chi_clb", + "sport": "MLS", + "season": "2026", + "date": "2026-03-07", + "time": "7:30p", + "home_team": "Columbus Columbus Crew", + "away_team": "Chicago Chicago Fire", + "home_team_abbrev": "CLB", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_mls_clb", + "away_team_canonical_id": "team_mls_chi", + "venue": "Lower.com Field", + "stadium_canonical_id": "stadium_mls_lowercom_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260308_aus_clt", + "sport": "MLS", + "season": "2026", + "date": "2026-03-07", + "time": "7:30p", + "home_team": "Charlotte Charlotte FC", + "away_team": "Austin Austin FC", + "home_team_abbrev": "CLT", + "away_team_abbrev": "AUS", + "home_team_canonical_id": "team_mls_clt", + "away_team_canonical_id": "team_mls_aus", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260307_phi_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-03-07", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_phi", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260307_lac_mem", + "sport": "NBA", + "season": "2026", + "date": "2026-03-07", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "MEM", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_lac", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260307_uta_mil", + "sport": "NBA", + "season": "2026", + "date": "2026-03-07", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Utah Jazz", + "home_team_abbrev": "MIL", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_uta", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -72757,208 +43167,215 @@ "canonical_id": "game_mlb_2026_20260308_col_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-08T01:05:00Z", + "date": "2026-03-07", + "time": "6:05p", + "home_team": "Los Angeles Dodgers", + "away_team": "Colorado Rockies", + "home_team_abbrev": "LAD", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260308_det_mia", + "canonical_id": "game_mls_2026_20260308_sea_stl", + "sport": "MLS", + "season": "2026", + "date": "2026-03-07", + "time": "7:30p", + "home_team": "St. Louis St. Louis City SC", + "away_team": "Seattle Seattle Sounders", + "home_team_abbrev": "STL", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mls_stl", + "away_team_canonical_id": "team_mls_sea", + "venue": "CITYPARK", + "stadium_canonical_id": "stadium_mls_citypark", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260308_min_nsh", + "sport": "MLS", + "season": "2026", + "date": "2026-03-07", + "time": "7:30p", + "home_team": "Nashville Nashville SC", + "away_team": "Minnesota Minnesota United", + "home_team_abbrev": "NSH", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mls_nsh", + "away_team_canonical_id": "team_mls_min", + "venue": "GEODIS Park", + "stadium_canonical_id": "stadium_mls_geodis_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260308_sd_skc", + "sport": "MLS", + "season": "2026", + "date": "2026-03-07", + "time": "7:30p", + "home_team": "Kansas City Sporting Kansas City", + "away_team": "San Diego San Diego FC", + "home_team_abbrev": "SKC", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mls_skc", + "away_team_canonical_id": "team_mls_sd", + "venue": "Children's Mercy Park", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260307_gsw_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-08T05:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_kaseya_center", + "season": "2026", + "date": "2026-03-07", + "time": "7:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "Golden State Warriors", + "home_team_abbrev": "OKC", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260308_dal_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-08T05:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "canonical_id": "game_mls_2026_20260308_lag_col", + "sport": "MLS", + "season": "2026", + "date": "2026-03-07", + "time": "7:30p", + "home_team": "Colorado Colorado Rapids", + "away_team": "Los Angeles LA Galaxy", + "home_team_abbrev": "COL", + "away_team_abbrev": "LAG", + "home_team_canonical_id": "team_mls_col", + "away_team_canonical_id": "team_mls_lag", + "venue": "Dick's Sporting Goods Park", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260308_cho_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-08T05:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260308_tb_buf", + "canonical_id": "game_nhl_2025_20260307_nyi_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-08T05:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_keybank_center", + "season": "2026", + "date": "2026-03-07", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "New York Islanders", + "home_team_abbrev": "SJ", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260308_det_njd", + "canonical_id": "game_nhl_2025_20260307_ott_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-08T05:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_prudential_center", + "season": "2026", + "date": "2026-03-07", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Ottawa Senators", + "home_team_abbrev": "SEA", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260308_bos_pit", + "canonical_id": "game_nhl_2025_20260307_car_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-08T05:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "season": "2026", + "date": "2026-03-07", + "time": "8p", + "home_team": "Calgary Flames", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "CGY", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_car", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260308_dal_lafc", + "sport": "MLS", + "season": "2026", + "date": "2026-03-07", + "time": "7:30p", + "home_team": "Los Angeles Los Angeles FC", + "away_team": "Dallas FC Dallas", + "home_team_abbrev": "LAFC", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_mls_lafc", + "away_team_canonical_id": "team_mls_dal", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260308_van_por", + "sport": "MLS", + "season": "2026", + "date": "2026-03-07", + "time": "7:30p", + "home_team": "Portland Portland Timbers", + "away_team": "Vancouver Vancouver Whitecaps", + "home_team_abbrev": "POR", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_mls_por", + "away_team_canonical_id": "team_mls_van", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_mls_providence_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260308_bos_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-08T06:00:00Z", + "season": "2026", + "date": "2026-03-08", + "time": "12p", + "home_team": "Cleveland Cavaliers", + "away_team": "Boston Celtics", + "home_team_abbrev": "CLE", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_nba_cle", "away_team_canonical_id": "team_nba_bos", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260308_was_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-08T06:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260308_orl_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-08T06:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260308_hou_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-08T06:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260308_chi_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-08T06:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260308_min_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-08T07:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260308_nyk_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-08T08:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260308_ind_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-08T08:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260308_chi_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-08T08:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260308_stl_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-08T08:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260308_edm_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-08T08:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260308_tor_bal", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-08T17:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_ed_smith_stadium", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -72966,10 +43383,17 @@ "canonical_id": "game_mlb_2026_20260308_phi_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-08T17:05:00Z", + "date": "2026-03-08", + "time": "1:05p", + "home_team": "Minnesota Twins", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "MIN", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_hammond_stadium", + "venue": "Hammond Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -72977,10 +43401,17 @@ "canonical_id": "game_mlb_2026_20260308_hou_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-08T17:05:00Z", + "date": "2026-03-08", + "time": "1:05p", + "home_team": "Washington Nationals", + "away_team": "Houston Astros", + "home_team_abbrev": "WSN", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -72988,10 +43419,35 @@ "canonical_id": "game_mlb_2026_20260308_bos_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-08T17:05:00Z", + "date": "2026-03-08", + "time": "1:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "Boston Red Sox", + "home_team_abbrev": "PIT", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_lecom_park", + "venue": "LECOM Park", + "stadium_canonical_id": "stadium_mlb_spring_lecom_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260308_tor_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-03-08", + "time": "1:05p", + "home_team": "Baltimore Orioles", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "BAL", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tor", + "venue": "Ed Smith Stadium", + "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -72999,10 +43455,17 @@ "canonical_id": "game_mlb_2026_20260308_atl_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-08T17:05:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-03-08", + "time": "1:05p", + "home_team": "Tampa Bay Rays", + "away_team": "Atlanta Braves", + "home_team_abbrev": "TB", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_charlotte_sports_park", + "venue": "Charlotte Sports Park", + "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73010,21 +43473,17 @@ "canonical_id": "game_mlb_2026_20260308_det_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-08T17:07:00Z", + "date": "2026-03-08", + "time": "1:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Detroit Tigers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_td_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260308_stl_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-08T17:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", + "venue": "TD Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73032,21 +43491,71 @@ "canonical_id": "game_mlb_2026_20260308_nyy_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-08T17:10:00Z", + "date": "2026-03-08", + "time": "1:10p", + "home_team": "New York Mets", + "away_team": "New York Yankees", + "home_team_abbrev": "NYM", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_clover_park", + "venue": "Clover Park", + "stadium_canonical_id": "stadium_mlb_spring_clover_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260308_sf_chc", + "canonical_id": "game_mlb_2026_20260308_stl_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-08T20:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_sloan_park", + "date": "2026-03-08", + "time": "1:10p", + "home_team": "Miami Marlins", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "MIA", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_stl", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260308_min_col", + "sport": "NHL", + "season": "2026", + "date": "2026-03-08", + "time": "12p", + "home_team": "Colorado Avalanche", + "away_team": "Minnesota Wild", + "home_team_abbrev": "COL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_min", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260308_nyk_lal", + "sport": "NBA", + "season": "2026", + "date": "2026-03-08", + "time": "12:30p", + "home_team": "Los Angeles Lakers", + "away_team": "New York Knicks", + "home_team_abbrev": "LAL", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -73054,32 +43563,17 @@ "canonical_id": "game_mlb_2026_20260308_lad_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-08T20:05:00Z", + "date": "2026-03-08", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "OAK", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_hohokam_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260308_laa_tex", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-08T20:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260308_laa_oak", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-08T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_las_vegas_ballpark", + "venue": "Hohokam Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73087,10 +43581,53 @@ "canonical_id": "game_mlb_2026_20260308_kc_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-08T20:05:00Z", + "date": "2026-03-08", + "time": "1:05p", + "home_team": "Chicago White Sox", + "away_team": "Kansas City Royals", + "home_team_abbrev": "CHW", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260308_laa_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-03-08", + "time": "1:05p", + "home_team": "Texas Rangers", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "TEX", + "away_team_abbrev": "LAA", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_laa", + "venue": "Surprise Stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260308_sf_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-03-08", + "time": "1:05p", + "home_team": "Chicago Cubs", + "away_team": "San Francisco Giants", + "home_team_abbrev": "CHC", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Sloan Park", + "stadium_canonical_id": "stadium_mlb_spring_sloan_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73098,21 +43635,35 @@ "canonical_id": "game_mlb_2026_20260308_ari_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-08T20:05:00Z", + "date": "2026-03-08", + "time": "1:05p", + "home_team": "Cincinnati Reds", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "CIN", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260308_sea_mil", + "canonical_id": "game_mlb_2026_20260308_laa_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-08T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_american_family_fields_of_phoenix", + "date": "2026-03-08", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "OAK", + "away_team_abbrev": "LAA", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_laa", + "venue": "Las Vegas Ballpark", + "stadium_canonical_id": "stadium_mlb_las_vegas_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73120,10 +43671,17 @@ "canonical_id": "game_mlb_2026_20260308_cle_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-08T20:10:00Z", + "date": "2026-03-08", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "COL", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73131,120 +43689,341 @@ "canonical_id": "game_mlb_2026_20260308_cin_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-08T20:10:00Z", + "date": "2026-03-08", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "SD", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260309_mem_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-09T04:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_barclays_center", + "canonical_id": "game_mlb_2026_20260308_sea_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-03-08", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Seattle Mariners", + "home_team_abbrev": "MIL", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sea", + "venue": "American Family Fields of Phoenix", + "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260309_nyr_phi", + "canonical_id": "game_mls_2026_20260308_mtl_ny", + "sport": "MLS", + "season": "2026", + "date": "2026-03-08", + "time": "4:30p", + "home_team": "New York New York Red Bulls", + "away_team": "Montreal CF Montreal", + "home_team_abbrev": "RB", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_mls_ny", + "away_team_canonical_id": "team_mls_mtl", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_mls_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260308_bos_pit", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-09T04:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "season": "2026", + "date": "2026-03-08", + "time": "4:30p", + "home_team": "Pittsburgh Penguins", + "away_team": "Boston Bruins", + "home_team_abbrev": "PIT", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_bos", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260309_cgy_was", + "canonical_id": "game_nba_2025_20260308_det_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-03-08", + "time": "6p", + "home_team": "Miami Heat", + "away_team": "Detroit Pistons", + "home_team_abbrev": "MIA", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_det", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260308_dal_tor", + "sport": "NBA", + "season": "2026", + "date": "2026-03-08", + "time": "6p", + "home_team": "Toronto Raptors", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "TOR", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_dal", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260308_tb_buf", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-09T04:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "season": "2026", + "date": "2026-03-08", + "time": "6p", + "home_team": "Buffalo Sabres", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "BUF", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_tb", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260309_phi_cle", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-09T05:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260309_den_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-09T05:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260309_ari_chi", + "canonical_id": "game_nhl_2025_20260308_chi_dal", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-09T05:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_united_center", + "season": "2026", + "date": "2026-03-08", + "time": "5p", + "home_team": "Dallas Stars", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "DAL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_chi", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260309_gsw_uta", + "canonical_id": "game_mls_2026_20260308_tor_cin", + "sport": "MLS", + "season": "2026", + "date": "2026-03-08", + "time": "7p", + "home_team": "Cincinnati FC Cincinnati", + "away_team": "Toronto Toronto FC", + "home_team_abbrev": "CIN", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mls_cin", + "away_team_canonical_id": "team_mls_tor", + "venue": "TQL Stadium", + "stadium_canonical_id": "stadium_mls_tql_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260308_was_nop", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-09T06:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_delta_center", + "season": "2026", + "date": "2026-03-08", + "time": "6p", + "home_team": "New Orleans Pelicans", + "away_team": "Washington Wizards", + "home_team_abbrev": "NOP", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_was", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260309_nyk_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-09T07:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260309_ott_van", + "canonical_id": "game_nhl_2025_20260308_det_njd", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-09T07:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_rogers_arena", + "season": "2026", + "date": "2026-03-08", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "NJ", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_det", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260308_hou_sas", + "sport": "NBA", + "season": "2026", + "date": "2026-03-08", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Houston Rockets", + "home_team_abbrev": "SAS", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_hou", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260308_orl_mil", + "sport": "NBA", + "season": "2026", + "date": "2026-03-08", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Orlando Magic", + "home_team_abbrev": "MIL", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_orl", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260308_chi_sac", + "sport": "NBA", + "season": "2026", + "date": "2026-03-08", + "time": "6p", + "home_team": "Sacramento Kings", + "away_team": "Chicago Bulls", + "home_team_abbrev": "SAC", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_chi", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260308_cho_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-03-08", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "PHX", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_cho", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260308_ind_por", + "sport": "NBA", + "season": "2026", + "date": "2026-03-08", + "time": "6p", + "home_team": "Portland Blazers", + "away_team": "Indiana Pacers", + "home_team_abbrev": "POR", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_ind", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260308_stl_ana", + "sport": "NHL", + "season": "2026", + "date": "2026-03-08", + "time": "6p", + "home_team": "Anaheim Ducks", + "away_team": "St. Louis Blues", + "home_team_abbrev": "ANA", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260308_edm_vgk", + "sport": "NHL", + "season": "2026", + "date": "2026-03-08", + "time": "6:30p", + "home_team": "Vegas Golden Knights", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "VGK", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_edm", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260309_la_cbj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-09T17:00:00Z", + "season": "2026", + "date": "2026-03-09", + "time": "1p", + "home_team": "Columbus Blue Jackets", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "LA", "home_team_canonical_id": "team_nhl_cbj", "away_team_canonical_id": "team_nhl_la", + "venue": "Nationwide Arena", "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -73252,10 +44031,17 @@ "canonical_id": "game_mlb_2026_20260309_tbr_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-09T17:05:00Z", + "date": "2026-03-09", + "time": "1:05p", + "home_team": "Detroit Tigers", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "DET", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_publix_field_at_joker_marchant_stadium", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Publix Field at Joker Marchant Stadium", + "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73263,10 +44049,17 @@ "canonical_id": "game_mlb_2026_20260309_stl_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-09T17:05:00Z", + "date": "2026-03-09", + "time": "1:05p", + "home_team": "Houston Astros", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "HOU", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73274,21 +44067,17 @@ "canonical_id": "game_mlb_2026_20260309_phi_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-09T17:05:00Z", + "date": "2026-03-09", + "time": "1:05p", + "home_team": "Boston Red Sox", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "BOS", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_jetblue_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260309_min_atl", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-09T17:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_cooltoday_park", + "venue": "JetBlue Park", + "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73296,21 +44085,35 @@ "canonical_id": "game_mlb_2026_20260309_bal_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-09T17:05:00Z", + "date": "2026-03-09", + "time": "1:05p", + "home_team": "St. Louis Cardinals", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "STL", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260309_oak_cin", + "canonical_id": "game_mlb_2026_20260309_min_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-09T20:05:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", + "date": "2026-03-09", + "time": "1:05p", + "home_team": "Atlanta Braves", + "away_team": "Minnesota Twins", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_min", + "venue": "CoolToday Park", + "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73318,10 +44121,17 @@ "canonical_id": "game_mlb_2026_20260309_laa_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-09T20:05:00Z", + "date": "2026-03-09", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "SF", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_scottsdale_stadium", + "venue": "Scottsdale Stadium", + "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73329,10 +44139,17 @@ "canonical_id": "game_mlb_2026_20260309_col_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-09T20:05:00Z", + "date": "2026-03-09", + "time": "1:05p", + "home_team": "Chicago White Sox", + "away_team": "Colorado Rockies", + "home_team_abbrev": "CHW", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73340,21 +44157,35 @@ "canonical_id": "game_mlb_2026_20260309_cle_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-09T20:05:00Z", + "date": "2026-03-09", + "time": "1:05p", + "home_team": "Kansas City Royals", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "KC", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_surprise_stadium", + "venue": "Surprise Stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260309_tex_sd", + "canonical_id": "game_mlb_2026_20260309_oak_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-09T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "date": "2026-03-09", + "time": "1:05p", + "home_team": "Cincinnati Reds", + "away_team": "Oakland Athletics", + "home_team_abbrev": "CIN", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73362,10 +44193,35 @@ "canonical_id": "game_mlb_2026_20260309_sea_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-09T20:10:00Z", + "date": "2026-03-09", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Seattle Mariners", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260309_tex_sd", + "sport": "MLB", + "season": "2026", + "date": "2026-03-09", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Texas Rangers", + "home_team_abbrev": "SD", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_sd", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73373,10 +44229,17 @@ "canonical_id": "game_mlb_2026_20260309_lad_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-09T20:10:00Z", + "date": "2026-03-09", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "MIL", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_american_family_fields_of_phoenix", + "venue": "American Family Fields of Phoenix", + "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73384,10 +44247,17 @@ "canonical_id": "game_mlb_2026_20260309_mia_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-09T22:10:00Z", + "date": "2026-03-09", + "time": "6:10p", + "home_team": "New York Mets", + "away_team": "Miami Marlins", + "home_team_abbrev": "NYM", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_clover_park", + "venue": "Clover Park", + "stadium_canonical_id": "stadium_mlb_spring_clover_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73395,296 +44265,179 @@ "canonical_id": "game_mlb_2026_20260309_pit_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-09T22:35:00Z", + "date": "2026-03-09", + "time": "6:35p", + "home_team": "New York Yankees", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "NYY", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_george_m_steinbrenner_field", + "venue": "George M. Steinbrenner Field", + "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260310_det_brk", + "canonical_id": "game_nba_2025_20260309_phi_cle", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T04:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260310_was_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T04:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260310_dal_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T04:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260310_la_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T04:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260310_sj_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T04:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260310_pit_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T04:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260310_det_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T04:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260310_tor_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T04:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260310_cgy_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260310_cbj_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T04:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_amalie_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260310_tor_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T05:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_tor", + "season": "2026", + "date": "2026-03-09", + "time": "6p", + "home_team": "Cleveland Cavaliers", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_phi", + "venue": "Toyota Center", "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260310_phx_mil", + "canonical_id": "game_nhl_2025_20260309_cgy_was", + "sport": "NHL", + "season": "2026", + "date": "2026-03-09", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Calgary Flames", + "home_team_abbrev": "WAS", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260309_nyr_phi", + "sport": "NHL", + "season": "2026", + "date": "2026-03-09", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "New York Rangers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260309_den_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T05:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_fiserv_forum", + "season": "2026", + "date": "2026-03-09", + "time": "6:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "Denver Nuggets", + "home_team_abbrev": "OKC", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_den", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260310_bos_sas", + "canonical_id": "game_nba_2025_20260309_mem_brk", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T05:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260310_vgk_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T05:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260310_ari_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T05:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260310_nyi_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T05:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260310_ana_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T05:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260310_edm_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T06:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260310_mem_phi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T07:00:00Z", - "home_team_canonical_id": "team_nba_phi", + "season": "2026", + "date": "2026-03-09", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "BKN", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_brk", "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_intuit_dome", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260310_chi_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T07:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260310_cho_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T07:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260310_ind_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T07:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260310_min_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T07:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260310_nsh_sea", + "canonical_id": "game_nhl_2025_20260309_ari_chi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-10T07:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "season": "2026", + "date": "2026-03-09", + "time": "7:30p", + "home_team": "Chicago Blackhawks", + "away_team": "Utah Club", + "home_team_abbrev": "CHI", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_ari", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260310_nyy_phi", - "sport": "MLB", + "canonical_id": "game_nba_2025_20260309_gsw_uta", + "sport": "NBA", "season": "2026", - "game_datetime_utc": "2026-03-10T17:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_baycare_ballpark", + "date": "2026-03-09", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Golden State Warriors", + "home_team_abbrev": "UTA", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260310_min_tbr", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20260309_ott_van", + "sport": "NHL", "season": "2026", - "game_datetime_utc": "2026-03-10T17:05:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_charlotte_sports_park", + "date": "2026-03-09", + "time": "6p", + "home_team": "Vancouver Canucks", + "away_team": "Ottawa Senators", + "home_team_abbrev": "VAN", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260309_nyk_lac", + "sport": "NBA", + "season": "2026", + "date": "2026-03-09", + "time": "7p", + "home_team": "Los Angeles Clippers", + "away_team": "New York Knicks", + "home_team_abbrev": "LAC", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -73692,10 +44445,53 @@ "canonical_id": "game_mlb_2026_20260310_det_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-10T17:05:00Z", + "date": "2026-03-10", + "time": "1:05p", + "home_team": "Boston Red Sox", + "away_team": "Detroit Tigers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_jetblue_park", + "venue": "JetBlue Park", + "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260310_nyy_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-03-10", + "time": "1:05p", + "home_team": "Philadelphia Phillies", + "away_team": "New York Yankees", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "BayCare Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260310_min_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-03-10", + "time": "1:05p", + "home_team": "Tampa Bay Rays", + "away_team": "Minnesota Twins", + "home_team_abbrev": "TB", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_min", + "venue": "Charlotte Sports Park", + "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73703,10 +44499,17 @@ "canonical_id": "game_mlb_2026_20260310_bal_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-10T17:05:00Z", + "date": "2026-03-10", + "time": "1:05p", + "home_team": "Houston Astros", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "HOU", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73714,10 +44517,17 @@ "canonical_id": "game_mlb_2026_20260310_atl_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-10T17:07:00Z", + "date": "2026-03-10", + "time": "1:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Atlanta Braves", + "home_team_abbrev": "TOR", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_td_ballpark", + "venue": "TD Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73725,10 +44535,17 @@ "canonical_id": "game_mlb_2026_20260310_wsn_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-10T17:10:00Z", + "date": "2026-03-10", + "time": "1:10p", + "home_team": "Miami Marlins", + "away_team": "Washington Nationals", + "home_team_abbrev": "MIA", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73736,43 +44553,17 @@ "canonical_id": "game_mlb_2026_20260310_stl_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-10T17:10:00Z", + "date": "2026-03-10", + "time": "1:10p", + "home_team": "New York Mets", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "NYM", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_clover_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260310_sf_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-10T20:05:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260310_chw_oak", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-10T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_hohokam_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260310_chc_tex", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-10T20:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_surprise_stadium", + "venue": "Clover Park", + "stadium_canonical_id": "stadium_mlb_spring_clover_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73780,10 +44571,71 @@ "canonical_id": "game_mlb_2026_20260310_ari_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-10T20:05:00Z", + "date": "2026-03-10", + "time": "1:05p", + "home_team": "Los Angeles Dodgers", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "LAD", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260310_chc_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-03-10", + "time": "1:05p", + "home_team": "Texas Rangers", + "away_team": "Chicago Cubs", + "home_team_abbrev": "TEX", + "away_team_abbrev": "CHC", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_chc", + "venue": "Surprise Stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260310_sf_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-03-10", + "time": "1:05p", + "home_team": "Cleveland Guardians", + "away_team": "San Francisco Giants", + "home_team_abbrev": "CLE", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260310_chw_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-03-10", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Chicago White Sox", + "home_team_abbrev": "OAK", + "away_team_abbrev": "CHW", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_chw", + "venue": "Hohokam Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73791,10 +44643,17 @@ "canonical_id": "game_mlb_2026_20260310_sd_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-10T20:10:00Z", + "date": "2026-03-10", + "time": "1:10p", + "home_team": "Los Angeles Angels", + "away_team": "San Diego Padres", + "home_team_abbrev": "LAA", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_tempe_diablo_stadium", + "venue": "Tempe Diablo Stadium", + "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73802,10 +44661,17 @@ "canonical_id": "game_mlb_2026_20260310_kc_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-10T20:10:00Z", + "date": "2026-03-10", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Kansas City Royals", + "home_team_abbrev": "SEA", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73813,120 +44679,449 @@ "canonical_id": "game_mlb_2026_20260310_cin_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-10T20:10:00Z", + "date": "2026-03-10", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "COL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260311_cle_orl", + "canonical_id": "game_nba_2025_20260310_mem_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-11T04:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260311_mtl_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-11T04:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260311_was_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-11T04:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260311_tor_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-11T05:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260311_nyk_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-11T06:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260311_hou_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-11T06:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260311_cho_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-11T07:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260311_min_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-11T07:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_min", + "season": "2026", + "date": "2026-03-10", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_mem", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260311_tbr_atl", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20260310_sj_buf", + "sport": "NHL", "season": "2026", - "game_datetime_utc": "2026-03-11T17:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_cooltoday_park", + "date": "2026-03-10", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "San Jose Sharks", + "home_team_abbrev": "BUF", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_sj", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260311_stl_wsn", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20260310_pit_car", + "sport": "NHL", "season": "2026", - "game_datetime_utc": "2026-03-11T17:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", + "date": "2026-03-10", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "CAR", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_pit", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260310_det_fla", + "sport": "NHL", + "season": "2026", + "date": "2026-03-10", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "FLA", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_det", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260310_tor_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-03-10", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "MTL", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260310_cbj_tb", + "sport": "NHL", + "season": "2026", + "date": "2026-03-10", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "TB", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260310_la_bos", + "sport": "NHL", + "season": "2026", + "date": "2026-03-10", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "BOS", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_la", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260310_cgy_nyr", + "sport": "NHL", + "season": "2026", + "date": "2026-03-10", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Calgary Flames", + "home_team_abbrev": "NYR", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260310_det_brk", + "sport": "NBA", + "season": "2026", + "date": "2026-03-10", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Detroit Pistons", + "home_team_abbrev": "BKN", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_det", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260310_was_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-03-10", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Washington Wizards", + "home_team_abbrev": "MIA", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_was", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260310_nyi_stl", + "sport": "NHL", + "season": "2026", + "date": "2026-03-10", + "time": "6:30p", + "home_team": "St. Louis Blues", + "away_team": "New York Islanders", + "home_team_abbrev": "STL", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260310_phx_mil", + "sport": "NBA", + "season": "2026", + "date": "2026-03-10", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Phoenix Suns", + "home_team_abbrev": "MIL", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_phx", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260310_tor_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-03-10", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Toronto Raptors", + "home_team_abbrev": "HOU", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_tor", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260310_dal_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-03-10", + "time": "8p", + "home_team": "Atlanta Hawks", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "ATL", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_dal", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260310_bos_sas", + "sport": "NBA", + "season": "2026", + "date": "2026-03-10", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Boston Celtics", + "home_team_abbrev": "SAS", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_bos", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260310_ari_min", + "sport": "NHL", + "season": "2026", + "date": "2026-03-10", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "Utah Club", + "home_team_abbrev": "MIN", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260310_vgk_dal", + "sport": "NHL", + "season": "2026", + "date": "2026-03-10", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "DAL", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260310_ana_wpg", + "sport": "NHL", + "season": "2026", + "date": "2026-03-10", + "time": "7:30p", + "home_team": "Winnipeg Jets", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "WPG", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260310_chi_gsw", + "sport": "NBA", + "season": "2026", + "date": "2026-03-10", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Chicago Bulls", + "home_team_abbrev": "GSW", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_chi", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260310_cho_por", + "sport": "NBA", + "season": "2026", + "date": "2026-03-10", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "POR", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_cho", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260310_ind_sac", + "sport": "NBA", + "season": "2026", + "date": "2026-03-10", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Indiana Pacers", + "home_team_abbrev": "SAC", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_ind", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260310_edm_col", + "sport": "NHL", + "season": "2026", + "date": "2026-03-10", + "time": "8p", + "home_team": "Colorado Avalanche", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "COL", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260310_nsh_sea", + "sport": "NHL", + "season": "2026", + "date": "2026-03-10", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Nashville Predators", + "home_team_abbrev": "SEA", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260310_min_lal", + "sport": "NBA", + "season": "2026", + "date": "2026-03-10", + "time": "8p", + "home_team": "Los Angeles Lakers", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "LAL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_min", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -73934,10 +45129,35 @@ "canonical_id": "game_mlb_2026_20260311_pit_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-11T17:05:00Z", + "date": "2026-03-11", + "time": "1:05p", + "home_team": "Baltimore Orioles", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "BAL", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_ed_smith_stadium", + "venue": "Ed Smith Stadium", + "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260311_tbr_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-11", + "time": "1:05p", + "home_team": "Atlanta Braves", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "ATL", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "CoolToday Park", + "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73945,10 +45165,35 @@ "canonical_id": "game_mlb_2026_20260311_det_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-11T17:05:00Z", + "date": "2026-03-11", + "time": "1:05p", + "home_team": "Minnesota Twins", + "away_team": "Detroit Tigers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_hammond_stadium", + "venue": "Hammond Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260311_stl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-03-11", + "time": "1:05p", + "home_team": "Washington Nationals", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "WSN", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_stl", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -73956,43 +45201,17 @@ "canonical_id": "game_mlb_2026_20260311_hou_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-11T17:10:00Z", + "date": "2026-03-11", + "time": "1:10p", + "home_team": "Miami Marlins", + "away_team": "Houston Astros", + "home_team_abbrev": "MIA", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260311_sf_kc", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-11T20:05:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_surprise_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260311_mil_cin", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-11T20:05:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260311_laa_chw", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-11T20:05:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74000,21 +45219,71 @@ "canonical_id": "game_mlb_2026_20260311_kc_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-11T20:05:00Z", + "date": "2026-03-11", + "time": "1:05p", + "home_team": "Chicago Cubs", + "away_team": "Kansas City Royals", + "home_team_abbrev": "CHC", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_sloan_park", + "venue": "Sloan Park", + "stadium_canonical_id": "stadium_mlb_spring_sloan_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260311_oak_ari", + "canonical_id": "game_mlb_2026_20260311_mil_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-11T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", + "date": "2026-03-11", + "time": "1:05p", + "home_team": "Cincinnati Reds", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "CIN", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mil", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260311_laa_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-03-11", + "time": "1:05p", + "home_team": "Chicago White Sox", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "CHW", + "away_team_abbrev": "LAA", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_laa", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260311_sf_kc", + "sport": "MLB", + "season": "2026", + "date": "2026-03-11", + "time": "1:05p", + "home_team": "Kansas City Royals", + "away_team": "San Francisco Giants", + "home_team_abbrev": "KC", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_kc", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Surprise Stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74022,10 +45291,35 @@ "canonical_id": "game_mlb_2026_20260311_col_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-11T20:10:00Z", + "date": "2026-03-11", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Colorado Rockies", + "home_team_abbrev": "SEA", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260311_oak_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-03-11", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Oakland Athletics", + "home_team_abbrev": "ARI", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74033,274 +45327,161 @@ "canonical_id": "game_mlb_2026_20260311_tor_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-11T22:35:00Z", + "date": "2026-03-11", + "time": "6:35p", + "home_team": "New York Yankees", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "NYY", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_george_m_steinbrenner_field", + "venue": "George M. Steinbrenner Field", + "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260312_phi_det", + "canonical_id": "game_nba_2025_20260311_cle_orl", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T04:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260312_phx_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T04:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260312_was_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T04:00:00Z", + "season": "2026", + "date": "2026-03-11", + "time": "7:30p", + "home_team": "Orlando Magic", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "ORL", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_cle", + "venue": "Kia Center", "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260312_brk_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T04:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260312_mil_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T04:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260312_sj_bos", + "canonical_id": "game_nhl_2025_20260311_mtl_ott", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T04:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_td_garden", + "season": "2026", + "date": "2026-03-11", + "time": "7:30p", + "home_team": "Ottawa Senators", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "OTT", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260312_was_buf", + "canonical_id": "game_nhl_2025_20260311_was_phi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T04:00:00Z", - "home_team_canonical_id": "team_nhl_buf", + "season": "2026", + "date": "2026-03-11", + "time": "7:30p", + "home_team": "Philadelphia Flyers", + "away_team": "Washington Capitals", + "home_team_abbrev": "PHI", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_phi", "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_keybank_center", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260312_stl_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T04:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260312_cbj_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T04:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260312_cgy_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T04:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260312_det_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T04:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_amalie_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260312_ana_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T04:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260312_den_sas", + "canonical_id": "game_nba_2025_20260311_tor_nop", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T05:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260312_bos_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T05:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260312_edm_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T05:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260312_phi_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T05:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260312_nyr_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T05:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260312_chi_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T06:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260312_chi_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T07:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260312_col_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T07:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260312_nsh_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T07:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_rogers_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260312_pit_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-12T07:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260312_tor_phi", - "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-12T17:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_baycare_ballpark", + "date": "2026-03-11", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Toronto Raptors", + "home_team_abbrev": "NOP", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_tor", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260312_nyy_det", - "sport": "MLB", + "canonical_id": "game_nba_2025_20260311_nyk_uta", + "sport": "NBA", "season": "2026", - "game_datetime_utc": "2026-03-12T17:05:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_publix_field_at_joker_marchant_stadium", + "date": "2026-03-11", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "New York Knicks", + "home_team_abbrev": "UTA", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260311_hou_den", + "sport": "NBA", + "season": "2026", + "date": "2026-03-11", + "time": "8p", + "home_team": "Denver Nuggets", + "away_team": "Houston Rockets", + "home_team_abbrev": "DEN", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_hou", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260311_cho_sac", + "sport": "NBA", + "season": "2026", + "date": "2026-03-11", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "SAC", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_cho", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260311_min_lac", + "sport": "NBA", + "season": "2026", + "date": "2026-03-11", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "LAC", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_min", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -74308,10 +45489,53 @@ "canonical_id": "game_mlb_2026_20260312_nym_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-12T17:05:00Z", + "date": "2026-03-12", + "time": "1:05p", + "home_team": "St. Louis Cardinals", + "away_team": "New York Mets", + "home_team_abbrev": "STL", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260312_nyy_det", + "sport": "MLB", + "season": "2026", + "date": "2026-03-12", + "time": "1:05p", + "home_team": "Detroit Tigers", + "away_team": "New York Yankees", + "home_team_abbrev": "DET", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Publix Field at Joker Marchant Stadium", + "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260312_tor_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-03-12", + "time": "1:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tor", + "venue": "BayCare Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74319,10 +45543,17 @@ "canonical_id": "game_mlb_2026_20260312_bos_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-12T17:05:00Z", + "date": "2026-03-12", + "time": "1:05p", + "home_team": "Minnesota Twins", + "away_team": "Boston Red Sox", + "home_team_abbrev": "MIN", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_hammond_stadium", + "venue": "Hammond Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74330,10 +45561,17 @@ "canonical_id": "game_mlb_2026_20260312_sea_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-12T20:05:00Z", + "date": "2026-03-12", + "time": "1:05p", + "home_team": "Chicago Cubs", + "away_team": "Seattle Mariners", + "home_team_abbrev": "CHC", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_sloan_park", + "venue": "Sloan Park", + "stadium_canonical_id": "stadium_mlb_spring_sloan_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74341,10 +45579,17 @@ "canonical_id": "game_mlb_2026_20260312_oak_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-12T20:05:00Z", + "date": "2026-03-12", + "time": "1:05p", + "home_team": "Texas Rangers", + "away_team": "Oakland Athletics", + "home_team_abbrev": "TEX", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_surprise_stadium", + "venue": "Surprise Stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74352,21 +45597,17 @@ "canonical_id": "game_mlb_2026_20260312_col_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-12T20:10:00Z", + "date": "2026-03-12", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Colorado Rockies", + "home_team_abbrev": "ARI", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260312_wsn_hou", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-12T22:05:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74374,32 +45615,359 @@ "canonical_id": "game_mlb_2026_20260312_atl_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-12T22:05:00Z", + "date": "2026-03-12", + "time": "6:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "Atlanta Braves", + "home_team_abbrev": "PIT", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_lecom_park", + "venue": "LECOM Park", + "stadium_canonical_id": "stadium_mlb_spring_lecom_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260312_wsn_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-03-12", + "time": "6:05p", + "home_team": "Houston Astros", + "away_team": "Washington Nationals", + "home_team_abbrev": "HOU", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260312_phi_det", + "sport": "NBA", + "season": "2026", + "date": "2026-03-12", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "DET", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_phi", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260312_was_orl", + "sport": "NBA", + "season": "2026", + "date": "2026-03-12", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Washington Wizards", + "home_team_abbrev": "ORL", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_was", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260312_phx_ind", + "sport": "NBA", + "season": "2026", + "date": "2026-03-12", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Phoenix Suns", + "home_team_abbrev": "IND", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_phx", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260312_stl_car", + "sport": "NHL", + "season": "2026", + "date": "2026-03-12", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "St. Louis Blues", + "home_team_abbrev": "CAR", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_stl", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260312_was_buf", + "sport": "NHL", + "season": "2026", + "date": "2026-03-12", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Washington Capitals", + "home_team_abbrev": "BUF", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_was", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260312_sj_bos", + "sport": "NHL", + "season": "2026", + "date": "2026-03-12", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "San Jose Sharks", + "home_team_abbrev": "BOS", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_sj", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260312_ana_tor", + "sport": "NHL", + "season": "2026", + "date": "2026-03-12", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "TOR", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260312_cgy_njd", + "sport": "NHL", + "season": "2026", + "date": "2026-03-12", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Calgary Flames", + "home_team_abbrev": "NJ", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260312_cbj_fla", + "sport": "NHL", + "season": "2026", + "date": "2026-03-12", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "FLA", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260312_det_tb", + "sport": "NHL", + "season": "2026", + "date": "2026-03-12", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "TB", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_det", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260312_brk_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-03-12", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "ATL", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_brk", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260312_mil_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-03-12", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "MIA", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_mil", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260312_dal_mem", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-13T00:00:00Z", + "season": "2026", + "date": "2026-03-12", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "MEM", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nba_mem", "away_team_canonical_id": "team_nba_dal", + "venue": "FedExForum", "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260313_mil_cle", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20260312_edm_dal", + "sport": "NHL", "season": "2026", - "game_datetime_utc": "2026-03-13T01:05:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", + "date": "2026-03-12", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "DAL", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_edm", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260312_phi_min", + "sport": "NHL", + "season": "2026", + "date": "2026-03-12", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_phi", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260312_nyr_wpg", + "sport": "NHL", + "season": "2026", + "date": "2026-03-12", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "New York Rangers", + "home_team_abbrev": "WPG", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260312_den_sas", + "sport": "NBA", + "season": "2026", + "date": "2026-03-12", + "time": "8p", + "home_team": "San Antonio Spurs", + "away_team": "Denver Nuggets", + "home_team_abbrev": "SAS", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_den", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260312_chi_ari", + "sport": "NHL", + "season": "2026", + "date": "2026-03-12", + "time": "7p", + "home_team": "Utah Club", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -74407,10 +45975,17 @@ "canonical_id": "game_mlb_2026_20260313_cin_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-13T01:05:00Z", + "date": "2026-03-12", + "time": "6:05p", + "home_team": "Los Angeles Dodgers", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "LAD", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74418,10 +45993,35 @@ "canonical_id": "game_mlb_2026_20260313_chw_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-13T01:05:00Z", + "date": "2026-03-12", + "time": "6:05p", + "home_team": "San Francisco Giants", + "away_team": "Chicago White Sox", + "home_team_abbrev": "SF", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_scottsdale_stadium", + "venue": "Scottsdale Stadium", + "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260313_mil_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-03-12", + "time": "6:05p", + "home_team": "Cleveland Guardians", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_mil", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74429,120 +46029,107 @@ "canonical_id": "game_mlb_2026_20260313_kc_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-13T01:10:00Z", + "date": "2026-03-12", + "time": "6:10p", + "home_team": "San Diego Padres", + "away_team": "Kansas City Royals", + "home_team_abbrev": "SD", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260313_mem_det", + "canonical_id": "game_nba_2025_20260312_bos_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-13T04:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "season": "2026", + "date": "2026-03-12", + "time": "8:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "Boston Celtics", + "home_team_abbrev": "OKC", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_bos", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260313_nyk_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-13T04:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260313_phx_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-13T04:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260313_la_nyi", + "canonical_id": "game_nhl_2025_20260312_col_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-13T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_ubs_arena", + "season": "2026", + "date": "2026-03-12", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "SEA", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_col", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260313_cle_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-13T05:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260313_nop_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-13T05:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260313_edm_stl", + "canonical_id": "game_nhl_2025_20260312_pit_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_enterprise_center", + "season": "2026", + "date": "2026-03-12", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "VGK", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_pit", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260313_min_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-13T07:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_chase_center", + "canonical_id": "game_nhl_2025_20260312_nsh_van", + "sport": "NHL", + "season": "2026", + "date": "2026-03-12", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Nashville Predators", + "home_team_abbrev": "VAN", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260313_uta_por", + "canonical_id": "game_nba_2025_20260312_chi_lal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-13T07:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260313_chi_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-13T07:00:00Z", - "home_team_canonical_id": "team_nba_lac", + "season": "2026", + "date": "2026-03-12", + "time": "7:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Chicago Bulls", + "home_team_abbrev": "LAL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_lal", "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_intuit_dome", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -74550,21 +46137,17 @@ "canonical_id": "game_mlb_2026_20260313_tbr_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-13T17:05:00Z", + "date": "2026-03-13", + "time": "1:05p", + "home_team": "Boston Red Sox", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_jetblue_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260313_nyy_atl", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-13T17:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_cooltoday_park", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "JetBlue Park", + "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74572,10 +46155,35 @@ "canonical_id": "game_mlb_2026_20260313_bal_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-13T17:05:00Z", + "date": "2026-03-13", + "time": "1:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "PHI", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_baycare_ballpark", + "venue": "BayCare Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260313_nyy_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-13", + "time": "1:05p", + "home_team": "Atlanta Braves", + "away_team": "New York Yankees", + "home_team_abbrev": "ATL", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "CoolToday Park", + "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74583,10 +46191,17 @@ "canonical_id": "game_mlb_2026_20260313_min_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-13T17:07:00Z", + "date": "2026-03-13", + "time": "1:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Minnesota Twins", + "home_team_abbrev": "TOR", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_td_ballpark", + "venue": "TD Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74594,10 +46209,17 @@ "canonical_id": "game_mlb_2026_20260313_sd_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-13T20:05:00Z", + "date": "2026-03-13", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "San Diego Padres", + "home_team_abbrev": "OAK", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_hohokam_stadium", + "venue": "Hohokam Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74605,21 +46227,17 @@ "canonical_id": "game_mlb_2026_20260313_chc_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-13T20:05:00Z", + "date": "2026-03-13", + "time": "1:05p", + "home_team": "Chicago White Sox", + "away_team": "Chicago Cubs", + "home_team_abbrev": "CHW", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260313_tex_col", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-13T20:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74627,10 +46245,35 @@ "canonical_id": "game_mlb_2026_20260313_oak_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-13T20:10:00Z", + "date": "2026-03-13", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Oakland Athletics", + "home_team_abbrev": "MIL", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_american_family_fields_of_phoenix", + "venue": "American Family Fields of Phoenix", + "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260313_tex_col", + "sport": "MLB", + "season": "2026", + "date": "2026-03-13", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Texas Rangers", + "home_team_abbrev": "COL", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74638,32 +46281,17 @@ "canonical_id": "game_mlb_2026_20260313_cle_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-13T20:10:00Z", + "date": "2026-03-13", + "time": "1:10p", + "home_team": "Los Angeles Angels", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "LAA", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_tempe_diablo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260313_pit_det", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-13T22:05:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_publix_field_at_joker_marchant_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260313_nym_wsn", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-13T22:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", + "venue": "Tempe Diablo Stadium", + "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74671,10 +46299,53 @@ "canonical_id": "game_mlb_2026_20260313_hou_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-13T22:05:00Z", + "date": "2026-03-13", + "time": "6:05p", + "home_team": "St. Louis Cardinals", + "away_team": "Houston Astros", + "home_team_abbrev": "STL", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260313_pit_det", + "sport": "MLB", + "season": "2026", + "date": "2026-03-13", + "time": "6:05p", + "home_team": "Detroit Tigers", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "DET", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_pit", + "venue": "Publix Field at Joker Marchant Stadium", + "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260313_nym_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-03-13", + "time": "6:05p", + "home_team": "Washington Nationals", + "away_team": "New York Mets", + "home_team_abbrev": "WSN", + "away_team_abbrev": "NYM", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nym", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74682,10 +46353,35 @@ "canonical_id": "game_mlb_2026_20260313_mia_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-13T22:10:00Z", + "date": "2026-03-13", + "time": "6:10p", + "home_team": "New York Mets", + "away_team": "Miami Marlins", + "home_team_abbrev": "NYM", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_clover_park", + "venue": "Clover Park", + "stadium_canonical_id": "stadium_mlb_spring_clover_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260313_la_nyi", + "sport": "NHL", + "season": "2026", + "date": "2026-03-13", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "NYI", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_la", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -74693,21 +46389,143 @@ "canonical_id": "game_mlb_2026_20260313_cin_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-13T23:05:00Z", + "date": "2026-03-13", + "time": "4:05p", + "home_team": "San Francisco Giants", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "SF", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_scottsdale_stadium", + "venue": "Scottsdale Stadium", + "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260314_sf_cin", - "sport": "MLB", + "canonical_id": "game_nba_2025_20260313_nyk_ind", + "sport": "NBA", "season": "2026", - "game_datetime_utc": "2026-03-14T01:05:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", + "date": "2026-03-13", + "time": "7:30p", + "home_team": "Indiana Pacers", + "away_team": "New York Knicks", + "home_team_abbrev": "IND", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260313_phx_tor", + "sport": "NBA", + "season": "2026", + "date": "2026-03-13", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "Phoenix Suns", + "home_team_abbrev": "TOR", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_phx", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260313_mem_det", + "sport": "NBA", + "season": "2026", + "date": "2026-03-13", + "time": "7:30p", + "home_team": "Detroit Pistons", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "DET", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_mem", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260313_cle_dal", + "sport": "NBA", + "season": "2026", + "date": "2026-03-13", + "time": "6:30p", + "home_team": "Dallas Mavericks", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "DAL", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_cle", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260313_nop_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-03-13", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "HOU", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_nop", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260313_edm_stl", + "sport": "NHL", + "season": "2026", + "date": "2026-03-13", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "STL", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260314_por_wsh", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-13", + "time": "8p", + "home_team": "Washington Washington Spirit", + "away_team": "Portland Portland Thorns", + "home_team_abbrev": "WSH", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nwsl_wsh", + "away_team_canonical_id": "team_nwsl_por", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_nwsl_audi_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -74715,10 +46533,35 @@ "canonical_id": "game_mlb_2026_20260314_ari_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-14T01:05:00Z", + "date": "2026-03-13", + "time": "6:05p", + "home_team": "Kansas City Royals", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "KC", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_surprise_stadium", + "venue": "Surprise Stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260314_sf_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-03-13", + "time": "6:05p", + "home_team": "Cincinnati Reds", + "away_team": "San Francisco Giants", + "home_team_abbrev": "CIN", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74726,241 +46569,71 @@ "canonical_id": "game_mlb_2026_20260314_lad_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-14T01:10:00Z", + "date": "2026-03-13", + "time": "6:10p", + "home_team": "Seattle Mariners", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260314_mil_atl", + "canonical_id": "game_nba_2025_20260313_min_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T04:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_state_farm_arena", + "season": "2026", + "date": "2026-03-13", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "GSW", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_min", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260314_was_bos", + "canonical_id": "game_nba_2025_20260313_uta_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T04:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_td_garden", + "season": "2026", + "date": "2026-03-13", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Utah Jazz", + "home_team_abbrev": "POR", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_uta", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260314_orl_mia", + "canonical_id": "game_nba_2025_20260313_chi_lac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T04:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260314_tor_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T04:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260314_sj_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T04:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260314_la_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T04:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260314_cgy_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260314_ana_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T04:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260314_cbj_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T04:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260314_car_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T04:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_amalie_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260314_bos_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T04:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260314_cho_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T05:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260314_det_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T05:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260314_nyr_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T05:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260314_col_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T05:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260314_pit_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T06:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260314_brk_phi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T07:00:00Z", - "home_team_canonical_id": "team_nba_phi", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260314_den_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T07:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260314_sac_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T07:00:00Z", + "season": "2026", + "date": "2026-03-13", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Chicago Bulls", + "home_team_abbrev": "LAC", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_chi", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260314_sea_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T07:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_rogers_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260314_chi_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-14T07:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -74968,10 +46641,89 @@ "canonical_id": "game_mlb_2026_20260314_mia_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-14T16:05:00Z", + "date": "2026-03-14", + "time": "12:05p", + "home_team": "Washington Nationals", + "away_team": "Miami Marlins", + "home_team_abbrev": "WSN", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260314_njy_bos", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-14", + "time": "12:30p", + "home_team": "Boston Boston Legacy FC", + "away_team": "New Jersey NJ/NY Gotham FC", + "home_team_abbrev": "BOS", + "away_team_abbrev": "NJY", + "home_team_canonical_id": "team_nwsl_bos", + "away_team_canonical_id": "team_nwsl_njy", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_nwsl_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260314_ny_tor", + "sport": "MLS", + "season": "2026", + "date": "2026-03-14", + "time": "1p", + "home_team": "Toronto Toronto FC", + "away_team": "New York New York Red Bulls", + "home_team_abbrev": "TOR", + "away_team_abbrev": "RB", + "home_team_canonical_id": "team_mls_tor", + "away_team_canonical_id": "team_mls_ny", + "venue": "BMO Field", + "stadium_canonical_id": "stadium_mls_bmo_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260314_brk_phi", + "sport": "NBA", + "season": "2026", + "date": "2026-03-14", + "time": "10a", + "home_team": "Philadelphia 76ers", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "PHI", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_brk", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260314_ana_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-03-14", + "time": "1p", + "home_team": "Ottawa Senators", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "OTT", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -74979,10 +46731,17 @@ "canonical_id": "game_mlb_2026_20260314_tbr_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-14T17:05:00Z", + "date": "2026-03-14", + "time": "1:05p", + "home_team": "Minnesota Twins", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "MIN", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_hammond_stadium", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Hammond Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -74990,10 +46749,17 @@ "canonical_id": "game_mlb_2026_20260314_phi_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-14T17:05:00Z", + "date": "2026-03-14", + "time": "1:05p", + "home_team": "New York Yankees", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "NYY", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_george_m_steinbrenner_field", + "venue": "George M. Steinbrenner Field", + "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75001,10 +46767,17 @@ "canonical_id": "game_mlb_2026_20260314_bal_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-14T17:05:00Z", + "date": "2026-03-14", + "time": "1:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "PIT", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_lecom_park", + "venue": "LECOM Park", + "stadium_canonical_id": "stadium_mlb_spring_lecom_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75012,10 +46785,17 @@ "canonical_id": "game_mlb_2026_20260314_det_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-14T17:07:00Z", + "date": "2026-03-14", + "time": "1:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Detroit Tigers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_td_ballpark", + "venue": "TD Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75023,54 +46803,107 @@ "canonical_id": "game_mlb_2026_20260314_stl_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-14T17:10:00Z", + "date": "2026-03-14", + "time": "1:10p", + "home_team": "Miami Marlins", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "MIA", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260314_tex_cin", - "sport": "MLB", + "canonical_id": "game_mls_2026_20260314_phi_atl", + "sport": "MLS", "season": "2026", - "game_datetime_utc": "2026-03-14T20:05:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", + "date": "2026-03-14", + "time": "3p", + "home_team": "Atlanta Atlanta United", + "away_team": "Philadelphia Philadelphia Union", + "home_team_abbrev": "ATL", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mls_atl", + "away_team_canonical_id": "team_mls_phi", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260314_sd_tex", - "sport": "MLB", + "canonical_id": "game_nba_2025_20260314_mil_atl", + "sport": "NBA", "season": "2026", - "game_datetime_utc": "2026-03-14T20:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_surprise_stadium", + "date": "2026-03-14", + "time": "3p", + "home_team": "Atlanta Hawks", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_mil", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260314_lad_chw", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20260314_bos_was", + "sport": "NHL", "season": "2026", - "game_datetime_utc": "2026-03-14T20:05:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", + "date": "2026-03-14", + "time": "3p", + "home_team": "Washington Capitals", + "away_team": "Boston Bruins", + "home_team_abbrev": "WAS", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260314_kc_oak", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20260314_col_wpg", + "sport": "NHL", "season": "2026", - "game_datetime_utc": "2026-03-14T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_hohokam_stadium", + "date": "2026-03-14", + "time": "3p", + "home_team": "Winnipeg Jets", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "WPG", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_col", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260314_uta_kcc", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-14", + "time": "3p", + "home_team": "Kansas City Kansas City Current", + "away_team": "Utah Utah Royals", + "home_team_abbrev": "KCC", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nwsl_kcc", + "away_team_canonical_id": "team_nwsl_uta", + "venue": "CPKC Stadium", + "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -75078,43 +46911,89 @@ "canonical_id": "game_mlb_2026_20260314_ari_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-14T20:05:00Z", + "date": "2026-03-14", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "SF", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_scottsdale_stadium", + "venue": "Scottsdale Stadium", + "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260314_sea_laa", + "canonical_id": "game_mlb_2026_20260314_sd_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-14T20:10:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_tempe_diablo_stadium", + "date": "2026-03-14", + "time": "1:05p", + "home_team": "Texas Rangers", + "away_team": "San Diego Padres", + "home_team_abbrev": "TEX", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sd", + "venue": "Surprise Stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260314_col_mil", + "canonical_id": "game_mlb_2026_20260314_tex_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-14T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_american_family_fields_of_phoenix", + "date": "2026-03-14", + "time": "1:05p", + "home_team": "Cincinnati Reds", + "away_team": "Texas Rangers", + "home_team_abbrev": "CIN", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260314_cle_sd", + "canonical_id": "game_mlb_2026_20260314_kc_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-14T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "date": "2026-03-14", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Kansas City Royals", + "home_team_abbrev": "OAK", + "away_team_abbrev": "KC", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_kc", + "venue": "Hohokam Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260314_lad_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-03-14", + "time": "1:05p", + "home_team": "Chicago White Sox", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "CHW", + "away_team_abbrev": "LAD", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_lad", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75122,21 +47001,125 @@ "canonical_id": "game_mlb_2026_20260314_chc_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-14T20:10:00Z", + "date": "2026-03-14", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Chicago Cubs", + "home_team_abbrev": "COL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260314_nym_hou", + "canonical_id": "game_mlb_2026_20260314_col_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-14T22:05:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", + "date": "2026-03-14", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Colorado Rockies", + "home_team_abbrev": "MIL", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_col", + "venue": "American Family Fields of Phoenix", + "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260314_cle_sd", + "sport": "MLB", + "season": "2026", + "date": "2026-03-14", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "SD", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_mlb_sd", + "away_team_canonical_id": "team_mlb_cle", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260314_sea_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-03-14", + "time": "1:10p", + "home_team": "Los Angeles Angels", + "away_team": "Seattle Mariners", + "home_team_abbrev": "LAA", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_sea", + "venue": "Tempe Diablo Stadium", + "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260314_nsh_clb", + "sport": "MLS", + "season": "2026", + "date": "2026-03-14", + "time": "6p", + "home_team": "Columbus Columbus Crew", + "away_team": "Nashville Nashville SC", + "home_team_abbrev": "CLB", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_mls_clb", + "away_team_canonical_id": "team_mls_nsh", + "venue": "Lower.com Field", + "stadium_canonical_id": "stadium_mls_lowercom_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260314_was_bos", + "sport": "NBA", + "season": "2026", + "date": "2026-03-14", + "time": "6p", + "home_team": "Boston Celtics", + "away_team": "Washington Wizards", + "home_team_abbrev": "BOS", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_was", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260314_nyr_min", + "sport": "NHL", + "season": "2026", + "date": "2026-03-14", + "time": "5p", + "home_team": "Minnesota Wild", + "away_team": "New York Rangers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -75144,164 +47127,539 @@ "canonical_id": "game_mlb_2026_20260314_bos_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-14T22:05:00Z", + "date": "2026-03-14", + "time": "6:05p", + "home_team": "Atlanta Braves", + "away_team": "Boston Red Sox", + "home_team_abbrev": "ATL", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_cooltoday_park", + "venue": "CoolToday Park", + "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260315_det_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-15T04:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "canonical_id": "game_mlb_2026_20260314_nym_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-03-14", + "time": "6:05p", + "home_team": "Houston Astros", + "away_team": "New York Mets", + "home_team_abbrev": "HOU", + "away_team_abbrev": "NYM", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_nym", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260315_gsw_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-15T04:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_madison_square_garden", + "canonical_id": "game_nwsl_2026_20260314_den_bay", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-14", + "time": "3:30p", + "home_team": "San Francisco Bay FC", + "away_team": "Denver Denver Summit FC", + "home_team_abbrev": "BAY", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nwsl_bay", + "away_team_canonical_id": "team_nwsl_den", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_nwsl_paypal_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260315_ana_mtl", + "canonical_id": "game_nhl_2025_20260314_car_tb", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-15T04:00:00Z", + "season": "2026", + "date": "2026-03-14", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "TB", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_car", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260314_tor_buf", + "sport": "NHL", + "season": "2026", + "date": "2026-03-14", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "BUF", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_tor", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260314_la_njd", + "sport": "NHL", + "season": "2026", + "date": "2026-03-14", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "NJ", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_la", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260314_cgy_nyi", + "sport": "NHL", + "season": "2026", + "date": "2026-03-14", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Calgary Flames", + "home_team_abbrev": "NYI", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260314_sj_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-03-14", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "San Jose Sharks", + "home_team_abbrev": "MTL", + "away_team_abbrev": "SJ", "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Bell Centre", "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260315_sj_ott", + "canonical_id": "game_nwsl_2026_20260314_rgn_ncc", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-14", + "time": "7p", + "home_team": "North Carolina North Carolina Courage", + "away_team": "Louisville Racing Louisville", + "home_team_abbrev": "NCC", + "away_team_abbrev": "RGN", + "home_team_canonical_id": "team_nwsl_ncc", + "away_team_canonical_id": "team_nwsl_rgn", + "venue": "WakeMed Soccer Park", + "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260314_mtl_orl", + "sport": "MLS", + "season": "2026", + "date": "2026-03-14", + "time": "7:30p", + "home_team": "Orlando Orlando City", + "away_team": "Montreal CF Montreal", + "home_team_abbrev": "ORL", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_mls_orl", + "away_team_canonical_id": "team_mls_mtl", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260314_mia_clt", + "sport": "MLS", + "season": "2026", + "date": "2026-03-14", + "time": "7:30p", + "home_team": "Charlotte Charlotte FC", + "away_team": "Miami Inter Miami", + "home_team_abbrev": "CLT", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mls_clt", + "away_team_canonical_id": "team_mls_mia", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260314_col_nyc", + "sport": "MLS", + "season": "2026", + "date": "2026-03-14", + "time": "7:30p", + "home_team": "New York New York City FC", + "away_team": "Colorado Colorado Rapids", + "home_team_abbrev": "NYC", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mls_nyc", + "away_team_canonical_id": "team_mls_col", + "venue": "Yankee Stadium", + "stadium_canonical_id": "stadium_mls_yankee_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260314_cbj_phi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-15T04:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "season": "2026", + "date": "2026-03-14", + "time": "7:30p", + "home_team": "Philadelphia Flyers", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260314_orl_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-03-14", + "time": "8p", + "home_team": "Miami Heat", + "away_team": "Orlando Magic", + "home_team_abbrev": "MIA", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_orl", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260314_cho_sas", + "sport": "NBA", + "season": "2026", + "date": "2026-03-14", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "SAS", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_cho", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260314_det_dal", + "sport": "NHL", + "season": "2026", + "date": "2026-03-14", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "DAL", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_det", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260315_sd_dal", + "sport": "MLS", + "season": "2026", + "date": "2026-03-14", + "time": "7:30p", + "home_team": "Dallas FC Dallas", + "away_team": "San Diego San Diego FC", + "home_team_abbrev": "DAL", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mls_dal", + "away_team_canonical_id": "team_mls_sd", + "venue": "Toyota Stadium", + "stadium_canonical_id": "stadium_mls_toyota_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260315_por_hou", + "sport": "MLS", + "season": "2026", + "date": "2026-03-14", + "time": "7:30p", + "home_team": "Houston Houston Dynamo", + "away_team": "Portland Portland Timbers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_mls_hou", + "away_team_canonical_id": "team_mls_por", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_mls_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260315_dc_chi", + "sport": "MLS", + "season": "2026", + "date": "2026-03-14", + "time": "7:30p", + "home_team": "Chicago Chicago Fire", + "away_team": "Washington D.C. United", + "home_team_abbrev": "CHI", + "away_team_abbrev": "DC", + "home_team_canonical_id": "team_mls_chi", + "away_team_canonical_id": "team_mls_dc", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_mls_soldier_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260314_den_lal", + "sport": "NBA", + "season": "2026", + "date": "2026-03-14", + "time": "5:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Denver Nuggets", + "home_team_abbrev": "LAL", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_den", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260315_hou_sdw", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-14", + "time": "5:45p", + "home_team": "San Diego San Diego Wave", + "away_team": "Houston Houston Dash", + "home_team_abbrev": "SDW", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nwsl_sdw", + "away_team_canonical_id": "team_nwsl_hou", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260314_pit_ari", + "sport": "NHL", + "season": "2026", + "date": "2026-03-14", + "time": "7p", + "home_team": "Utah Club", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "ARI", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_pit", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260315_aus_slc", + "sport": "MLS", + "season": "2026", + "date": "2026-03-14", + "time": "7:30p", + "home_team": "Salt Lake Real Salt Lake", + "away_team": "Austin Austin FC", + "home_team_abbrev": "SLC", + "away_team_abbrev": "AUS", + "home_team_canonical_id": "team_mls_slc", + "away_team_canonical_id": "team_mls_aus", + "venue": "America First Field", + "stadium_canonical_id": "stadium_mls_america_first_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260315_skc_lag", + "sport": "MLS", + "season": "2026", + "date": "2026-03-14", + "time": "6:30p", + "home_team": "Los Angeles LA Galaxy", + "away_team": "Kansas City Sporting Kansas City", + "home_team_abbrev": "LAG", + "away_team_abbrev": "SKC", + "home_team_canonical_id": "team_mls_lag", + "away_team_canonical_id": "team_mls_skc", + "venue": "Dignity Health Sports Park", + "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260314_chi_vgk", + "sport": "NHL", + "season": "2026", + "date": "2026-03-14", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "VGK", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_chi", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260314_sea_van", + "sport": "NHL", + "season": "2026", + "date": "2026-03-14", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Seattle Kraken", + "home_team_abbrev": "VAN", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260315_stl_lafc", + "sport": "MLS", + "season": "2026", + "date": "2026-03-14", + "time": "7:30p", + "home_team": "Los Angeles Los Angeles FC", + "away_team": "St. Louis St. Louis City SC", + "home_team_abbrev": "LAFC", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mls_lafc", + "away_team_canonical_id": "team_mls_stl", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260315_min_van", + "sport": "MLS", + "season": "2026", + "date": "2026-03-14", + "time": "7:30p", + "home_team": "Vancouver Vancouver Whitecaps", + "away_team": "Minnesota Minnesota United", + "home_team_abbrev": "VAN", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mls_van", + "away_team_canonical_id": "team_mls_min", + "venue": "BC Place", + "stadium_canonical_id": "stadium_mls_bc_place", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260314_sac_lac", + "sport": "NBA", + "season": "2026", + "date": "2026-03-14", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Sacramento Kings", + "home_team_abbrev": "LAC", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_sac", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260315_min_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-15T05:00:00Z", + "season": "2026", + "date": "2026-03-15", + "time": "12p", + "home_team": "Oklahoma City Thunder", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "OKC", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nba_okc", "away_team_canonical_id": "team_nba_min", + "venue": "Paycom Center", "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260315_dal_cle", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-15T05:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260315_ind_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-15T05:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260315_tor_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-15T05:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260315_stl_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-15T05:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260315_nsh_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-15T06:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260315_por_phi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-15T07:00:00Z", - "home_team_canonical_id": "team_nba_phi", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260315_uta_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-15T07:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260315_fla_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-15T07:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260315_wsn_stl", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-15T17:05:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -75309,21 +47667,35 @@ "canonical_id": "game_mlb_2026_20260315_pit_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-15T17:05:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-03-15", + "time": "1:05p", + "home_team": "Tampa Bay Rays", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "TB", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_charlotte_sports_park", + "venue": "Charlotte Sports Park", + "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260315_min_bos", + "canonical_id": "game_mlb_2026_20260315_wsn_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-15T17:05:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_jetblue_park", + "date": "2026-03-15", + "time": "1:05p", + "home_team": "St. Louis Cardinals", + "away_team": "Washington Nationals", + "home_team_abbrev": "STL", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75331,10 +47703,17 @@ "canonical_id": "game_mlb_2026_20260315_mia_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-15T17:05:00Z", + "date": "2026-03-15", + "time": "1:05p", + "home_team": "Houston Astros", + "away_team": "Miami Marlins", + "home_team_abbrev": "HOU", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75342,10 +47721,35 @@ "canonical_id": "game_mlb_2026_20260315_det_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-15T17:05:00Z", + "date": "2026-03-15", + "time": "1:05p", + "home_team": "New York Yankees", + "away_team": "Detroit Tigers", + "home_team_abbrev": "NYY", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_george_m_steinbrenner_field", + "venue": "George M. Steinbrenner Field", + "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260315_min_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-03-15", + "time": "1:05p", + "home_team": "Boston Red Sox", + "away_team": "Minnesota Twins", + "home_team_abbrev": "BOS", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_min", + "venue": "JetBlue Park", + "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75353,10 +47757,17 @@ "canonical_id": "game_mlb_2026_20260315_atl_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-15T17:05:00Z", + "date": "2026-03-15", + "time": "1:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Atlanta Braves", + "home_team_abbrev": "PHI", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_baycare_ballpark", + "venue": "BayCare Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75364,32 +47775,125 @@ "canonical_id": "game_mlb_2026_20260315_tor_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-15T17:10:00Z", + "date": "2026-03-15", + "time": "1:10p", + "home_team": "New York Mets", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "NYM", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_clover_park", + "venue": "Clover Park", + "stadium_canonical_id": "stadium_mlb_spring_clover_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260315_tex_lad", - "sport": "MLB", + "canonical_id": "game_mls_2026_20260315_cin_ne", + "sport": "MLS", "season": "2026", - "game_datetime_utc": "2026-03-15T20:05:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", + "date": "2026-03-15", + "time": "2:30p", + "home_team": "New England New England Revolution", + "away_team": "Cincinnati FC Cincinnati", + "home_team_abbrev": "NE", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mls_ne", + "away_team_canonical_id": "team_mls_cin", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_mls_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260315_oak_cle", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20260315_stl_wpg", + "sport": "NHL", "season": "2026", - "game_datetime_utc": "2026-03-15T20:05:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", + "date": "2026-03-15", + "time": "2p", + "home_team": "Winnipeg Jets", + "away_team": "St. Louis Blues", + "home_team_abbrev": "WPG", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260315_dal_cle", + "sport": "NBA", + "season": "2026", + "date": "2026-03-15", + "time": "2:30p", + "home_team": "Cleveland Cavaliers", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "CLE", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_dal", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260315_det_tor", + "sport": "NBA", + "season": "2026", + "date": "2026-03-15", + "time": "3:30p", + "home_team": "Toronto Raptors", + "away_team": "Detroit Pistons", + "home_team_abbrev": "TOR", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_det", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260315_ind_mil", + "sport": "NBA", + "season": "2026", + "date": "2026-03-15", + "time": "2:30p", + "home_team": "Milwaukee Bucks", + "away_team": "Indiana Pacers", + "home_team_abbrev": "MIL", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_ind", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260315_sea_orl", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-15", + "time": "4p", + "home_team": "Orlando Orlando Pride", + "away_team": "Seattle Seattle Reign", + "home_team_abbrev": "ORL", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nwsl_orl", + "away_team_canonical_id": "team_nwsl_sea", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -75397,10 +47901,53 @@ "canonical_id": "game_mlb_2026_20260315_mil_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-15T20:05:00Z", + "date": "2026-03-15", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "SF", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_scottsdale_stadium", + "venue": "Scottsdale Stadium", + "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260315_tex_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-03-15", + "time": "1:05p", + "home_team": "Los Angeles Dodgers", + "away_team": "Texas Rangers", + "home_team_abbrev": "LAD", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260315_oak_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-03-15", + "time": "1:05p", + "home_team": "Cleveland Guardians", + "away_team": "Oakland Athletics", + "home_team_abbrev": "CLE", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75408,10 +47955,17 @@ "canonical_id": "game_mlb_2026_20260315_lad_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-15T20:05:00Z", + "date": "2026-03-15", + "time": "1:05p", + "home_team": "Chicago Cubs", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "CHC", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_sloan_park", + "venue": "Sloan Park", + "stadium_canonical_id": "stadium_mlb_spring_sloan_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75419,10 +47973,17 @@ "canonical_id": "game_mlb_2026_20260315_chw_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-15T20:05:00Z", + "date": "2026-03-15", + "time": "1:05p", + "home_team": "Kansas City Royals", + "away_team": "Chicago White Sox", + "home_team_abbrev": "KC", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_surprise_stadium", + "venue": "Surprise Stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75430,21 +47991,17 @@ "canonical_id": "game_mlb_2026_20260315_sd_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-15T20:10:00Z", + "date": "2026-03-15", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "San Diego Padres", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260315_col_laa", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-15T20:10:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_tempe_diablo_stadium", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75452,10 +48009,71 @@ "canonical_id": "game_mlb_2026_20260315_cin_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-15T20:10:00Z", + "date": "2026-03-15", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260315_col_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-03-15", + "time": "1:10p", + "home_team": "Los Angeles Angels", + "away_team": "Colorado Rockies", + "home_team_abbrev": "LAA", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_col", + "venue": "Tempe Diablo Stadium", + "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260315_sj_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-03-15", + "time": "5p", + "home_team": "Ottawa Senators", + "away_team": "San Jose Sharks", + "home_team_abbrev": "OTT", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260315_por_phi", + "sport": "NBA", + "season": "2026", + "date": "2026-03-15", + "time": "3p", + "home_team": "Philadelphia 76ers", + "away_team": "Portland Blazers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_por", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -75463,164 +48081,161 @@ "canonical_id": "game_mlb_2026_20260315_nyy_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-15T22:05:00Z", + "date": "2026-03-15", + "time": "6:05p", + "home_team": "Baltimore Orioles", + "away_team": "New York Yankees", + "home_team_abbrev": "BAL", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_ed_smith_stadium", + "venue": "Ed Smith Stadium", + "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260316_orl_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-16T04:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260316_gsw_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-16T04:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260316_por_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-16T04:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260316_phx_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-16T04:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260316_cgy_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-16T04:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260316_bos_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-16T04:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260316_la_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-16T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260316_mem_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-16T05:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260316_dal_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-16T05:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260316_lal_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-16T05:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260316_ari_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-16T05:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260316_pit_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-16T06:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260316_sas_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-16T07:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260316_tbr_atl", - "sport": "MLB", + "canonical_id": "game_mls_2026_20260315_sea_sj", + "sport": "MLS", "season": "2026", - "game_datetime_utc": "2026-03-16T17:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_cooltoday_park", + "date": "2026-03-15", + "time": "4p", + "home_team": "San Jose San Jose Earthquakes", + "away_team": "Seattle Seattle Sounders", + "home_team_abbrev": "SJ", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mls_sj", + "away_team_canonical_id": "team_mls_sea", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_mls_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260315_ana_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-03-15", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "MTL", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260315_chi_ang", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-15", + "time": "4p", + "home_team": "Los Angeles Angel City FC", + "away_team": "Chicago Chicago Red Stars", + "home_team_abbrev": "ANG", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nwsl_ang", + "away_team_canonical_id": "team_nwsl_chi", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_nwsl_bmo_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260315_tor_min", + "sport": "NHL", + "season": "2026", + "date": "2026-03-15", + "time": "6:30p", + "home_team": "Minnesota Wild", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "MIN", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260315_gsw_nyk", + "sport": "NBA", + "season": "2026", + "date": "2026-03-15", + "time": "8p", + "home_team": "New York Knicks", + "away_team": "Golden State Warriors", + "home_team_abbrev": "NYK", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260315_fla_sea", + "sport": "NHL", + "season": "2026", + "date": "2026-03-15", + "time": "5p", + "home_team": "Seattle Kraken", + "away_team": "Florida Panthers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260315_nsh_edm", + "sport": "NHL", + "season": "2026", + "date": "2026-03-15", + "time": "6p", + "home_team": "Edmonton Oilers", + "away_team": "Nashville Predators", + "home_team_abbrev": "EDM", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260315_uta_sac", + "sport": "NBA", + "season": "2026", + "date": "2026-03-15", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Utah Jazz", + "home_team_abbrev": "SAC", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_uta", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -75628,10 +48243,17 @@ "canonical_id": "game_mlb_2026_20260316_pit_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-16T17:05:00Z", + "date": "2026-03-16", + "time": "1:05p", + "home_team": "Minnesota Twins", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "MIN", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_hammond_stadium", + "venue": "Hammond Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75639,10 +48261,35 @@ "canonical_id": "game_mlb_2026_20260316_phi_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-16T17:05:00Z", + "date": "2026-03-16", + "time": "1:05p", + "home_team": "Detroit Tigers", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "DET", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_publix_field_at_joker_marchant_stadium", + "venue": "Publix Field at Joker Marchant Stadium", + "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260316_tbr_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-16", + "time": "1:05p", + "home_team": "Atlanta Braves", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "ATL", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "CoolToday Park", + "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75650,21 +48297,17 @@ "canonical_id": "game_mlb_2026_20260316_tor_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-16T17:10:00Z", + "date": "2026-03-16", + "time": "1:10p", + "home_team": "Miami Marlins", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "MIA", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260316_mil_lad", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-16T20:05:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75672,21 +48315,35 @@ "canonical_id": "game_mlb_2026_20260316_laa_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-16T20:05:00Z", + "date": "2026-03-16", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "OAK", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_hohokam_stadium", + "venue": "Hohokam Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260316_sf_sd", + "canonical_id": "game_mlb_2026_20260316_mil_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-16T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "date": "2026-03-16", + "time": "1:05p", + "home_team": "Los Angeles Dodgers", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "LAD", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_mil", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75694,10 +48351,35 @@ "canonical_id": "game_mlb_2026_20260316_cin_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-16T20:10:00Z", + "date": "2026-03-16", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260316_sf_sd", + "sport": "MLB", + "season": "2026", + "date": "2026-03-16", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "San Francisco Giants", + "home_team_abbrev": "SD", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_sd", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75705,10 +48387,17 @@ "canonical_id": "game_mlb_2026_20260316_bos_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-16T22:05:00Z", + "date": "2026-03-16", + "time": "6:05p", + "home_team": "Baltimore Orioles", + "away_team": "Boston Red Sox", + "home_team_abbrev": "BAL", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_ed_smith_stadium", + "venue": "Ed Smith Stadium", + "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75716,10 +48405,197 @@ "canonical_id": "game_mlb_2026_20260316_wsn_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-16T22:10:00Z", + "date": "2026-03-16", + "time": "6:10p", + "home_team": "New York Mets", + "away_team": "Washington Nationals", + "home_team_abbrev": "NYM", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_clover_park", + "venue": "Clover Park", + "stadium_canonical_id": "stadium_mlb_spring_clover_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260316_orl_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-03-16", + "time": "7p", + "home_team": "Atlanta Hawks", + "away_team": "Orlando Magic", + "home_team_abbrev": "ATL", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_orl", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260316_gsw_was", + "sport": "NBA", + "season": "2026", + "date": "2026-03-16", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Golden State Warriors", + "home_team_abbrev": "WAS", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260316_la_nyr", + "sport": "NHL", + "season": "2026", + "date": "2026-03-16", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "NYR", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_la", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260316_bos_njd", + "sport": "NHL", + "season": "2026", + "date": "2026-03-16", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Boston Bruins", + "home_team_abbrev": "NJ", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260316_cgy_det", + "sport": "NHL", + "season": "2026", + "date": "2026-03-16", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Calgary Flames", + "home_team_abbrev": "DET", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260316_por_brk", + "sport": "NBA", + "season": "2026", + "date": "2026-03-16", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Portland Blazers", + "home_team_abbrev": "BKN", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_por", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260316_phx_bos", + "sport": "NBA", + "season": "2026", + "date": "2026-03-16", + "time": "8p", + "home_team": "Boston Celtics", + "away_team": "Phoenix Suns", + "home_team_abbrev": "BOS", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_phx", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260316_mem_chi", + "sport": "NBA", + "season": "2026", + "date": "2026-03-16", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "CHI", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_mem", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260316_dal_nop", + "sport": "NBA", + "season": "2026", + "date": "2026-03-16", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "NOP", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_dal", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260316_ari_dal", + "sport": "NHL", + "season": "2026", + "date": "2026-03-16", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Utah Club", + "home_team_abbrev": "DAL", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_ari", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -75727,10 +48603,35 @@ "canonical_id": "game_mlb_2026_20260317_chw_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-17T00:05:00Z", + "date": "2026-03-16", + "time": "5:05p", + "home_team": "Texas Rangers", + "away_team": "Chicago White Sox", + "home_team_abbrev": "TEX", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_surprise_stadium", + "venue": "Surprise Stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260316_lal_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-03-16", + "time": "8p", + "home_team": "Houston Rockets", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_lal", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -75738,197 +48639,53 @@ "canonical_id": "game_mlb_2026_20260317_chc_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-17T01:05:00Z", + "date": "2026-03-16", + "time": "6:05p", + "home_team": "Cleveland Guardians", + "away_team": "Chicago Cubs", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260317_mia_cho", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-17T04:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260317_okc_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-17T04:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260317_det_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-17T04:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260317_ind_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-17T04:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260317_car_cbj", + "canonical_id": "game_nhl_2025_20260316_pit_col", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-17T04:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "season": "2026", + "date": "2026-03-16", + "time": "7:30p", + "home_team": "Colorado Avalanche", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "COL", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_pit", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260317_bos_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-17T04:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260317_nyi_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-17T04:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260317_cle_mil", + "canonical_id": "game_nba_2025_20260316_sas_lac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-17T05:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260317_phx_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-17T05:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260317_min_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-17T05:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260317_nsh_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-17T05:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260317_phi_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-17T06:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260317_sj_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-17T06:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260317_sas_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-17T07:00:00Z", - "home_team_canonical_id": "team_nba_sac", + "season": "2026", + "date": "2026-03-16", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "LAC", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_lac", "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260317_tb_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-17T07:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260317_fla_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-17T07:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_rogers_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260317_buf_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-17T07:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -75936,32 +48693,17 @@ "canonical_id": "game_mlb_2026_20260317_stl_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-17T17:05:00Z", + "date": "2026-03-17", + "time": "1:05p", + "home_team": "Washington Nationals", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "WSN", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260317_nyy_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-17T17:05:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_charlotte_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260317_min_phi", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-17T17:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_baycare_ballpark", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75969,10 +48711,17 @@ "canonical_id": "game_mlb_2026_20260317_hou_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-17T17:05:00Z", + "date": "2026-03-17", + "time": "1:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "Houston Astros", + "home_team_abbrev": "PIT", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_lecom_park", + "venue": "LECOM Park", + "stadium_canonical_id": "stadium_mlb_spring_lecom_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75980,10 +48729,35 @@ "canonical_id": "game_mlb_2026_20260317_bal_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-17T17:05:00Z", + "date": "2026-03-17", + "time": "1:05p", + "home_team": "Detroit Tigers", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "DET", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_publix_field_at_joker_marchant_stadium", + "venue": "Publix Field at Joker Marchant Stadium", + "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260317_min_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-03-17", + "time": "1:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Minnesota Twins", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_min", + "venue": "BayCare Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -75991,10 +48765,35 @@ "canonical_id": "game_mlb_2026_20260317_atl_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-17T17:05:00Z", + "date": "2026-03-17", + "time": "1:05p", + "home_team": "Boston Red Sox", + "away_team": "Atlanta Braves", + "home_team_abbrev": "BOS", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_jetblue_park", + "venue": "JetBlue Park", + "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260317_nyy_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-03-17", + "time": "1:05p", + "home_team": "Tampa Bay Rays", + "away_team": "New York Yankees", + "home_team_abbrev": "TB", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Charlotte Sports Park", + "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -76002,10 +48801,17 @@ "canonical_id": "game_mlb_2026_20260317_nym_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-17T17:10:00Z", + "date": "2026-03-17", + "time": "1:10p", + "home_team": "Miami Marlins", + "away_team": "New York Mets", + "home_team_abbrev": "MIA", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -76013,21 +48819,17 @@ "canonical_id": "game_mlb_2026_20260317_oak_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-17T20:05:00Z", + "date": "2026-03-17", + "time": "1:05p", + "home_team": "Chicago White Sox", + "away_team": "Oakland Athletics", + "home_team_abbrev": "CHW", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260317_sea_col", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-17T20:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -76035,21 +48837,269 @@ "canonical_id": "game_mlb_2026_20260317_sd_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-17T20:10:00Z", + "date": "2026-03-17", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "San Diego Padres", + "home_team_abbrev": "SEA", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260318_lad_kc", + "canonical_id": "game_mlb_2026_20260317_sea_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-18T01:05:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_surprise_stadium", + "date": "2026-03-17", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Seattle Mariners", + "home_team_abbrev": "COL", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sea", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260317_mia_cho", + "sport": "NBA", + "season": "2026", + "date": "2026-03-17", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Miami Heat", + "home_team_abbrev": "CHA", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_mia", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260317_det_was", + "sport": "NBA", + "season": "2026", + "date": "2026-03-17", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Detroit Pistons", + "home_team_abbrev": "WAS", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_det", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260317_okc_orl", + "sport": "NBA", + "season": "2026", + "date": "2026-03-17", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "ORL", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_okc", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260317_nyi_tor", + "sport": "NHL", + "season": "2026", + "date": "2026-03-17", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "New York Islanders", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260317_car_cbj", + "sport": "NHL", + "season": "2026", + "date": "2026-03-17", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_car", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260317_bos_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-03-17", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Boston Bruins", + "home_team_abbrev": "MTL", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260317_ind_nyk", + "sport": "NBA", + "season": "2026", + "date": "2026-03-17", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Indiana Pacers", + "home_team_abbrev": "NYK", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_ind", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260317_min_chi", + "sport": "NHL", + "season": "2026", + "date": "2026-03-17", + "time": "6:30p", + "home_team": "Chicago Blackhawks", + "away_team": "Minnesota Wild", + "home_team_abbrev": "CHI", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_min", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260317_cle_mil", + "sport": "NBA", + "season": "2026", + "date": "2026-03-17", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_cle", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260317_phx_min", + "sport": "NBA", + "season": "2026", + "date": "2026-03-17", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "Phoenix Suns", + "home_team_abbrev": "MIN", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_phx", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260317_nsh_wpg", + "sport": "NHL", + "season": "2026", + "date": "2026-03-17", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "Nashville Predators", + "home_team_abbrev": "WPG", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260317_phi_den", + "sport": "NBA", + "season": "2026", + "date": "2026-03-17", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "DEN", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_phi", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260317_sj_edm", + "sport": "NHL", + "season": "2026", + "date": "2026-03-17", + "time": "7p", + "home_team": "Edmonton Oilers", + "away_team": "San Jose Sharks", + "home_team_abbrev": "EDM", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -76057,10 +49107,35 @@ "canonical_id": "game_mlb_2026_20260318_laa_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-18T01:05:00Z", + "date": "2026-03-17", + "time": "6:05p", + "home_team": "Chicago Cubs", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "CHC", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_sloan_park", + "venue": "Sloan Park", + "stadium_canonical_id": "stadium_mlb_spring_sloan_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260318_lad_kc", + "sport": "MLB", + "season": "2026", + "date": "2026-03-17", + "time": "6:05p", + "home_team": "Kansas City Royals", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "KC", + "away_team_abbrev": "LAD", + "home_team_canonical_id": "team_mlb_kc", + "away_team_canonical_id": "team_mlb_lad", + "venue": "Surprise Stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -76068,197 +49143,89 @@ "canonical_id": "game_mlb_2026_20260318_cle_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-18T01:05:00Z", + "date": "2026-03-17", + "time": "6:05p", + "home_team": "Cincinnati Reds", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "CIN", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260318_gsw_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-18T04:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260318_okc_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-18T04:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260318_por_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-18T04:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260318_pit_car", + "canonical_id": "game_nhl_2025_20260317_buf_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-18T04:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260318_njd_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-18T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260318_ott_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-18T04:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260318_tor_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-18T05:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260318_nyk_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-18T05:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260318_uta_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-18T05:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260318_lac_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-18T05:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260318_atl_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-18T05:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260318_lal_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-18T05:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260318_stl_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-18T06:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260318_dal_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-18T06:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260318_phi_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-18T07:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260318_phi_atl", - "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-18T17:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_cooltoday_park", + "date": "2026-03-17", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "VGK", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_buf", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260318_hou_stl", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20260317_fla_van", + "sport": "NHL", "season": "2026", - "game_datetime_utc": "2026-03-18T17:05:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", + "date": "2026-03-17", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Florida Panthers", + "home_team_abbrev": "VAN", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260317_tb_sea", + "sport": "NHL", + "season": "2026", + "date": "2026-03-17", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "SEA", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260317_sas_sac", + "sport": "NBA", + "season": "2026", + "date": "2026-03-17", + "time": "8p", + "home_team": "Sacramento Kings", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "SAC", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_sas", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -76266,10 +49233,53 @@ "canonical_id": "game_mlb_2026_20260318_bos_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-18T17:05:00Z", + "date": "2026-03-18", + "time": "1:05p", + "home_team": "New York Yankees", + "away_team": "Boston Red Sox", + "home_team_abbrev": "NYY", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_george_m_steinbrenner_field", + "venue": "George M. Steinbrenner Field", + "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260318_hou_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-18", + "time": "1:05p", + "home_team": "St. Louis Cardinals", + "away_team": "Houston Astros", + "home_team_abbrev": "STL", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_hou", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260318_phi_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-18", + "time": "1:05p", + "home_team": "Atlanta Braves", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "ATL", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_phi", + "venue": "CoolToday Park", + "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -76277,10 +49287,17 @@ "canonical_id": "game_mlb_2026_20260318_bal_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-18T17:07:00Z", + "date": "2026-03-18", + "time": "1:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_td_ballpark", + "venue": "TD Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -76288,10 +49305,17 @@ "canonical_id": "game_mlb_2026_20260318_sf_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-18T20:05:00Z", + "date": "2026-03-18", + "time": "1:05p", + "home_team": "Los Angeles Dodgers", + "away_team": "San Francisco Giants", + "home_team_abbrev": "LAD", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -76299,43 +49323,17 @@ "canonical_id": "game_mlb_2026_20260318_col_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-18T20:05:00Z", + "date": "2026-03-18", + "time": "1:05p", + "home_team": "Cincinnati Reds", + "away_team": "Colorado Rockies", + "home_team_abbrev": "CIN", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260318_mil_sea", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-18T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260318_laa_mil", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-18T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_american_family_fields_of_phoenix", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260318_cin_laa", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-18T20:10:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_tempe_diablo_stadium", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -76343,21 +49341,71 @@ "canonical_id": "game_mlb_2026_20260318_chc_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-18T20:10:00Z", + "date": "2026-03-18", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Chicago Cubs", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260318_mia_wsn", + "canonical_id": "game_mlb_2026_20260318_mil_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-18T22:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", + "date": "2026-03-18", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_mil", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260318_laa_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-03-18", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "MIL", + "away_team_abbrev": "LAA", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_laa", + "venue": "American Family Fields of Phoenix", + "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260318_cin_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-03-18", + "time": "1:10p", + "home_team": "Los Angeles Angels", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "LAA", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_cin", + "venue": "Tempe Diablo Stadium", + "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -76365,21 +49413,233 @@ "canonical_id": "game_mlb_2026_20260318_det_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-18T22:05:00Z", + "date": "2026-03-18", + "time": "6:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "Detroit Tigers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_lecom_park", + "venue": "LECOM Park", + "stadium_canonical_id": "stadium_mlb_spring_lecom_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260318_mia_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-03-18", + "time": "6:05p", + "home_team": "Washington Nationals", + "away_team": "Miami Marlins", + "home_team_abbrev": "WSN", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mia", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260318_gsw_bos", + "sport": "NBA", + "season": "2026", + "date": "2026-03-18", + "time": "7p", + "home_team": "Boston Celtics", + "away_team": "Golden State Warriors", + "home_team_abbrev": "BOS", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_gsw", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260318_pit_car", + "sport": "NHL", + "season": "2026", + "date": "2026-03-18", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "CAR", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_pit", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260318_njd_nyr", + "sport": "NHL", + "season": "2026", + "date": "2026-03-18", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "New Jersey Devils", + "home_team_abbrev": "NYR", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_njd", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260318_okc_brk", + "sport": "NBA", + "season": "2026", + "date": "2026-03-18", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "BKN", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_okc", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260318_por_ind", + "sport": "NBA", + "season": "2026", + "date": "2026-03-18", + "time": "7:30p", + "home_team": "Indiana Pacers", + "away_team": "Portland Blazers", + "home_team_abbrev": "IND", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_por", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260318_ott_was", + "sport": "NHL", + "season": "2026", + "date": "2026-03-18", + "time": "7:30p", + "home_team": "Washington Capitals", + "away_team": "Ottawa Senators", + "home_team_abbrev": "WAS", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260318_lac_nop", + "sport": "NBA", + "season": "2026", + "date": "2026-03-18", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "NOP", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_lac", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260318_uta_min", + "sport": "NBA", + "season": "2026", + "date": "2026-03-18", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "Utah Jazz", + "home_team_abbrev": "MIN", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_uta", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260318_nyk_mem", + "sport": "NBA", + "season": "2026", + "date": "2026-03-18", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "New York Knicks", + "home_team_abbrev": "MEM", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_nyk", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": null, "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260318_den_mem", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T00:00:00Z", + "season": "2026", + "date": "2026-03-18", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Denver Nuggets", + "home_team_abbrev": "MEM", + "away_team_abbrev": "DEN", "home_team_canonical_id": "team_nba_mem", "away_team_canonical_id": "team_nba_den", + "venue": "FedExForum", "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260318_tor_chi", + "sport": "NBA", + "season": "2026", + "date": "2026-03-18", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Toronto Raptors", + "home_team_abbrev": "CHI", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_tor", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -76387,219 +49647,107 @@ "canonical_id": "game_mlb_2026_20260319_kc_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-19T00:05:00Z", + "date": "2026-03-18", + "time": "5:05p", + "home_team": "Texas Rangers", + "away_team": "Kansas City Royals", + "home_team_abbrev": "TEX", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_surprise_stadium", + "venue": "Surprise Stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260319_orl_cho", + "canonical_id": "game_nba_2025_20260318_atl_dal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T04:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_spectrum_center", + "season": "2026", + "date": "2026-03-18", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "DAL", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_atl", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260319_det_was", + "canonical_id": "game_nba_2025_20260318_lal_hou", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T04:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260319_lal_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T04:00:00Z", - "home_team_canonical_id": "team_nba_mia", + "season": "2026", + "date": "2026-03-18", + "time": "8:30p", + "home_team": "Houston Rockets", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_hou", "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_kaseya_center", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260319_wpg_bos", + "canonical_id": "game_nhl_2025_20260318_dal_col", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T04:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_td_garden", + "season": "2026", + "date": "2026-03-18", + "time": "7:30p", + "home_team": "Colorado Avalanche", + "away_team": "Dallas Stars", + "home_team_abbrev": "COL", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260319_nyr_cbj", + "canonical_id": "game_nhl_2025_20260318_stl_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T04:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "season": "2026", + "date": "2026-03-18", + "time": "7:30p", + "home_team": "Calgary Flames", + "away_team": "St. Louis Blues", + "home_team_abbrev": "CGY", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260319_mtl_det", + "canonical_id": "game_nhl_2025_20260318_phi_ana", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T04:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260319_nyi_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T04:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260319_cle_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T05:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260319_lac_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T05:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260319_phx_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T05:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260319_chi_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T05:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260319_sea_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T05:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260319_mil_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T06:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260319_fla_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T06:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260319_phi_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T07:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260319_phi_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T07:00:00Z", - "home_team_canonical_id": "team_nhl_la", + "season": "2026", + "date": "2026-03-18", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "ANA", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_ana", "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260319_buf_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T07:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260319_tb_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T07:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_rogers_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260319_ari_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-19T07:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -76607,21 +49755,17 @@ "canonical_id": "game_mlb_2026_20260319_wsn_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-19T17:05:00Z", + "date": "2026-03-19", + "time": "1:05p", + "home_team": "St. Louis Cardinals", + "away_team": "Washington Nationals", + "home_team_abbrev": "STL", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260319_tbr_phi", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-19T17:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_baycare_ballpark", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -76629,10 +49773,35 @@ "canonical_id": "game_mlb_2026_20260319_bal_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-19T17:05:00Z", + "date": "2026-03-19", + "time": "1:05p", + "home_team": "New York Yankees", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "NYY", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_george_m_steinbrenner_field", + "venue": "George M. Steinbrenner Field", + "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260319_tbr_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-03-19", + "time": "1:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "BayCare Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -76640,10 +49809,17 @@ "canonical_id": "game_mlb_2026_20260319_nyy_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-19T17:07:00Z", + "date": "2026-03-19", + "time": "1:07p", + "home_team": "Toronto Blue Jays", + "away_team": "New York Yankees", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_td_ballpark", + "venue": "TD Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -76651,10 +49827,17 @@ "canonical_id": "game_mlb_2026_20260319_laa_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-19T20:05:00Z", + "date": "2026-03-19", + "time": "1:05p", + "home_team": "Kansas City Royals", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "KC", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_surprise_stadium", + "venue": "Surprise Stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -76662,32 +49845,17 @@ "canonical_id": "game_mlb_2026_20260319_sf_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-19T20:10:00Z", + "date": "2026-03-19", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "San Francisco Giants", + "home_team_abbrev": "COL", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260319_pit_bal", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-19T22:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_ed_smith_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260319_nym_hou", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-19T22:05:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -76695,21 +49863,305 @@ "canonical_id": "game_mlb_2026_20260319_min_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-19T22:05:00Z", + "date": "2026-03-19", + "time": "6:05p", + "home_team": "Boston Red Sox", + "away_team": "Minnesota Twins", + "home_team_abbrev": "BOS", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_jetblue_park", + "venue": "JetBlue Park", + "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260320_kc_cle", + "canonical_id": "game_mlb_2026_20260319_nym_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-20T01:05:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", + "date": "2026-03-19", + "time": "6:05p", + "home_team": "Houston Astros", + "away_team": "New York Mets", + "home_team_abbrev": "HOU", + "away_team_abbrev": "NYM", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_nym", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260319_pit_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-03-19", + "time": "6:05p", + "home_team": "Baltimore Orioles", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "BAL", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_pit", + "venue": "Ed Smith Stadium", + "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260319_orl_cho", + "sport": "NBA", + "season": "2026", + "date": "2026-03-19", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Orlando Magic", + "home_team_abbrev": "CHA", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_orl", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260319_det_was", + "sport": "NBA", + "season": "2026", + "date": "2026-03-19", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Detroit Pistons", + "home_team_abbrev": "WAS", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_det", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260319_mtl_det", + "sport": "NHL", + "season": "2026", + "date": "2026-03-19", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "DET", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260319_wpg_bos", + "sport": "NHL", + "season": "2026", + "date": "2026-03-19", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "BOS", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260319_nyr_cbj", + "sport": "NHL", + "season": "2026", + "date": "2026-03-19", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "New York Rangers", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260319_nyi_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-03-19", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "New York Islanders", + "home_team_abbrev": "OTT", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260319_chi_min", + "sport": "NHL", + "season": "2026", + "date": "2026-03-19", + "time": "6:30p", + "home_team": "Minnesota Wild", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260319_cle_chi", + "sport": "NBA", + "season": "2026", + "date": "2026-03-19", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "CHI", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_cle", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260319_phx_sas", + "sport": "NBA", + "season": "2026", + "date": "2026-03-19", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Phoenix Suns", + "home_team_abbrev": "SAS", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_phx", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260319_lac_nop", + "sport": "NBA", + "season": "2026", + "date": "2026-03-19", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "NOP", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_lac", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260319_lal_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-03-19", + "time": "8p", + "home_team": "Miami Heat", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "MIA", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_lal", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260319_sea_nsh", + "sport": "NHL", + "season": "2026", + "date": "2026-03-19", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "Seattle Kraken", + "home_team_abbrev": "NSH", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260319_mil_uta", + "sport": "NBA", + "season": "2026", + "date": "2026-03-19", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "UTA", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_mil", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260319_fla_edm", + "sport": "NHL", + "season": "2026", + "date": "2026-03-19", + "time": "7p", + "home_team": "Edmonton Oilers", + "away_team": "Florida Panthers", + "home_team_abbrev": "EDM", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -76717,10 +50169,35 @@ "canonical_id": "game_mlb_2026_20260320_ari_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-20T01:05:00Z", + "date": "2026-03-19", + "time": "6:05p", + "home_team": "Chicago White Sox", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "CHW", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260320_kc_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-03-19", + "time": "6:05p", + "home_team": "Cleveland Guardians", + "away_team": "Kansas City Royals", + "home_team_abbrev": "CLE", + "away_team_abbrev": "KC", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_kc", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -76728,10 +50205,17 @@ "canonical_id": "game_mlb_2026_20260320_tex_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-20T01:10:00Z", + "date": "2026-03-19", + "time": "6:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Texas Rangers", + "home_team_abbrev": "MIL", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_american_family_fields_of_phoenix", + "venue": "American Family Fields of Phoenix", + "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -76739,10 +50223,17 @@ "canonical_id": "game_mlb_2026_20260320_sea_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-20T01:10:00Z", + "date": "2026-03-19", + "time": "6:10p", + "home_team": "Oakland Athletics", + "away_team": "Seattle Mariners", + "home_team_abbrev": "OAK", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_hohokam_stadium", + "venue": "Hohokam Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -76750,153 +50241,107 @@ "canonical_id": "game_mlb_2026_20260320_chw_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-20T01:10:00Z", + "date": "2026-03-19", + "time": "6:10p", + "home_team": "San Diego Padres", + "away_team": "Chicago White Sox", + "home_team_abbrev": "SD", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260320_nyk_brk", + "canonical_id": "game_nba_2025_20260319_phi_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-20T04:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260320_gsw_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-20T04:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260320_car_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-20T04:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260320_njd_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-20T04:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260320_atl_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-20T05:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260320_bos_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-20T05:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260320_por_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-20T05:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260320_col_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-20T05:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260320_tor_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-20T06:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260320_fla_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-20T06:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260320_ana_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-20T06:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260320_tor_min", - "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-20T17:05:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_hammond_stadium", + "date": "2026-03-19", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "SAC", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_phi", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260320_det_phi", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20260319_ari_vgk", + "sport": "NHL", "season": "2026", - "game_datetime_utc": "2026-03-20T17:05:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_baycare_ballpark", + "date": "2026-03-19", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Utah Club", + "home_team_abbrev": "VGK", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_ari", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260319_buf_sj", + "sport": "NHL", + "season": "2026", + "date": "2026-03-19", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "SJ", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_buf", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260319_tb_van", + "sport": "NHL", + "season": "2026", + "date": "2026-03-19", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "VAN", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260319_phi_la", + "sport": "NHL", + "season": "2026", + "date": "2026-03-19", + "time": "7:30p", + "home_team": "Los Angeles Kings", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "LA", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_phi", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -76904,109 +50349,53 @@ "canonical_id": "game_mlb_2026_20260320_bos_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-20T17:05:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-03-20", + "time": "1:05p", + "home_team": "Tampa Bay Rays", + "away_team": "Boston Red Sox", + "home_team_abbrev": "TB", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_charlotte_sports_park", + "venue": "Charlotte Sports Park", + "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260320_stl_nym", + "canonical_id": "game_mlb_2026_20260320_det_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-20T17:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_clover_park", + "date": "2026-03-20", + "time": "1:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Detroit Tigers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_det", + "venue": "BayCare Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260320_chw_laa", + "canonical_id": "game_mlb_2026_20260320_tor_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-20T19:10:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_tempe_diablo_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260320_sea_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-20T20:05:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260320_cin_chc", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-20T20:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_sloan_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260320_chc_oak", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-20T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_hohokam_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260320_mil_ari", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-20T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260320_pit_atl", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-20T22:05:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_cooltoday_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260320_mia_hou", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-20T22:05:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260320_bal_nyy", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-20T22:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_george_m_steinbrenner_field", + "date": "2026-03-20", + "time": "1:05p", + "home_team": "Minnesota Twins", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "MIN", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tor", + "venue": "Hammond Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77014,10 +50403,341 @@ "canonical_id": "game_mlb_2026_20260320_wsn_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-20T23:10:00Z", + "date": "2026-03-20", + "time": "1:10p", + "home_team": "Miami Marlins", + "away_team": "Washington Nationals", + "home_team_abbrev": "MIA", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260320_stl_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-03-20", + "time": "1:10p", + "home_team": "New York Mets", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "NYM", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_stl", + "venue": "Clover Park", + "stadium_canonical_id": "stadium_mlb_spring_clover_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260320_chw_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-03-20", + "time": "12:10p", + "home_team": "Los Angeles Angels", + "away_team": "Chicago White Sox", + "home_team_abbrev": "LAA", + "away_team_abbrev": "CHW", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_chw", + "venue": "Tempe Diablo Stadium", + "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260320_chc_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-03-20", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Chicago Cubs", + "home_team_abbrev": "OAK", + "away_team_abbrev": "CHC", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_chc", + "venue": "Hohokam Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260320_sea_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-03-20", + "time": "1:05p", + "home_team": "Cleveland Guardians", + "away_team": "Seattle Mariners", + "home_team_abbrev": "CLE", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sea", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260320_cin_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-03-20", + "time": "1:05p", + "home_team": "Chicago Cubs", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "CHC", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_cin", + "venue": "Sloan Park", + "stadium_canonical_id": "stadium_mlb_spring_sloan_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260320_mil_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-03-20", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_mil", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260320_mia_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-03-20", + "time": "6:05p", + "home_team": "Houston Astros", + "away_team": "Miami Marlins", + "home_team_abbrev": "HOU", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_mia", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260320_pit_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-20", + "time": "6:05p", + "home_team": "Atlanta Braves", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "ATL", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_pit", + "venue": "CoolToday Park", + "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260320_bal_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-03-20", + "time": "6:35p", + "home_team": "New York Yankees", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "NYY", + "away_team_abbrev": "BAL", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_bal", + "venue": "George M. Steinbrenner Field", + "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260320_car_tor", + "sport": "NHL", + "season": "2026", + "date": "2026-03-20", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_car", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260320_njd_was", + "sport": "NHL", + "season": "2026", + "date": "2026-03-20", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "New Jersey Devils", + "home_team_abbrev": "WAS", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_njd", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260320_gsw_det", + "sport": "NBA", + "season": "2026", + "date": "2026-03-20", + "time": "7:30p", + "home_team": "Detroit Pistons", + "away_team": "Golden State Warriors", + "home_team_abbrev": "DET", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260320_nyk_brk", + "sport": "NBA", + "season": "2026", + "date": "2026-03-20", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "New York Knicks", + "home_team_abbrev": "BKN", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260320_bos_mem", + "sport": "NBA", + "season": "2026", + "date": "2026-03-20", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Boston Celtics", + "home_team_abbrev": "MEM", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_bos", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260320_por_min", + "sport": "NBA", + "season": "2026", + "date": "2026-03-20", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "Portland Blazers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_por", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260320_atl_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-03-20", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "HOU", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_atl", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260321_den_orl", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-20", + "time": "8p", + "home_team": "Orlando Orlando Pride", + "away_team": "Denver Denver Summit FC", + "home_team_abbrev": "ORL", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nwsl_orl", + "away_team_canonical_id": "team_nwsl_den", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260321_wsh_rgn", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-20", + "time": "8p", + "home_team": "Louisville Racing Louisville", + "away_team": "Washington Washington Spirit", + "home_team_abbrev": "RGN", + "away_team_abbrev": "WSH", + "home_team_canonical_id": "team_nwsl_rgn", + "away_team_canonical_id": "team_nwsl_wsh", + "venue": "Lynn Family Stadium", + "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -77025,10 +50745,17 @@ "canonical_id": "game_mlb_2026_20260321_sf_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-21T00:05:00Z", + "date": "2026-03-20", + "time": "5:05p", + "home_team": "Texas Rangers", + "away_team": "San Francisco Giants", + "home_team_abbrev": "TEX", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_surprise_stadium", + "venue": "Surprise Stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77036,10 +50763,71 @@ "canonical_id": "game_mlb_2026_20260321_kc_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-21T00:05:00Z", + "date": "2026-03-20", + "time": "5:05p", + "home_team": "San Francisco Giants", + "away_team": "Kansas City Royals", + "home_team_abbrev": "SF", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_scottsdale_stadium", + "venue": "Scottsdale Stadium", + "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260320_col_chi", + "sport": "NHL", + "season": "2026", + "date": "2026-03-20", + "time": "7:30p", + "home_team": "Chicago Blackhawks", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "CHI", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_col", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260320_tor_den", + "sport": "NBA", + "season": "2026", + "date": "2026-03-20", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Toronto Raptors", + "home_team_abbrev": "DEN", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_tor", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260320_fla_cgy", + "sport": "NHL", + "season": "2026", + "date": "2026-03-20", + "time": "7p", + "home_team": "Calgary Flames", + "away_team": "Florida Panthers", + "home_team_abbrev": "CGY", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -77047,10 +50835,17 @@ "canonical_id": "game_mlb_2026_20260321_sd_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-21T01:05:00Z", + "date": "2026-03-20", + "time": "6:05p", + "home_team": "Los Angeles Dodgers", + "away_team": "San Diego Padres", + "home_team_abbrev": "LAD", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77058,307 +50853,89 @@ "canonical_id": "game_mlb_2026_20260321_col_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-21T01:10:00Z", + "date": "2026-03-20", + "time": "6:10p", + "home_team": "San Diego Padres", + "away_team": "Colorado Rockies", + "home_team_abbrev": "SD", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260321_okc_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T04:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260321_mem_cho", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T04:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260321_lal_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T04:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260321_gsw_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T04:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260321_mil_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T04:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260321_sea_cbj", + "canonical_id": "game_nhl_2025_20260320_ana_ari", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T04:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "season": "2026", + "date": "2026-03-20", + "time": "8p", + "home_team": "Utah Club", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "ARI", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260321_bos_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T04:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "canonical_id": "game_nwsl_2026_20260321_sea_por", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-20", + "time": "7p", + "home_team": "Portland Portland Thorns", + "away_team": "Seattle Seattle Reign", + "home_team_abbrev": "POR", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nwsl_por", + "away_team_canonical_id": "team_nwsl_sea", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_nwsl_providence_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260321_nyi_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T04:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260321_tor_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T04:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "canonical_id": "game_mls_2026_20260321_clb_tor", + "sport": "MLS", + "season": "2026", + "date": "2026-03-21", + "time": "1p", + "home_team": "Toronto Toronto FC", + "away_team": "Columbus Columbus Crew", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CLB", + "home_team_canonical_id": "team_mls_tor", + "away_team_canonical_id": "team_mls_clb", + "venue": "BMO Field", + "stadium_canonical_id": "stadium_mls_bmo_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260321_wpg_pit", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T04:00:00Z", + "season": "2026", + "date": "2026-03-21", + "time": "1p", + "home_team": "Pittsburgh Penguins", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "PIT", + "away_team_abbrev": "WPG", "home_team_canonical_id": "team_nhl_pit", "away_team_canonical_id": "team_nhl_wpg", + "venue": "PPG Paints Arena", "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260321_cle_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T05:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260321_mia_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T05:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260321_ind_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T05:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260321_lac_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T05:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260321_dal_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T05:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260321_vgk_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T05:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260321_phi_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T06:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260321_tb_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T06:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260321_buf_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T07:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260321_phi_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T07:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260321_stl_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-21T07:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_rogers_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260321_tor_pit", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-21T17:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_lecom_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260321_phi_bal", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-21T17:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_ed_smith_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260321_nyy_det", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-21T17:05:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_publix_field_at_joker_marchant_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260321_nym_wsn", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-21T17:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260321_min_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-21T17:05:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_charlotte_sports_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260321_mia_stl", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-21T17:05:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -77366,10 +50943,125 @@ "canonical_id": "game_mlb_2026_20260321_atl_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-21T17:05:00Z", + "date": "2026-03-21", + "time": "1:05p", + "home_team": "Boston Red Sox", + "away_team": "Atlanta Braves", + "home_team_abbrev": "BOS", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_jetblue_park", + "venue": "JetBlue Park", + "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260321_phi_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-03-21", + "time": "1:05p", + "home_team": "Baltimore Orioles", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "BAL", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_phi", + "venue": "Ed Smith Stadium", + "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260321_min_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-03-21", + "time": "1:05p", + "home_team": "Tampa Bay Rays", + "away_team": "Minnesota Twins", + "home_team_abbrev": "TB", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_min", + "venue": "Charlotte Sports Park", + "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260321_tor_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-03-21", + "time": "1:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "PIT", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_tor", + "venue": "LECOM Park", + "stadium_canonical_id": "stadium_mlb_spring_lecom_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260321_nym_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-03-21", + "time": "1:05p", + "home_team": "Washington Nationals", + "away_team": "New York Mets", + "home_team_abbrev": "WSN", + "away_team_abbrev": "NYM", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nym", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260321_nyy_det", + "sport": "MLB", + "season": "2026", + "date": "2026-03-21", + "time": "1:05p", + "home_team": "Detroit Tigers", + "away_team": "New York Yankees", + "home_team_abbrev": "DET", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Publix Field at Joker Marchant Stadium", + "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260321_mia_stl", + "sport": "MLB", + "season": "2026", + "date": "2026-03-21", + "time": "1:05p", + "home_team": "St. Louis Cardinals", + "away_team": "Miami Marlins", + "home_team_abbrev": "STL", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_mia", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77377,10 +51069,35 @@ "canonical_id": "game_mlb_2026_20260321_hou_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-21T17:10:00Z", + "date": "2026-03-21", + "time": "1:10p", + "home_team": "New York Mets", + "away_team": "Houston Astros", + "home_team_abbrev": "NYM", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_clover_park", + "venue": "Clover Park", + "stadium_canonical_id": "stadium_mlb_spring_clover_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260321_vgk_nsh", + "sport": "NHL", + "season": "2026", + "date": "2026-03-21", + "time": "1p", + "home_team": "Nashville Predators", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "NSH", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -77388,10 +51105,17 @@ "canonical_id": "game_mlb_2026_20260321_oak_lad_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-21T19:05:00Z", + "date": "2026-03-21", + "time": "12:05p", + "home_team": "Los Angeles Dodgers", + "away_team": "Oakland Athletics", + "home_team_abbrev": "LAD", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77399,10 +51123,17 @@ "canonical_id": "game_mlb_2026_20260321_col_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-21T19:05:00Z", + "date": "2026-03-21", + "time": "12:05p", + "home_team": "Kansas City Royals", + "away_team": "Colorado Rockies", + "home_team_abbrev": "KC", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_surprise_stadium", + "venue": "Surprise Stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77410,10 +51141,89 @@ "canonical_id": "game_mlb_2026_20260321_cle_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-21T19:05:00Z", + "date": "2026-03-21", + "time": "12:05p", + "home_team": "San Francisco Giants", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "SF", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_scottsdale_stadium", + "venue": "Scottsdale Stadium", + "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260321_buf_la", + "sport": "NHL", + "season": "2026", + "date": "2026-03-21", + "time": "1p", + "home_team": "Los Angeles Kings", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "LA", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260321_dal_min", + "sport": "NHL", + "season": "2026", + "date": "2026-03-21", + "time": "3p", + "home_team": "Minnesota Wild", + "away_team": "Dallas Stars", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260321_phi_sj", + "sport": "NHL", + "season": "2026", + "date": "2026-03-21", + "time": "1p", + "home_team": "San Jose Sharks", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "SJ", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_phi", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260321_bos_hou", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-21", + "time": "3p", + "home_team": "Houston Houston Dash", + "away_team": "Boston Boston Legacy FC", + "home_team_abbrev": "HOU", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nwsl_hou", + "away_team_canonical_id": "team_nwsl_bos", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -77421,21 +51231,17 @@ "canonical_id": "game_mlb_2026_20260321_chw_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-21T20:05:00Z", + "date": "2026-03-21", + "time": "1:05p", + "home_team": "Cincinnati Reds", + "away_team": "Chicago White Sox", + "home_team_abbrev": "CIN", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260321_tex_ari", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-21T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77443,10 +51249,17 @@ "canonical_id": "game_mlb_2026_20260321_sd_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-21T20:10:00Z", + "date": "2026-03-21", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "San Diego Padres", + "home_team_abbrev": "MIL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_american_family_fields_of_phoenix", + "venue": "American Family Fields of Phoenix", + "stadium_canonical_id": "stadium_mlb_spring_american_family_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77454,164 +51267,557 @@ "canonical_id": "game_mlb_2026_20260321_chc_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-21T20:10:00Z", + "date": "2026-03-21", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Chicago Cubs", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260322_was_nyk", + "canonical_id": "game_mlb_2026_20260321_tex_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-03-21", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Texas Rangers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260321_chi_phi", + "sport": "MLS", + "season": "2026", + "date": "2026-03-21", + "time": "4:30p", + "home_team": "Philadelphia Philadelphia Union", + "away_team": "Chicago Chicago Fire", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_mls_phi", + "away_team_canonical_id": "team_mls_chi", + "venue": "Subaru Park", + "stadium_canonical_id": "stadium_mls_subaru_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260321_okc_was", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-22T04:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_madison_square_garden", + "season": "2026", + "date": "2026-03-21", + "time": "5p", + "home_team": "Washington Wizards", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "WAS", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_okc", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260322_min_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-22T04:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260322_tor_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-22T04:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260322_cbj_nyi", + "canonical_id": "game_nhl_2025_20260321_sea_cbj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-22T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_ubs_arena", + "season": "2026", + "date": "2026-03-21", + "time": "5p", + "home_team": "Columbus Blue Jackets", + "away_team": "Seattle Kraken", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260321_orl_nsh", + "sport": "MLS", + "season": "2026", + "date": "2026-03-21", + "time": "5p", + "home_team": "Nashville Nashville SC", + "away_team": "Orlando Orlando City", + "home_team_abbrev": "NSH", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_mls_nsh", + "away_team_canonical_id": "team_mls_orl", + "venue": "GEODIS Park", + "stadium_canonical_id": "stadium_mls_geodis_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260321_ncc_njy", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-21", + "time": "6:30p", + "home_team": "New Jersey NJ/NY Gotham FC", + "away_team": "North Carolina North Carolina Courage", + "home_team_abbrev": "NJY", + "away_team_abbrev": "NCC", + "home_team_canonical_id": "team_nwsl_njy", + "away_team_canonical_id": "team_nwsl_ncc", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_nwsl_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260321_lal_orl", + "sport": "NBA", + "season": "2026", + "date": "2026-03-21", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "ORL", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_lal", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260321_cle_nop", + "sport": "NBA", + "season": "2026", + "date": "2026-03-21", + "time": "6p", + "home_team": "New Orleans Pelicans", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "NOP", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_cle", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260321_mem_cho", + "sport": "NBA", + "season": "2026", + "date": "2026-03-21", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "CHA", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_mem", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260321_nyi_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-03-21", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "New York Islanders", + "home_team_abbrev": "MTL", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260321_stl_van", + "sport": "NHL", + "season": "2026", + "date": "2026-03-21", + "time": "4p", + "home_team": "Vancouver Canucks", + "away_team": "St. Louis Blues", + "home_team_abbrev": "VAN", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260321_tor_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-03-21", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "OTT", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260321_mtl_cin", + "sport": "MLS", + "season": "2026", + "date": "2026-03-21", + "time": "7:30p", + "home_team": "Cincinnati FC Cincinnati", + "away_team": "Montreal CF Montreal", + "home_team_abbrev": "CIN", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_mls_cin", + "away_team_canonical_id": "team_mls_mtl", + "venue": "TQL Stadium", + "stadium_canonical_id": "stadium_mls_tql_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260321_dc_atl", + "sport": "MLS", + "season": "2026", + "date": "2026-03-21", + "time": "7:30p", + "home_team": "Atlanta Atlanta United", + "away_team": "Washington D.C. United", + "home_team_abbrev": "ATL", + "away_team_abbrev": "DC", + "home_team_canonical_id": "team_mls_atl", + "away_team_canonical_id": "team_mls_dc", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260321_ny_clt", + "sport": "MLS", + "season": "2026", + "date": "2026-03-21", + "time": "7:30p", + "home_team": "Charlotte Charlotte FC", + "away_team": "New York New York Red Bulls", + "home_team_abbrev": "CLT", + "away_team_abbrev": "RB", + "home_team_canonical_id": "team_mls_clt", + "away_team_canonical_id": "team_mls_ny", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260321_gsw_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-03-21", + "time": "8p", + "home_team": "Atlanta Hawks", + "away_team": "Golden State Warriors", + "home_team_abbrev": "ATL", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_gsw", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260321_ind_sas", + "sport": "NBA", + "season": "2026", + "date": "2026-03-21", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Indiana Pacers", + "home_team_abbrev": "SAS", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_ind", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260321_mia_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-03-21", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Miami Heat", + "home_team_abbrev": "HOU", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_mia", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260321_bos_det", + "sport": "NHL", + "season": "2026", + "date": "2026-03-21", + "time": "8p", + "home_team": "Detroit Red Wings", + "away_team": "Boston Bruins", + "home_team_abbrev": "DET", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260322_hou_dal", + "sport": "MLS", + "season": "2026", + "date": "2026-03-21", + "time": "7:30p", + "home_team": "Dallas FC Dallas", + "away_team": "Houston Houston Dynamo", + "home_team_abbrev": "DAL", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mls_dal", + "away_team_canonical_id": "team_mls_hou", + "venue": "Toyota Stadium", + "stadium_canonical_id": "stadium_mls_toyota_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260322_ne_stl", + "sport": "MLS", + "season": "2026", + "date": "2026-03-21", + "time": "7:30p", + "home_team": "St. Louis St. Louis City SC", + "away_team": "New England New England Revolution", + "home_team_abbrev": "STL", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_mls_stl", + "away_team_canonical_id": "team_mls_ne", + "venue": "CITYPARK", + "stadium_canonical_id": "stadium_mls_citypark", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260322_col_skc", + "sport": "MLS", + "season": "2026", + "date": "2026-03-21", + "time": "7:30p", + "home_team": "Kansas City Sporting Kansas City", + "away_team": "Colorado Colorado Rapids", + "home_team_abbrev": "SKC", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mls_skc", + "away_team_canonical_id": "team_mls_col", + "venue": "Children's Mercy Park", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260322_lafc_aus", + "sport": "MLS", + "season": "2026", + "date": "2026-03-21", + "time": "7:30p", + "home_team": "Austin Austin FC", + "away_team": "Los Angeles Los Angeles FC", + "home_team_abbrev": "AUS", + "away_team_abbrev": "LAFC", + "home_team_canonical_id": "team_mls_aus", + "away_team_canonical_id": "team_mls_lafc", + "venue": "Q2 Stadium", + "stadium_canonical_id": "stadium_mls_q2_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260321_lac_dal", + "sport": "NBA", + "season": "2026", + "date": "2026-03-21", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "DAL", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_lac", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260322_ang_bay", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-21", + "time": "5:45p", + "home_team": "San Francisco Bay FC", + "away_team": "Los Angeles Angel City FC", + "home_team_abbrev": "BAY", + "away_team_abbrev": "ANG", + "home_team_canonical_id": "team_nwsl_bay", + "away_team_canonical_id": "team_nwsl_ang", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_nwsl_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260321_phi_uta", + "sport": "NBA", + "season": "2026", + "date": "2026-03-21", + "time": "7:30p", + "home_team": "Utah Jazz", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "UTA", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_phi", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260321_mil_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-03-21", + "time": "10p", + "home_team": "Phoenix Suns", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "PHX", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_mil", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260321_tb_edm", + "sport": "NHL", + "season": "2026", + "date": "2026-03-21", + "time": "8p", + "home_team": "Edmonton Oilers", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "EDM", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260322_sj_van", + "sport": "MLS", + "season": "2026", + "date": "2026-03-21", + "time": "7:30p", + "home_team": "Vancouver Vancouver Whitecaps", + "away_team": "San Jose San Jose Earthquakes", + "home_team_abbrev": "VAN", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_mls_van", + "away_team_canonical_id": "team_mls_sj", + "venue": "BC Place", + "stadium_canonical_id": "stadium_mls_bc_place", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260322_wpg_nyr", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-22T04:00:00Z", + "season": "2026", + "date": "2026-03-22", + "time": "12p", + "home_team": "New York Rangers", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "NYR", + "away_team_abbrev": "WPG", "home_team_canonical_id": "team_nhl_nyr", "away_team_canonical_id": "team_nhl_wpg", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260322_car_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-22T04:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260322_col_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-22T04:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260322_nsh_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-22T05:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260322_vgk_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-22T05:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260322_por_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-22T06:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260322_tb_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-22T06:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260322_la_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-22T06:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260322_brk_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-22T07:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260322_buf_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-22T07:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -77619,32 +51825,53 @@ "canonical_id": "game_mlb_2026_20260322_stl_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-22T16:05:00Z", + "date": "2026-03-22", + "time": "12:05p", + "home_team": "Houston Astros", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "HOU", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_cacti_park_of_the_palm_beaches", + "venue": "CACTI Park of the Palm Beaches", + "stadium_canonical_id": "stadium_mlb_spring_cacti_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260322_phi_nyy", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20260322_col_was", + "sport": "NHL", "season": "2026", - "game_datetime_utc": "2026-03-22T17:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_george_m_steinbrenner_field", + "date": "2026-03-22", + "time": "12:30p", + "home_team": "Washington Capitals", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "WAS", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_col", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260322_bos_pit", - "sport": "MLB", + "canonical_id": "game_mls_2026_20260322_mia_nyc", + "sport": "MLS", "season": "2026", - "game_datetime_utc": "2026-03-22T17:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_lecom_park", + "date": "2026-03-22", + "time": "1p", + "home_team": "New York New York City FC", + "away_team": "Miami Inter Miami", + "home_team_abbrev": "NYC", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mls_nyc", + "away_team_canonical_id": "team_mls_mia", + "venue": "Yankee Stadium", + "stadium_canonical_id": "stadium_mls_yankee_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -77652,10 +51879,53 @@ "canonical_id": "game_mlb_2026_20260322_atl_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-22T17:05:00Z", + "date": "2026-03-22", + "time": "1:05p", + "home_team": "Minnesota Twins", + "away_team": "Atlanta Braves", + "home_team_abbrev": "MIN", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_hammond_stadium", + "venue": "Hammond Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260322_bos_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-03-22", + "time": "1:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "Boston Red Sox", + "home_team_abbrev": "PIT", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_bos", + "venue": "LECOM Park", + "stadium_canonical_id": "stadium_mlb_spring_lecom_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260322_phi_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-03-22", + "time": "1:05p", + "home_team": "New York Yankees", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "NYY", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_phi", + "venue": "George M. Steinbrenner Field", + "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77663,10 +51933,17 @@ "canonical_id": "game_mlb_2026_20260322_tbr_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-22T17:07:00Z", + "date": "2026-03-22", + "time": "1:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "TOR", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_td_ballpark", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "TD Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77674,10 +51951,17 @@ "canonical_id": "game_mlb_2026_20260322_nym_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-22T17:10:00Z", + "date": "2026-03-22", + "time": "1:10p", + "home_team": "Miami Marlins", + "away_team": "New York Mets", + "home_team_abbrev": "MIA", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_roger_dean_chevrolet_stadium", + "venue": "Roger Dean Chevrolet Stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77685,10 +51969,89 @@ "canonical_id": "game_mlb_2026_20260322_wsn_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-22T17:35:00Z", + "date": "2026-03-22", + "time": "1:35p", + "home_team": "Baltimore Orioles", + "away_team": "Washington Nationals", + "home_team_abbrev": "BAL", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260322_kcc_chi", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-22", + "time": "1p", + "home_team": "Chicago Chicago Red Stars", + "away_team": "Kansas City Kansas City Current", + "home_team_abbrev": "CHI", + "away_team_abbrev": "KCC", + "home_team_canonical_id": "team_nwsl_chi", + "away_team_canonical_id": "team_nwsl_kcc", + "venue": "Northwestern Medicine Field at Martin Stadium", + "stadium_canonical_id": "stadium_nwsl_northwestern_medicine_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260322_sea_min", + "sport": "MLS", + "season": "2026", + "date": "2026-03-22", + "time": "1:30p", + "home_team": "Minnesota Minnesota United", + "away_team": "Seattle Seattle Sounders", + "home_team_abbrev": "MIN", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mls_min", + "away_team_canonical_id": "team_mls_sea", + "venue": "Allianz Field", + "stadium_canonical_id": "stadium_mls_allianz_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260322_car_pit", + "sport": "NHL", + "season": "2026", + "date": "2026-03-22", + "time": "3p", + "home_team": "Pittsburgh Penguins", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_car", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260322_nsh_chi", + "sport": "NHL", + "season": "2026", + "date": "2026-03-22", + "time": "2p", + "home_team": "Chicago Blackhawks", + "away_team": "Nashville Predators", + "home_team_abbrev": "CHI", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -77696,10 +52059,17 @@ "canonical_id": "game_mlb_2026_20260322_sea_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-22T19:05:00Z", + "date": "2026-03-22", + "time": "12:05p", + "home_team": "Chicago White Sox", + "away_team": "Seattle Mariners", + "home_team_abbrev": "CHW", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_camelback_ranch", + "venue": "Camelback Ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77707,10 +52077,17 @@ "canonical_id": "game_mlb_2026_20260322_mil_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-22T19:05:00Z", + "date": "2026-03-22", + "time": "12:05p", + "home_team": "Chicago Cubs", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "CHC", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_sloan_park", + "venue": "Sloan Park", + "stadium_canonical_id": "stadium_mlb_spring_sloan_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77718,10 +52095,17 @@ "canonical_id": "game_mlb_2026_20260322_cin_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-22T19:05:00Z", + "date": "2026-03-22", + "time": "12:05p", + "home_team": "Cleveland Guardians", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_goodyear_ballpark", + "venue": "Goodyear Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77729,10 +52113,17 @@ "canonical_id": "game_mlb_2026_20260322_oak_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-22T20:10:00Z", + "date": "2026-03-22", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Oakland Athletics", + "home_team_abbrev": "COL", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77740,10 +52131,251 @@ "canonical_id": "game_mlb_2026_20260322_ari_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-22T20:10:00Z", + "date": "2026-03-22", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "SD", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260322_lag_por", + "sport": "MLS", + "season": "2026", + "date": "2026-03-22", + "time": "1:30p", + "home_team": "Portland Portland Timbers", + "away_team": "Los Angeles LA Galaxy", + "home_team_abbrev": "POR", + "away_team_abbrev": "LAG", + "home_team_canonical_id": "team_mls_por", + "away_team_canonical_id": "team_mls_lag", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_mls_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260322_por_den", + "sport": "NBA", + "season": "2026", + "date": "2026-03-22", + "time": "3p", + "home_team": "Denver Nuggets", + "away_team": "Portland Blazers", + "home_team_abbrev": "DEN", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_por", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260322_brk_sac", + "sport": "NBA", + "season": "2026", + "date": "2026-03-22", + "time": "3p", + "home_team": "Sacramento Kings", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "SAC", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_brk", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260322_slc_sd", + "sport": "MLS", + "season": "2026", + "date": "2026-03-22", + "time": "4p", + "home_team": "San Diego San Diego FC", + "away_team": "Salt Lake Real Salt Lake", + "home_team_abbrev": "SD", + "away_team_abbrev": "SLC", + "home_team_canonical_id": "team_mls_sd", + "away_team_canonical_id": "team_mls_slc", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260322_vgk_dal", + "sport": "NHL", + "season": "2026", + "date": "2026-03-22", + "time": "6p", + "home_team": "Dallas Stars", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "DAL", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260322_cbj_nyi", + "sport": "NHL", + "season": "2026", + "date": "2026-03-22", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "NYI", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260322_sdw_uta", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-22", + "time": "5p", + "home_team": "Utah Utah Royals", + "away_team": "San Diego San Diego Wave", + "home_team_abbrev": "UTA", + "away_team_abbrev": "SDW", + "home_team_canonical_id": "team_nwsl_uta", + "away_team_canonical_id": "team_nwsl_sdw", + "venue": "America First Field", + "stadium_canonical_id": "stadium_nwsl_america_first_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260322_was_nyk", + "sport": "NBA", + "season": "2026", + "date": "2026-03-22", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Washington Wizards", + "home_team_abbrev": "NYK", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_was", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260322_min_bos", + "sport": "NBA", + "season": "2026", + "date": "2026-03-22", + "time": "8p", + "home_team": "Boston Celtics", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "BOS", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_min", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260322_buf_ana", + "sport": "NHL", + "season": "2026", + "date": "2026-03-22", + "time": "5p", + "home_team": "Anaheim Ducks", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "ANA", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260322_tb_cgy", + "sport": "NHL", + "season": "2026", + "date": "2026-03-22", + "time": "6p", + "home_team": "Calgary Flames", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "CGY", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260322_tor_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-03-22", + "time": "9p", + "home_team": "Phoenix Suns", + "away_team": "Toronto Raptors", + "home_team_abbrev": "PHX", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_tor", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260322_la_ari", + "sport": "NHL", + "season": "2026", + "date": "2026-03-22", + "time": "7p", + "home_team": "Utah Club", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "ARI", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_la", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -77751,131 +52383,17 @@ "canonical_id": "game_mlb_2026_20260323_lad_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-23T01:07:00Z", + "date": "2026-03-22", + "time": "6:07p", + "home_team": "Los Angeles Angels", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "LAA", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_lad", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260323_mem_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-23T04:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260323_lal_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-23T04:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260323_ind_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-23T04:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260323_sas_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-23T04:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260323_ott_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-23T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260323_hou_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-23T05:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260323_gsw_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-23T05:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260323_tor_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-23T06:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260323_okc_phi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-23T07:00:00Z", - "home_team_canonical_id": "team_nba_phi", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260323_brk_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-23T07:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260323_mil_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-23T07:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77883,32 +52401,17 @@ "canonical_id": "game_mlb_2026_20260323_tbr_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-23T16:05:00Z", + "date": "2026-03-23", + "time": "12:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_baycare_ballpark", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260323_min_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-23T17:05:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_jetblue_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260323_bal_wsn", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-23T17:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_nationals_park", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "BayCare Ballpark", + "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77916,10 +52419,53 @@ "canonical_id": "game_mlb_2026_20260323_atl_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-23T17:05:00Z", + "date": "2026-03-23", + "time": "1:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "Atlanta Braves", + "home_team_abbrev": "PIT", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_lecom_park", + "venue": "LECOM Park", + "stadium_canonical_id": "stadium_mlb_spring_lecom_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260323_min_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-03-23", + "time": "1:05p", + "home_team": "Boston Red Sox", + "away_team": "Minnesota Twins", + "home_team_abbrev": "BOS", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_min", + "venue": "JetBlue Park", + "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260323_bal_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-03-23", + "time": "1:05p", + "home_team": "Washington Nationals", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "WSN", + "away_team_abbrev": "BAL", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_bal", + "venue": "Nationals Park", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77927,10 +52473,17 @@ "canonical_id": "game_mlb_2026_20260323_nyy_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-23T19:05:00Z", + "date": "2026-03-23", + "time": "12:05p", + "home_team": "Chicago Cubs", + "away_team": "New York Yankees", + "home_team_abbrev": "CHC", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_sloan_park", + "venue": "Sloan Park", + "stadium_canonical_id": "stadium_mlb_spring_sloan_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77938,10 +52491,17 @@ "canonical_id": "game_mlb_2026_20260323_chw_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-23T19:05:00Z", + "date": "2026-03-23", + "time": "12:05p", + "home_team": "Oakland Athletics", + "away_team": "Chicago White Sox", + "home_team_abbrev": "OAK", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_hohokam_stadium", + "venue": "Hohokam Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77949,10 +52509,125 @@ "canonical_id": "game_mlb_2026_20260323_sea_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-23T19:10:00Z", + "date": "2026-03-23", + "time": "12:10p", + "home_team": "San Diego Padres", + "away_team": "Seattle Mariners", + "home_team_abbrev": "SD", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_peoria_sports_complex", + "venue": "Peoria Sports Complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260323_okc_phi", + "sport": "NBA", + "season": "2026", + "date": "2026-03-23", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "PHI", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_okc", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260323_mem_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-03-23", + "time": "7p", + "home_team": "Atlanta Hawks", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_mem", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260323_lal_det", + "sport": "NBA", + "season": "2026", + "date": "2026-03-23", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "DET", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_lal", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260323_ind_orl", + "sport": "NBA", + "season": "2026", + "date": "2026-03-23", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Indiana Pacers", + "home_team_abbrev": "ORL", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_ind", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260323_sas_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-03-23", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "MIA", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_sas", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260323_ott_nyr", + "sport": "NHL", + "season": "2026", + "date": "2026-03-23", + "time": "7:30p", + "home_team": "New York Rangers", + "away_team": "Ottawa Senators", + "home_team_abbrev": "NYR", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -77960,10 +52635,35 @@ "canonical_id": "game_mlb_2026_20260323_cin_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-23T23:40:00Z", + "date": "2026-03-23", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_cin", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260323_hou_chi", + "sport": "NBA", + "season": "2026", + "date": "2026-03-23", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Houston Rockets", + "home_team_abbrev": "CHI", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_hou", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -77971,10 +52671,35 @@ "canonical_id": "game_mlb_2026_20260324_kc_tex_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-24T00:05:00Z", + "date": "2026-03-23", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Kansas City Royals", + "home_team_abbrev": "TEX", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_kc", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260323_tor_uta", + "sport": "NBA", + "season": "2026", + "date": "2026-03-23", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Toronto Raptors", + "home_team_abbrev": "UTA", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_tor", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -77982,10 +52707,17 @@ "canonical_id": "game_mlb_2026_20260324_laa_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-24T01:10:00Z", + "date": "2026-03-23", + "time": "6:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "LAD", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_laa", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -77993,10 +52725,35 @@ "canonical_id": "game_mlb_2026_20260324_det_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-24T01:10:00Z", + "date": "2026-03-23", + "time": "6:10p", + "home_team": "Colorado Rockies", + "away_team": "Detroit Tigers", + "home_team_abbrev": "COL", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260323_gsw_dal", + "sport": "NBA", + "season": "2026", + "date": "2026-03-23", + "time": "8:30p", + "home_team": "Dallas Mavericks", + "away_team": "Golden State Warriors", + "home_team_abbrev": "DAL", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_gsw", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -78004,219 +52761,53 @@ "canonical_id": "game_mlb_2026_20260324_cle_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-24T01:40:00Z", + "date": "2026-03-23", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_cle", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260324_sac_cho", + "canonical_id": "game_nba_2025_20260323_brk_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-24T04:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_spectrum_center", + "season": "2026", + "date": "2026-03-23", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "POR", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_brk", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260324_nop_nyk", + "canonical_id": "game_nba_2025_20260323_mil_lac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-24T04:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260324_den_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-24T04:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260324_tor_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-24T04:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260324_ott_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-24T04:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260324_sea_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-24T04:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260324_car_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-24T04:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260324_chi_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-24T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260324_cbj_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-24T04:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260324_col_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-24T04:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260324_min_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-24T04:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_amalie_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260324_orl_cle", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-24T05:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260324_njd_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-24T05:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260324_sj_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-24T05:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260324_was_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-24T05:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260324_vgk_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-24T05:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260324_la_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-24T06:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260324_edm_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-24T06:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260324_ana_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-24T07:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_rogers_arena", + "season": "2026", + "date": "2026-03-23", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "LAC", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_mil", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -78224,10 +52815,17 @@ "canonical_id": "game_mlb_2026_20260324_tbr_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-24T16:05:00Z", + "date": "2026-03-24", + "time": "12:05p", + "home_team": "Atlanta Braves", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "ATL", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_cooltoday_park", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "CoolToday Park", + "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -78235,10 +52833,17 @@ "canonical_id": "game_mlb_2026_20260324_bos_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-24T17:05:00Z", + "date": "2026-03-24", + "time": "1:05p", + "home_team": "Minnesota Twins", + "away_team": "Boston Red Sox", + "home_team_abbrev": "MIN", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_hammond_stadium", + "venue": "Hammond Stadium", + "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -78246,10 +52851,17 @@ "canonical_id": "game_mlb_2026_20260324_kc_tex_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-24T18:05:00Z", + "date": "2026-03-24", + "time": "1:05p", + "home_team": "Texas Rangers", + "away_team": "Kansas City Royals", + "home_team_abbrev": "TEX", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_kc", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -78257,10 +52869,17 @@ "canonical_id": "game_mlb_2026_20260324_nyy_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-24T19:05:00Z", + "date": "2026-03-24", + "time": "12:05p", + "home_team": "Chicago Cubs", + "away_team": "New York Yankees", + "home_team_abbrev": "CHC", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_sloan_park", + "venue": "Sloan Park", + "stadium_canonical_id": "stadium_mlb_spring_sloan_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -78268,10 +52887,17 @@ "canonical_id": "game_mlb_2026_20260324_det_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-24T19:10:00Z", + "date": "2026-03-24", + "time": "12:10p", + "home_team": "Colorado Rockies", + "away_team": "Detroit Tigers", + "home_team_abbrev": "COL", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_salt_river_fields_at_talking_stick", + "venue": "Salt River Fields at Talking Stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -78279,10 +52905,17 @@ "canonical_id": "game_mlb_2026_20260324_cle_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-24T19:40:00Z", + "date": "2026-03-24", + "time": "12:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_cle", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -78290,10 +52923,287 @@ "canonical_id": "game_mlb_2026_20260324_cin_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-24T21:10:00Z", + "date": "2026-03-24", + "time": "4:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_cin", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260324_sac_cho", + "sport": "NBA", + "season": "2026", + "date": "2026-03-24", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Sacramento Kings", + "home_team_abbrev": "CHA", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_sac", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260324_tor_bos", + "sport": "NHL", + "season": "2026", + "date": "2026-03-24", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_tor", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260324_car_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-03-24", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "MTL", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_car", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260324_col_pit", + "sport": "NHL", + "season": "2026", + "date": "2026-03-24", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "PIT", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_col", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260324_sea_fla", + "sport": "NHL", + "season": "2026", + "date": "2026-03-24", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Seattle Kraken", + "home_team_abbrev": "FLA", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260324_cbj_phi", + "sport": "NHL", + "season": "2026", + "date": "2026-03-24", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260324_chi_nyi", + "sport": "NHL", + "season": "2026", + "date": "2026-03-24", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "NYI", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_chi", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260324_ott_det", + "sport": "NHL", + "season": "2026", + "date": "2026-03-24", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Ottawa Senators", + "home_team_abbrev": "DET", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260324_nop_nyk", + "sport": "NBA", + "season": "2026", + "date": "2026-03-24", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "NYK", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_nop", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260324_min_tb", + "sport": "NHL", + "season": "2026", + "date": "2026-03-24", + "time": "7:30p", + "home_team": "Tampa Bay Lightning", + "away_team": "Minnesota Wild", + "home_team_abbrev": "TB", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_min", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260324_orl_cle", + "sport": "NBA", + "season": "2026", + "date": "2026-03-24", + "time": "7p", + "home_team": "Cleveland Cavaliers", + "away_team": "Orlando Magic", + "home_team_abbrev": "CLE", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_orl", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260324_njd_dal", + "sport": "NHL", + "season": "2026", + "date": "2026-03-24", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "New Jersey Devils", + "home_team_abbrev": "DAL", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_njd", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260324_sj_nsh", + "sport": "NHL", + "season": "2026", + "date": "2026-03-24", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "San Jose Sharks", + "home_team_abbrev": "NSH", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260324_was_stl", + "sport": "NHL", + "season": "2026", + "date": "2026-03-24", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Washington Capitals", + "home_team_abbrev": "STL", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_was", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260324_vgk_wpg", + "sport": "NHL", + "season": "2026", + "date": "2026-03-24", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "WPG", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -78301,164 +53211,287 @@ "canonical_id": "game_mlb_2026_20260325_laa_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-25T00:10:00Z", + "date": "2026-03-24", + "time": "5:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "LAD", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_laa", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260325_atl_det", + "canonical_id": "game_nhl_2025_20260324_la_cgy", + "sport": "NHL", + "season": "2026", + "date": "2026-03-24", + "time": "7p", + "home_team": "Calgary Flames", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "CGY", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_la", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260324_edm_ari", + "sport": "NHL", + "season": "2026", + "date": "2026-03-24", + "time": "7:30p", + "home_team": "Utah Club", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260324_ana_van", + "sport": "NHL", + "season": "2026", + "date": "2026-03-24", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "VAN", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260324_den_phx", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-25T04:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "season": "2026", + "date": "2026-03-24", + "time": "11p", + "home_team": "Phoenix Suns", + "away_team": "Denver Nuggets", + "home_team_abbrev": "PHX", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_den", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260325_lal_ind", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-25T04:00:00Z", + "season": "2026", + "date": "2026-03-25", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "IND", + "away_team_abbrev": "LAL", "home_team_canonical_id": "team_nba_ind", "away_team_canonical_id": "team_nba_lal", + "venue": "Gainbridge Fieldhouse", "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260325_okc_bos", + "canonical_id": "game_nba_2025_20260325_atl_det", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-25T04:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260325_bos_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-25T04:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260325_nyr_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-25T04:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260325_mia_cle", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-25T05:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260325_sas_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-25T05:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260325_hou_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-25T05:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260325_was_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-25T06:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260325_dal_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-25T06:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_ball_arena", + "season": "2026", + "date": "2026-03-25", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "DET", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_atl", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260325_chi_phi", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-25T07:00:00Z", + "season": "2026", + "date": "2026-03-25", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Chicago Bulls", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CHI", "home_team_canonical_id": "team_nba_phi", "away_team_canonical_id": "team_nba_chi", + "venue": "Intuit Dome", "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260325_brk_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-25T07:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_chase_center", + "canonical_id": "game_nhl_2025_20260325_bos_buf", + "sport": "NHL", + "season": "2026", + "date": "2026-03-25", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Boston Bruins", + "home_team_abbrev": "BUF", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_bos", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260325_mil_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-25T07:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_moda_center", + "canonical_id": "game_nwsl_2026_20260325_uta_wsh", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-25", + "time": "7p", + "home_team": "Washington Washington Spirit", + "away_team": "Utah Utah Royals", + "home_team_abbrev": "WSH", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nwsl_wsh", + "away_team_canonical_id": "team_nwsl_uta", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_nwsl_audi_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260325_tor_lac", + "canonical_id": "game_nwsl_2026_20260325_den_njy", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-25", + "time": "7p", + "home_team": "New Jersey NJ/NY Gotham FC", + "away_team": "Denver Denver Summit FC", + "home_team_abbrev": "NJY", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nwsl_njy", + "away_team_canonical_id": "team_nwsl_den", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_nwsl_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260325_okc_bos", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-25T07:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_intuit_dome", + "season": "2026", + "date": "2026-03-25", + "time": "7:30p", + "home_team": "Boston Celtics", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "BOS", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_okc", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260325_mia_cle", + "sport": "NBA", + "season": "2026", + "date": "2026-03-25", + "time": "6:30p", + "home_team": "Cleveland Cavaliers", + "away_team": "Miami Heat", + "home_team_abbrev": "CLE", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_mia", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260325_nyr_tor", + "sport": "NHL", + "season": "2026", + "date": "2026-03-25", + "time": "7:30p", + "home_team": "Toronto Maple Leafs", + "away_team": "New York Rangers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260325_sas_mem", + "sport": "NBA", + "season": "2026", + "date": "2026-03-25", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "MEM", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_sas", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260326_orl_chi", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-25", + "time": "7p", + "home_team": "Chicago Chicago Red Stars", + "away_team": "Orlando Orlando Pride", + "home_team_abbrev": "CHI", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nwsl_chi", + "away_team_canonical_id": "team_nwsl_orl", + "venue": "Northwestern Medicine Field at Martin Stadium", + "stadium_canonical_id": "stadium_nwsl_northwestern_medicine_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -78466,186 +53499,161 @@ "canonical_id": "game_mlb_2026_20260326_nyy_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-26T00:05:00Z", + "date": "2026-03-25", + "time": "5:05p", + "home_team": "San Francisco Giants", + "away_team": "New York Yankees", + "home_team_abbrev": "SF", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260326_nyk_cho", + "canonical_id": "game_nba_2025_20260325_was_uta", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-26T04:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_spectrum_center", + "season": "2026", + "date": "2026-03-25", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Washington Wizards", + "home_team_abbrev": "UTA", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_was", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260326_nop_det", + "canonical_id": "game_nwsl_2026_20260326_kcc_sea", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-25", + "time": "6p", + "home_team": "Seattle Seattle Reign", + "away_team": "Kansas City Kansas City Current", + "home_team_abbrev": "SEA", + "away_team_abbrev": "KCC", + "home_team_canonical_id": "team_nwsl_sea", + "away_team_canonical_id": "team_nwsl_kcc", + "venue": "ONE Spokane Stadium", + "stadium_canonical_id": "stadium_nwsl_one_spokane_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260325_hou_min", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-26T04:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "season": "2026", + "date": "2026-03-25", + "time": "8:30p", + "home_team": "Minnesota Timberwolves", + "away_team": "Houston Rockets", + "home_team_abbrev": "MIN", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_hou", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260326_sac_orl", + "canonical_id": "game_nba_2025_20260325_dal_den", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-26T04:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_kia_center", + "season": "2026", + "date": "2026-03-25", + "time": "8p", + "home_team": "Denver Nuggets", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "DEN", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_dal", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260326_min_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-26T04:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "canonical_id": "game_nba_2025_20260325_brk_gsw", + "sport": "NBA", + "season": "2026", + "date": "2026-03-25", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "GSW", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_brk", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260326_cbj_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-26T04:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_bell_centre", + "canonical_id": "game_nba_2025_20260325_mil_por", + "sport": "NBA", + "season": "2026", + "date": "2026-03-25", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "POR", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_mil", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260326_dal_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-26T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_ubs_arena", + "canonical_id": "game_nwsl_2026_20260326_por_sdw", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-25", + "time": "7p", + "home_team": "San Diego San Diego Wave", + "away_team": "Portland Portland Thorns", + "home_team_abbrev": "SDW", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nwsl_sdw", + "away_team_canonical_id": "team_nwsl_por", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260326_pit_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-26T04:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260326_chi_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-26T04:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260326_sea_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-26T04:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_amalie_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260326_njd_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260326_sj_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260326_col_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-26T05:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260326_ana_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-26T06:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260326_was_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-26T06:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260326_la_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-26T07:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_rogers_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260326_edm_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-26T07:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "canonical_id": "game_nba_2025_20260325_tor_lac", + "sport": "NBA", + "season": "2026", + "date": "2026-03-25", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Toronto Raptors", + "home_team_abbrev": "LAC", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_tor", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -78653,10 +53661,17 @@ "canonical_id": "game_mlb_2026_20260326_pit_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-26T17:15:00Z", + "date": "2026-03-26", + "time": "1:15p", + "home_team": "New York Mets", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "NYM", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_pit", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -78664,10 +53679,17 @@ "canonical_id": "game_mlb_2026_20260326_chw_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-26T18:10:00Z", + "date": "2026-03-26", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Chicago White Sox", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_chw", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -78675,10 +53697,17 @@ "canonical_id": "game_mlb_2026_20260326_wsn_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-26T18:20:00Z", + "date": "2026-03-26", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Washington Nationals", + "home_team_abbrev": "CHC", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -78686,10 +53715,17 @@ "canonical_id": "game_mlb_2026_20260326_min_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-26T19:05:00Z", + "date": "2026-03-26", + "time": "3:05p", + "home_team": "Baltimore Orioles", + "away_team": "Minnesota Twins", + "home_team_abbrev": "BAL", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_min", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -78697,10 +53733,17 @@ "canonical_id": "game_mlb_2026_20260326_laa_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-26T20:10:00Z", + "date": "2026-03-26", + "time": "3:10p", + "home_team": "Houston Astros", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "HOU", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_laa", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -78708,10 +53751,17 @@ "canonical_id": "game_mlb_2026_20260326_det_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-26T20:10:00Z", + "date": "2026-03-26", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Detroit Tigers", + "home_team_abbrev": "SD", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_det", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -78719,21 +53769,17 @@ "canonical_id": "game_mlb_2026_20260326_bos_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-26T20:10:00Z", + "date": "2026-03-26", + "time": "4:10p", + "home_team": "Cincinnati Reds", + "away_team": "Boston Red Sox", + "home_team_abbrev": "CIN", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_bos", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260326_tex_phi", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-26T20:15:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -78741,10 +53787,251 @@ "canonical_id": "game_mlb_2026_20260326_tbr_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-26T20:15:00Z", + "date": "2026-03-26", + "time": "3:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "STL", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260326_tex_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-03-26", + "time": "4:15p", + "home_team": "Philadelphia Phillies", + "away_team": "Texas Rangers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Citizens Bank Park", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260326_nyk_cho", + "sport": "NBA", + "season": "2026", + "date": "2026-03-26", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "New York Knicks", + "home_team_abbrev": "CHA", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260326_sac_orl", + "sport": "NBA", + "season": "2026", + "date": "2026-03-26", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Sacramento Kings", + "home_team_abbrev": "ORL", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_sac", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260326_nop_det", + "sport": "NBA", + "season": "2026", + "date": "2026-03-26", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "DET", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_nop", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260326_pit_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-03-26", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "OTT", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_pit", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260326_sea_tb", + "sport": "NHL", + "season": "2026", + "date": "2026-03-26", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Seattle Kraken", + "home_team_abbrev": "TB", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260326_dal_nyi", + "sport": "NHL", + "season": "2026", + "date": "2026-03-26", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Dallas Stars", + "home_team_abbrev": "NYI", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_dal", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260326_cbj_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-03-26", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "MTL", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260326_min_fla", + "sport": "NHL", + "season": "2026", + "date": "2026-03-26", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Minnesota Wild", + "home_team_abbrev": "FLA", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_min", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260326_chi_phi", + "sport": "NHL", + "season": "2026", + "date": "2026-03-26", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260326_col_wpg", + "sport": "NHL", + "season": "2026", + "date": "2026-03-26", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "WPG", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_col", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260326_njd_nsh", + "sport": "NHL", + "season": "2026", + "date": "2026-03-26", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "New Jersey Devils", + "home_team_abbrev": "NSH", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_njd", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260326_sj_stl", + "sport": "NHL", + "season": "2026", + "date": "2026-03-26", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "San Jose Sharks", + "home_team_abbrev": "STL", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -78752,10 +54039,89 @@ "canonical_id": "game_mlb_2026_20260327_ari_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-27T00:30:00Z", + "date": "2026-03-26", + "time": "5:30p", + "home_team": "Los Angeles Dodgers", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "LAD", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_ari", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260326_ana_cgy", + "sport": "NHL", + "season": "2026", + "date": "2026-03-26", + "time": "7p", + "home_team": "Calgary Flames", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "CGY", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260326_was_ari", + "sport": "NHL", + "season": "2026", + "date": "2026-03-26", + "time": "7p", + "home_team": "Utah Club", + "away_team": "Washington Capitals", + "home_team_abbrev": "ARI", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_was", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260326_edm_vgk", + "sport": "NHL", + "season": "2026", + "date": "2026-03-26", + "time": "6:30p", + "home_team": "Vegas Golden Knights", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "VGK", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_edm", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260326_la_van", + "sport": "NHL", + "season": "2026", + "date": "2026-03-26", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "VAN", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_la", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -78763,142 +54129,17 @@ "canonical_id": "game_mlb_2026_20260327_cle_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-27T02:10:00Z", + "date": "2026-03-26", + "time": "7:10p", + "home_team": "Seattle Mariners", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260327_lac_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-27T04:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260327_atl_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-27T04:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260327_nop_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-27T04:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260327_det_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-27T04:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260327_chi_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-27T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260327_mia_cle", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-27T05:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260327_hou_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-27T05:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260327_chi_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-27T05:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260327_uta_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-27T06:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260327_was_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-27T07:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260327_dal_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-27T07:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260327_brk_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-27T07:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -78906,10 +54147,71 @@ "canonical_id": "game_mlb_2026_20260327_nyy_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-27T20:35:00Z", + "date": "2026-03-27", + "time": "1:35p", + "home_team": "San Francisco Giants", + "away_team": "New York Yankees", + "home_team_abbrev": "SF", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260327_lac_ind", + "sport": "NBA", + "season": "2026", + "date": "2026-03-27", + "time": "7p", + "home_team": "Indiana Pacers", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "IND", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_lac", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260327_det_buf", + "sport": "NHL", + "season": "2026", + "date": "2026-03-27", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "BUF", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_det", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260327_chi_nyr", + "sport": "NHL", + "season": "2026", + "date": "2026-03-27", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "NYR", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -78917,10 +54219,17 @@ "canonical_id": "game_mlb_2026_20260327_oak_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-27T23:07:00Z", + "date": "2026-03-27", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Oakland Athletics", + "home_team_abbrev": "TOR", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_oak", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -78928,10 +54237,17 @@ "canonical_id": "game_mlb_2026_20260327_col_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-27T23:10:00Z", + "date": "2026-03-27", + "time": "7:10p", + "home_team": "Miami Marlins", + "away_team": "Colorado Rockies", + "home_team_abbrev": "MIA", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_col", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -78939,10 +54255,89 @@ "canonical_id": "game_mlb_2026_20260327_kc_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-27T23:15:00Z", + "date": "2026-03-27", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Kansas City Royals", + "home_team_abbrev": "ATL", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_kc", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260327_mia_cle", + "sport": "NBA", + "season": "2026", + "date": "2026-03-27", + "time": "6:30p", + "home_team": "Cleveland Cavaliers", + "away_team": "Miami Heat", + "home_team_abbrev": "CLE", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_mia", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260327_atl_bos", + "sport": "NBA", + "season": "2026", + "date": "2026-03-27", + "time": "7:30p", + "home_team": "Boston Celtics", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "BOS", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_atl", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260327_chi_okc", + "sport": "NBA", + "season": "2026", + "date": "2026-03-27", + "time": "7p", + "home_team": "Oklahoma City Thunder", + "away_team": "Chicago Bulls", + "home_team_abbrev": "OKC", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_chi", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260327_hou_mem", + "sport": "NBA", + "season": "2026", + "date": "2026-03-27", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Houston Rockets", + "home_team_abbrev": "MEM", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_hou", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -78950,10 +54345,53 @@ "canonical_id": "game_mlb_2026_20260328_laa_hou_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-28T00:10:00Z", + "date": "2026-03-27", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "HOU", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_laa", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260327_nop_tor", + "sport": "NBA", + "season": "2026", + "date": "2026-03-27", + "time": "8:30p", + "home_team": "Toronto Raptors", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_nop", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260327_uta_den", + "sport": "NBA", + "season": "2026", + "date": "2026-03-27", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Utah Jazz", + "home_team_abbrev": "DEN", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_uta", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -78961,10 +54399,17 @@ "canonical_id": "game_mlb_2026_20260328_det_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-28T01:40:00Z", + "date": "2026-03-27", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Detroit Tigers", + "home_team_abbrev": "SD", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_det", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -78972,10 +54417,71 @@ "canonical_id": "game_mlb_2026_20260328_cle_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-28T01:40:00Z", + "date": "2026-03-27", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260327_was_gsw", + "sport": "NBA", + "season": "2026", + "date": "2026-03-27", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Washington Wizards", + "home_team_abbrev": "GSW", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_was", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260327_dal_por", + "sport": "NBA", + "season": "2026", + "date": "2026-03-27", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "POR", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_dal", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260328_hou_ang", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-27", + "time": "7p", + "home_team": "Los Angeles Angel City FC", + "away_team": "Houston Houston Dash", + "home_team_abbrev": "ANG", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nwsl_ang", + "away_team_canonical_id": "team_nwsl_hou", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_nwsl_bmo_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -78983,241 +54489,107 @@ "canonical_id": "game_mlb_2026_20260328_ari_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-28T02:10:00Z", + "date": "2026-03-27", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "LAD", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_ari", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260328_phi_cho", + "canonical_id": "game_nba_2025_20260327_brk_lal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T04:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_spectrum_center", + "season": "2026", + "date": "2026-03-27", + "time": "7:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "LAL", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_brk", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260328_sac_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T04:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260328_uta_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T04:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260328_min_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T04:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260328_sea_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T04:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260328_njd_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T04:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260328_sj_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T04:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260328_phi_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T04:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260328_fla_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260328_dal_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T04:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "canonical_id": "game_nwsl_2026_20260328_uta_bos", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-28", + "time": "12p", + "home_team": "Boston Boston Legacy FC", + "away_team": "Utah Utah Royals", + "home_team_abbrev": "BOS", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nwsl_bos", + "away_team_canonical_id": "team_nwsl_uta", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_nwsl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260328_ott_tb", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T04:00:00Z", + "season": "2026", + "date": "2026-03-28", + "time": "1p", + "home_team": "Tampa Bay Lightning", + "away_team": "Ottawa Senators", + "home_team_abbrev": "TB", + "away_team_abbrev": "OTT", "home_team_canonical_id": "team_nhl_tb", "away_team_canonical_id": "team_nhl_ott", + "venue": "Amalie Arena", "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260328_sas_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T05:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260328_chi_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T05:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260328_det_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T05:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260328_mtl_nsh", + "canonical_id": "game_nhl_2025_20260328_fla_nyi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "season": "2026", + "date": "2026-03-28", + "time": "1p", + "home_team": "New York Islanders", + "away_team": "Florida Panthers", + "home_team_abbrev": "NYI", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_fla", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260328_tor_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T05:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260328_van_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T06:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260328_wpg_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T06:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260328_ana_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T06:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260328_ari_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T07:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260328_was_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-28T07:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "canonical_id": "game_nwsl_2026_20260328_wsh_den", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-28", + "time": "12p", + "home_team": "Denver Denver Summit FC", + "away_team": "Washington Washington Spirit", + "home_team_abbrev": "DEN", + "away_team_abbrev": "WSH", + "home_team_canonical_id": "team_nwsl_den", + "away_team_canonical_id": "team_nwsl_wsh", + "venue": "Centennial Stadium", + "stadium_canonical_id": "stadium_nwsl_centennial_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -79225,10 +54597,17 @@ "canonical_id": "game_mlb_2026_20260328_tbr_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-28T18:15:00Z", + "date": "2026-03-28", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "STL", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79236,10 +54615,35 @@ "canonical_id": "game_mlb_2026_20260328_wsn_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-28T18:20:00Z", + "date": "2026-03-28", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Washington Nationals", + "home_team_abbrev": "CHC", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260328_sas_mil", + "sport": "NBA", + "season": "2026", + "date": "2026-03-28", + "time": "2p", + "home_team": "Milwaukee Bucks", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "MIL", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_sas", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -79247,10 +54651,53 @@ "canonical_id": "game_mlb_2026_20260328_oak_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-28T19:07:00Z", + "date": "2026-03-28", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Oakland Athletics", + "home_team_abbrev": "TOR", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_oak", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260328_ana_edm", + "sport": "NHL", + "season": "2026", + "date": "2026-03-28", + "time": "1:30p", + "home_team": "Edmonton Oilers", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "EDM", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260328_kcc_por", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-28", + "time": "1p", + "home_team": "Portland Portland Thorns", + "away_team": "Kansas City Kansas City Current", + "home_team_abbrev": "POR", + "away_team_abbrev": "KCC", + "home_team_canonical_id": "team_nwsl_por", + "away_team_canonical_id": "team_nwsl_kcc", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_nwsl_providence_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -79258,10 +54705,17 @@ "canonical_id": "game_mlb_2026_20260328_tex_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-28T20:05:00Z", + "date": "2026-03-28", + "time": "4:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Texas Rangers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_tex", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79269,21 +54723,17 @@ "canonical_id": "game_mlb_2026_20260328_min_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-28T20:05:00Z", + "date": "2026-03-28", + "time": "4:05p", + "home_team": "Baltimore Orioles", + "away_team": "Minnesota Twins", + "home_team_abbrev": "BAL", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_min", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260328_pit_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-28T20:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79291,10 +54741,35 @@ "canonical_id": "game_mlb_2026_20260328_col_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-28T20:10:00Z", + "date": "2026-03-28", + "time": "4:10p", + "home_team": "Miami Marlins", + "away_team": "Colorado Rockies", + "home_team_abbrev": "MIA", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_col", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260328_pit_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "4:10p", + "home_team": "New York Mets", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "NYM", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_pit", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79302,21 +54777,215 @@ "canonical_id": "game_mlb_2026_20260328_bos_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-28T20:10:00Z", + "date": "2026-03-28", + "time": "4:10p", + "home_team": "Cincinnati Reds", + "away_team": "Boston Red Sox", + "home_team_abbrev": "CIN", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_bos", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260328_laa_hou_2", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20260328_sj_cbj", + "sport": "NHL", "season": "2026", - "game_datetime_utc": "2026-03-28T23:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "date": "2026-03-28", + "time": "5p", + "home_team": "Columbus Blue Jackets", + "away_team": "San Jose Sharks", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260328_dal_pit", + "sport": "NHL", + "season": "2026", + "date": "2026-03-28", + "time": "5p", + "home_team": "Pittsburgh Penguins", + "away_team": "Dallas Stars", + "home_team_abbrev": "PIT", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_dal", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260328_njd_car", + "sport": "NHL", + "season": "2026", + "date": "2026-03-28", + "time": "5p", + "home_team": "Carolina Hurricanes", + "away_team": "New Jersey Devils", + "home_team_abbrev": "CAR", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_njd", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260328_min_bos", + "sport": "NHL", + "season": "2026", + "date": "2026-03-28", + "time": "5p", + "home_team": "Boston Bruins", + "away_team": "Minnesota Wild", + "home_team_abbrev": "BOS", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_min", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260328_sea_buf", + "sport": "NHL", + "season": "2026", + "date": "2026-03-28", + "time": "5:30p", + "home_team": "Buffalo Sabres", + "away_team": "Seattle Kraken", + "home_team_abbrev": "BUF", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_sea", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260328_phi_cho", + "sport": "NBA", + "season": "2026", + "date": "2026-03-28", + "time": "6p", + "home_team": "Charlotte Hornets", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "CHA", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_phi", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260328_rgn_sea", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-28", + "time": "3:30p", + "home_team": "Seattle Seattle Reign", + "away_team": "Louisville Racing Louisville", + "home_team_abbrev": "SEA", + "away_team_abbrev": "RGN", + "home_team_canonical_id": "team_nwsl_sea", + "away_team_canonical_id": "team_nwsl_rgn", + "venue": "ONE Spokane Stadium", + "stadium_canonical_id": "stadium_nwsl_one_spokane_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260328_wpg_col", + "sport": "NHL", + "season": "2026", + "date": "2026-03-28", + "time": "5p", + "home_team": "Colorado Avalanche", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "COL", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260328_tor_stl", + "sport": "NHL", + "season": "2026", + "date": "2026-03-28", + "time": "6p", + "home_team": "St. Louis Blues", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "STL", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260328_mtl_nsh", + "sport": "NHL", + "season": "2026", + "date": "2026-03-28", + "time": "6p", + "home_team": "Nashville Predators", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "NSH", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260328_bay_ncc", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-28", + "time": "7p", + "home_team": "North Carolina North Carolina Courage", + "away_team": "San Francisco Bay FC", + "home_team_abbrev": "NCC", + "away_team_abbrev": "BAY", + "home_team_canonical_id": "team_nwsl_ncc", + "away_team_canonical_id": "team_nwsl_bay", + "venue": "WakeMed Soccer Park", + "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -79324,10 +54993,35 @@ "canonical_id": "game_mlb_2026_20260328_chw_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-28T23:10:00Z", + "date": "2026-03-28", + "time": "6:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Chicago White Sox", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_chw", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260328_laa_hou_2", + "sport": "MLB", + "season": "2026", + "date": "2026-03-28", + "time": "6:10p", + "home_team": "Houston Astros", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "HOU", + "away_team_abbrev": "LAA", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_laa", + "venue": "Minute Maid Park", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79335,10 +55029,17 @@ "canonical_id": "game_mlb_2026_20260328_nyy_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-28T23:15:00Z", + "date": "2026-03-28", + "time": "4:15p", + "home_team": "San Francisco Giants", + "away_team": "New York Yankees", + "home_team_abbrev": "SF", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79346,10 +55047,89 @@ "canonical_id": "game_mlb_2026_20260328_kc_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-28T23:15:00Z", + "date": "2026-03-28", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Kansas City Royals", + "home_team_abbrev": "ATL", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_kc", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260328_sac_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-03-28", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Sacramento Kings", + "home_team_abbrev": "ATL", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_sac", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260328_chi_mem", + "sport": "NBA", + "season": "2026", + "date": "2026-03-28", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Chicago Bulls", + "home_team_abbrev": "MEM", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_chi", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260328_det_min", + "sport": "NBA", + "season": "2026", + "date": "2026-03-28", + "time": "7p", + "home_team": "Minnesota Timberwolves", + "away_team": "Detroit Pistons", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_det", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260328_phi_det", + "sport": "NHL", + "season": "2026", + "date": "2026-03-28", + "time": "8p", + "home_team": "Detroit Red Wings", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "DET", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_phi", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -79357,10 +55137,53 @@ "canonical_id": "game_mlb_2026_20260329_det_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-29T00:40:00Z", + "date": "2026-03-28", + "time": "5:40p", + "home_team": "San Diego Padres", + "away_team": "Detroit Tigers", + "home_team_abbrev": "SD", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_det", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260329_chi_sdw", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-28", + "time": "5:45p", + "home_team": "San Diego San Diego Wave", + "away_team": "Chicago Chicago Red Stars", + "home_team_abbrev": "SDW", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nwsl_sdw", + "away_team_canonical_id": "team_nwsl_chi", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260328_ari_la", + "sport": "NHL", + "season": "2026", + "date": "2026-03-28", + "time": "6p", + "home_team": "Los Angeles Kings", + "away_team": "Utah Club", + "home_team_abbrev": "LA", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -79368,10 +55191,17 @@ "canonical_id": "game_mlb_2026_20260329_ari_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-29T01:10:00Z", + "date": "2026-03-28", + "time": "6:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "LAD", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_ari", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79379,175 +55209,89 @@ "canonical_id": "game_mlb_2026_20260329_cle_sea_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-29T01:40:00Z", + "date": "2026-03-28", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260329_mia_ind", + "canonical_id": "game_nba_2025_20260328_uta_phx", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-29T04:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "season": "2026", + "date": "2026-03-28", + "time": "10p", + "home_team": "Phoenix Suns", + "away_team": "Utah Jazz", + "home_team_abbrev": "PHX", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_uta", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260329_sac_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-29T04:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260329_bos_cho", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-29T04:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260329_orl_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-29T04:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260329_mtl_car", + "canonical_id": "game_nhl_2025_20260328_van_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-29T04:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_pnc_arena", + "season": "2026", + "date": "2026-03-28", + "time": "8p", + "home_team": "Calgary Flames", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "CGY", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_van", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260329_bos_cbj", + "canonical_id": "game_nhl_2025_20260328_was_vgk", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-29T04:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260329_chi_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-29T04:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_prudential_center", + "season": "2026", + "date": "2026-03-28", + "time": "7:30p", + "home_team": "Vegas Golden Knights", + "away_team": "Washington Capitals", + "home_team_abbrev": "VGK", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_was", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260329_fla_nyr", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-29T04:00:00Z", + "season": "2026", + "date": "2026-03-29", + "time": "1p", + "home_team": "New York Rangers", + "away_team": "Florida Panthers", + "home_team_abbrev": "NYR", + "away_team_abbrev": "FLA", "home_team_canonical_id": "team_nhl_nyr", "away_team_canonical_id": "team_nhl_fla", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260329_dal_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-29T04:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260329_nsh_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-29T04:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_amalie_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260329_lac_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-29T05:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260329_hou_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-29T05:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260329_nyk_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-29T05:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260329_gsw_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-29T06:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260329_was_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-29T07:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_moda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -79555,10 +55299,17 @@ "canonical_id": "game_mlb_2026_20260329_tex_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-29T17:35:00Z", + "date": "2026-03-29", + "time": "1:35p", + "home_team": "Philadelphia Phillies", + "away_team": "Texas Rangers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_tex", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79566,10 +55317,17 @@ "canonical_id": "game_mlb_2026_20260329_min_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-29T17:35:00Z", + "date": "2026-03-29", + "time": "1:35p", + "home_team": "Baltimore Orioles", + "away_team": "Minnesota Twins", + "home_team_abbrev": "BAL", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_min", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79577,10 +55335,17 @@ "canonical_id": "game_mlb_2026_20260329_kc_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-29T17:35:00Z", + "date": "2026-03-29", + "time": "1:35p", + "home_team": "Atlanta Braves", + "away_team": "Kansas City Royals", + "home_team_abbrev": "ATL", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_kc", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79588,10 +55353,17 @@ "canonical_id": "game_mlb_2026_20260329_oak_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-29T17:37:00Z", + "date": "2026-03-29", + "time": "1:37p", + "home_team": "Toronto Blue Jays", + "away_team": "Oakland Athletics", + "home_team_abbrev": "TOR", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_oak", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79599,10 +55371,17 @@ "canonical_id": "game_mlb_2026_20260329_pit_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-29T17:40:00Z", + "date": "2026-03-29", + "time": "1:40p", + "home_team": "New York Mets", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "NYM", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_pit", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79610,10 +55389,17 @@ "canonical_id": "game_mlb_2026_20260329_col_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-29T17:40:00Z", + "date": "2026-03-29", + "time": "1:40p", + "home_team": "Miami Marlins", + "away_team": "Colorado Rockies", + "home_team_abbrev": "MIA", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_col", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79621,21 +55407,17 @@ "canonical_id": "game_mlb_2026_20260329_bos_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-29T17:40:00Z", + "date": "2026-03-29", + "time": "1:40p", + "home_team": "Cincinnati Reds", + "away_team": "Boston Red Sox", + "home_team_abbrev": "CIN", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_bos", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260329_laa_hou", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-29T18:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79643,10 +55425,35 @@ "canonical_id": "game_mlb_2026_20260329_chw_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-29T18:10:00Z", + "date": "2026-03-29", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Chicago White Sox", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_chw", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260329_laa_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-03-29", + "time": "1:10p", + "home_team": "Houston Astros", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "HOU", + "away_team_abbrev": "LAA", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_laa", + "venue": "Minute Maid Park", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79654,10 +55461,17 @@ "canonical_id": "game_mlb_2026_20260329_tbr_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-29T18:15:00Z", + "date": "2026-03-29", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "STL", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79665,10 +55479,251 @@ "canonical_id": "game_mlb_2026_20260329_wsn_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-29T18:20:00Z", + "date": "2026-03-29", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Washington Nationals", + "home_team_abbrev": "CHC", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260329_lac_mil", + "sport": "NBA", + "season": "2026", + "date": "2026-03-29", + "time": "2:30p", + "home_team": "Milwaukee Bucks", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "MIL", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_lac", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260329_mia_ind", + "sport": "NBA", + "season": "2026", + "date": "2026-03-29", + "time": "5p", + "home_team": "Indiana Pacers", + "away_team": "Miami Heat", + "home_team_abbrev": "IND", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_mia", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260329_mtl_car", + "sport": "NHL", + "season": "2026", + "date": "2026-03-29", + "time": "5p", + "home_team": "Carolina Hurricanes", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "CAR", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260329_nsh_tb", + "sport": "NHL", + "season": "2026", + "date": "2026-03-29", + "time": "5p", + "home_team": "Tampa Bay Lightning", + "away_team": "Nashville Predators", + "home_team_abbrev": "TB", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260329_bos_cbj", + "sport": "NHL", + "season": "2026", + "date": "2026-03-29", + "time": "5p", + "home_team": "Columbus Blue Jackets", + "away_team": "Boston Bruins", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260329_orl_tor", + "sport": "NBA", + "season": "2026", + "date": "2026-03-29", + "time": "6p", + "home_team": "Toronto Raptors", + "away_team": "Orlando Magic", + "home_team_abbrev": "TOR", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_orl", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260329_was_por", + "sport": "NBA", + "season": "2026", + "date": "2026-03-29", + "time": "3p", + "home_team": "Portland Blazers", + "away_team": "Washington Wizards", + "home_team_abbrev": "POR", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_was", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260329_bos_cho", + "sport": "NBA", + "season": "2026", + "date": "2026-03-29", + "time": "6p", + "home_team": "Charlotte Hornets", + "away_team": "Boston Celtics", + "home_team_abbrev": "CHA", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_bos", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260329_sac_brk", + "sport": "NBA", + "season": "2026", + "date": "2026-03-29", + "time": "6p", + "home_team": "Brooklyn Nets", + "away_team": "Sacramento Kings", + "home_team_abbrev": "BKN", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_sac", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260329_hou_nop", + "sport": "NBA", + "season": "2026", + "date": "2026-03-29", + "time": "6p", + "home_team": "New Orleans Pelicans", + "away_team": "Houston Rockets", + "home_team_abbrev": "NOP", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_hou", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260329_dal_phi", + "sport": "NHL", + "season": "2026", + "date": "2026-03-29", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Dallas Stars", + "home_team_abbrev": "PHI", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260329_chi_njd", + "sport": "NHL", + "season": "2026", + "date": "2026-03-29", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "NJ", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260329_orl_njy", + "sport": "NWSL", + "season": "2026", + "date": "2026-03-29", + "time": "7p", + "home_team": "New Jersey NJ/NY Gotham FC", + "away_team": "Orlando Orlando Pride", + "home_team_abbrev": "NJY", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nwsl_njy", + "away_team_canonical_id": "team_nwsl_orl", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_nwsl_red_bull_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -79676,153 +55731,53 @@ "canonical_id": "game_mlb_2026_20260329_cle_sea_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-29T23:20:00Z", + "date": "2026-03-29", + "time": "4:20p", + "home_team": "Seattle Mariners", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260330_phi_mia", + "canonical_id": "game_nba_2025_20260329_nyk_okc", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-30T04:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260330_bos_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-30T04:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260330_pit_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-30T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260330_phx_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-30T05:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260330_chi_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-30T05:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260330_min_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-30T05:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260330_det_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-30T05:00:00Z", + "season": "2026", + "date": "2026-03-29", + "time": "6:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "New York Knicks", + "home_team_abbrev": "OKC", + "away_team_abbrev": "NYK", "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Paycom Center", "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260330_cle_uta", + "canonical_id": "game_nba_2025_20260329_gsw_den", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-30T06:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260330_cgy_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-30T06:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260330_was_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-30T07:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260330_tor_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-30T07:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260330_stl_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-30T07:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260330_van_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-30T07:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "season": "2026", + "date": "2026-03-29", + "time": "8p", + "home_team": "Denver Nuggets", + "away_team": "Golden State Warriors", + "home_team_abbrev": "DEN", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -79830,10 +55785,17 @@ "canonical_id": "game_mlb_2026_20260330_min_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-30T20:10:00Z", + "date": "2026-03-30", + "time": "3:10p", + "home_team": "Kansas City Royals", + "away_team": "Minnesota Twins", + "home_team_abbrev": "KC", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_min", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79841,32 +55803,17 @@ "canonical_id": "game_mlb_2026_20260330_tex_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-30T22:35:00Z", + "date": "2026-03-30", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Texas Rangers", + "home_team_abbrev": "BAL", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_tex", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260330_wsn_phi", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-30T22:40:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260330_pit_cin", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-30T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79874,10 +55821,89 @@ "canonical_id": "game_mlb_2026_20260330_chw_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-30T22:40:00Z", + "date": "2026-03-30", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Chicago White Sox", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_chw", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260330_pit_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "CIN", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_pit", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260330_wsn_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Washington Nationals", + "home_team_abbrev": "PHI", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "Citizens Bank Park", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260330_phi_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-03-30", + "time": "7p", + "home_team": "Miami Heat", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "MIA", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_phi", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260330_pit_nyi", + "sport": "NHL", + "season": "2026", + "date": "2026-03-30", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "NYI", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_pit", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -79885,10 +55911,17 @@ "canonical_id": "game_mlb_2026_20260330_col_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-30T23:07:00Z", + "date": "2026-03-30", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Colorado Rockies", + "home_team_abbrev": "TOR", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_col", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79896,10 +55929,35 @@ "canonical_id": "game_mlb_2026_20260330_oak_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-30T23:15:00Z", + "date": "2026-03-30", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Oakland Athletics", + "home_team_abbrev": "ATL", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_oak", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260330_bos_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-03-30", + "time": "7:30p", + "home_team": "Atlanta Hawks", + "away_team": "Boston Celtics", + "home_team_abbrev": "ATL", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_bos", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -79907,10 +55965,17 @@ "canonical_id": "game_mlb_2026_20260330_tbr_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-30T23:40:00Z", + "date": "2026-03-30", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "MIL", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79918,10 +55983,17 @@ "canonical_id": "game_mlb_2026_20260330_laa_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-30T23:40:00Z", + "date": "2026-03-30", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "CHC", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_laa", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79929,10 +56001,53 @@ "canonical_id": "game_mlb_2026_20260330_nym_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-30T23:45:00Z", + "date": "2026-03-30", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "New York Mets", + "home_team_abbrev": "STL", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_nym", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260330_chi_sas", + "sport": "NBA", + "season": "2026", + "date": "2026-03-30", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Chicago Bulls", + "home_team_abbrev": "SAS", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_chi", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260330_phx_mem", + "sport": "NBA", + "season": "2026", + "date": "2026-03-30", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Phoenix Suns", + "home_team_abbrev": "MEM", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_phx", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -79940,10 +56055,89 @@ "canonical_id": "game_mlb_2026_20260331_bos_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-31T00:10:00Z", + "date": "2026-03-30", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Boston Red Sox", + "home_team_abbrev": "HOU", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_bos", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260330_min_dal", + "sport": "NBA", + "season": "2026", + "date": "2026-03-30", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "DAL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_min", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260330_cgy_col", + "sport": "NHL", + "season": "2026", + "date": "2026-03-30", + "time": "6:30p", + "home_team": "Colorado Avalanche", + "away_team": "Calgary Flames", + "home_team_abbrev": "COL", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260330_cle_uta", + "sport": "NBA", + "season": "2026", + "date": "2026-03-30", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "UTA", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_cle", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260330_det_okc", + "sport": "NBA", + "season": "2026", + "date": "2026-03-30", + "time": "8:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "Detroit Pistons", + "home_team_abbrev": "OKC", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_det", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -79951,10 +56145,17 @@ "canonical_id": "game_mlb_2026_20260331_sf_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-31T01:40:00Z", + "date": "2026-03-30", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "San Francisco Giants", + "home_team_abbrev": "SD", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_sf", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -79962,21 +56163,89 @@ "canonical_id": "game_mlb_2026_20260331_nyy_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-31T01:40:00Z", + "date": "2026-03-30", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "New York Yankees", + "home_team_abbrev": "SEA", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260331_det_ari", - "sport": "MLB", + "canonical_id": "game_nba_2025_20260330_was_lal", + "sport": "NBA", "season": "2026", - "game_datetime_utc": "2026-03-31T02:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_chase_field", + "date": "2026-03-30", + "time": "7p", + "home_team": "Los Angeles Lakers", + "away_team": "Washington Wizards", + "home_team_abbrev": "LAL", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_was", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260330_van_vgk", + "sport": "NHL", + "season": "2026", + "date": "2026-03-30", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "VGK", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_van", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260330_tor_ana", + "sport": "NHL", + "season": "2026", + "date": "2026-03-30", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "ANA", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260330_stl_sj", + "sport": "NHL", + "season": "2026", + "date": "2026-03-30", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "St. Louis Blues", + "home_team_abbrev": "SJ", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_stl", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -79984,186 +56253,35 @@ "canonical_id": "game_mlb_2026_20260331_cle_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-31T02:10:00Z", + "date": "2026-03-30", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "LAD", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_cle", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260331_phx_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-31T04:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260331_cho_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-31T04:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260331_tor_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-31T04:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260331_dal_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-31T04:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260331_nyi_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-31T04:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260331_car_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-31T04:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260331_ott_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-31T04:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260331_njd_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-31T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260331_det_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-31T04:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260331_mtl_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-31T04:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_amalie_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260331_phi_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-31T04:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260331_nyk_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-31T05:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260331_wpg_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-31T05:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260331_sea_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-03-31T06:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260331_cle_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-31T07:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260331_por_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-03-31T07:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_intuit_dome", + "canonical_id": "game_mlb_2026_20260331_det_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-03-30", + "time": "7:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Detroit Tigers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_det", + "venue": "Chase Field", + "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80171,10 +56289,17 @@ "canonical_id": "game_mlb_2026_20260331_tex_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-31T22:35:00Z", + "date": "2026-03-31", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Texas Rangers", + "home_team_abbrev": "BAL", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_tex", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80182,21 +56307,17 @@ "canonical_id": "game_mlb_2026_20260331_wsn_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-31T22:40:00Z", + "date": "2026-03-31", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Washington Nationals", + "home_team_abbrev": "PHI", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260331_pit_cin", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-03-31T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80204,10 +56325,179 @@ "canonical_id": "game_mlb_2026_20260331_chw_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-31T22:40:00Z", + "date": "2026-03-31", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Chicago White Sox", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_chw", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260331_pit_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "CIN", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_pit", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260331_phx_orl", + "sport": "NBA", + "season": "2026", + "date": "2026-03-31", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Phoenix Suns", + "home_team_abbrev": "ORL", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_phx", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260331_nyi_buf", + "sport": "NHL", + "season": "2026", + "date": "2026-03-31", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "New York Islanders", + "home_team_abbrev": "BUF", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260331_det_pit", + "sport": "NHL", + "season": "2026", + "date": "2026-03-31", + "time": "7p", + "home_team": "Pittsburgh Penguins", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "PIT", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_det", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260331_mtl_tb", + "sport": "NHL", + "season": "2026", + "date": "2026-03-31", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "TB", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260331_njd_nyr", + "sport": "NHL", + "season": "2026", + "date": "2026-03-31", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "New Jersey Devils", + "home_team_abbrev": "NYR", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_njd", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260331_dal_bos", + "sport": "NHL", + "season": "2026", + "date": "2026-03-31", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "Dallas Stars", + "home_team_abbrev": "BOS", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_dal", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260331_ott_fla", + "sport": "NHL", + "season": "2026", + "date": "2026-03-31", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Ottawa Senators", + "home_team_abbrev": "FLA", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260331_phi_was", + "sport": "NHL", + "season": "2026", + "date": "2026-03-31", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "WAS", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_phi", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -80215,10 +56505,17 @@ "canonical_id": "game_mlb_2026_20260331_col_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-31T23:07:00Z", + "date": "2026-03-31", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Colorado Rockies", + "home_team_abbrev": "TOR", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_col", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80226,21 +56523,53 @@ "canonical_id": "game_mlb_2026_20260331_oak_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-31T23:15:00Z", + "date": "2026-03-31", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Oakland Athletics", + "home_team_abbrev": "ATL", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_oak", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260331_tbr_mil", - "sport": "MLB", + "canonical_id": "game_nba_2025_20260331_cho_brk", + "sport": "NBA", "season": "2026", - "game_datetime_utc": "2026-03-31T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "date": "2026-03-31", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "BKN", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_cho", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260331_car_cbj", + "sport": "NHL", + "season": "2026", + "date": "2026-03-31", + "time": "7:30p", + "home_team": "Columbus Blue Jackets", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_car", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -80248,10 +56577,35 @@ "canonical_id": "game_mlb_2026_20260331_laa_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-31T23:40:00Z", + "date": "2026-03-31", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "CHC", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_laa", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260331_tbr_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "MIL", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80259,21 +56613,71 @@ "canonical_id": "game_mlb_2026_20260331_nym_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-03-31T23:45:00Z", + "date": "2026-03-31", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "New York Mets", + "home_team_abbrev": "STL", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_nym", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260331_tor_det", + "sport": "NBA", + "season": "2026", + "date": "2026-03-31", + "time": "8p", + "home_team": "Detroit Pistons", + "away_team": "Toronto Raptors", + "home_team_abbrev": "DET", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_tor", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260331_dal_mil", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-01T00:00:00Z", + "season": "2026", + "date": "2026-03-31", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "MIL", + "away_team_abbrev": "DAL", "home_team_canonical_id": "team_nba_mil", "away_team_canonical_id": "team_nba_dal", + "venue": "Fiserv Forum", "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260331_nyk_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-03-31", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "New York Knicks", + "home_team_abbrev": "HOU", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_nyk", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -80281,21 +56685,53 @@ "canonical_id": "game_mlb_2026_20260401_bos_hou_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-01T00:10:00Z", + "date": "2026-03-31", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Boston Red Sox", + "home_team_abbrev": "HOU", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_bos", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260401_sf_sd_1", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20260331_wpg_chi", + "sport": "NHL", "season": "2026", - "game_datetime_utc": "2026-04-01T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_petco_park", + "date": "2026-03-31", + "time": "7:30p", + "home_team": "Chicago Blackhawks", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "CHI", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260331_sea_edm", + "sport": "NHL", + "season": "2026", + "date": "2026-03-31", + "time": "7p", + "home_team": "Edmonton Oilers", + "away_team": "Seattle Kraken", + "home_team_abbrev": "EDM", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -80303,10 +56739,17 @@ "canonical_id": "game_mlb_2026_20260401_nyy_sea_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-01T01:40:00Z", + "date": "2026-03-31", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "New York Yankees", + "home_team_abbrev": "SEA", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80314,10 +56757,35 @@ "canonical_id": "game_mlb_2026_20260401_det_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-01T01:40:00Z", + "date": "2026-03-31", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Detroit Tigers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_det", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260401_sf_sd_1", + "sport": "MLB", + "season": "2026", + "date": "2026-03-31", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "San Francisco Giants", + "home_team_abbrev": "SD", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_sd", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Petco Park", + "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80325,142 +56793,53 @@ "canonical_id": "game_mlb_2026_20260401_cle_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-01T02:10:00Z", + "date": "2026-03-31", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "LAD", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_cle", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260401_phi_was", + "canonical_id": "game_nba_2025_20260331_cle_lal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-01T04:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_capital_one_arena", + "season": "2026", + "date": "2026-03-31", + "time": "7:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "LAL", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_cle", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260401_bos_mia", + "canonical_id": "game_nba_2025_20260331_por_lac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-01T04:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260401_atl_orl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-01T04:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_kia_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260401_sac_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-01T04:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260401_ind_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-01T05:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260401_mil_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-01T05:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260401_dal_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-01T05:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260401_den_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-01T06:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260401_van_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-01T06:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260401_sas_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-01T07:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260401_stl_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-01T07:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260401_ana_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-01T07:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_sap_center", + "season": "2026", + "date": "2026-03-31", + "time": "8p", + "home_team": "Los Angeles Clippers", + "away_team": "Portland Blazers", + "home_team_abbrev": "LAC", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_por", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -80468,10 +56847,17 @@ "canonical_id": "game_mlb_2026_20260401_oak_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-01T16:15:00Z", + "date": "2026-04-01", + "time": "12:15p", + "home_team": "Atlanta Braves", + "away_team": "Oakland Athletics", + "home_team_abbrev": "ATL", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_oak", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80479,10 +56865,17 @@ "canonical_id": "game_mlb_2026_20260401_tex_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-01T16:35:00Z", + "date": "2026-04-01", + "time": "12:35p", + "home_team": "Baltimore Orioles", + "away_team": "Texas Rangers", + "home_team_abbrev": "BAL", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_tex", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80490,10 +56883,17 @@ "canonical_id": "game_mlb_2026_20260401_pit_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-01T16:40:00Z", + "date": "2026-04-01", + "time": "12:40p", + "home_team": "Cincinnati Reds", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "CIN", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_pit", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80501,10 +56901,17 @@ "canonical_id": "game_mlb_2026_20260401_wsn_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-01T17:05:00Z", + "date": "2026-04-01", + "time": "1:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Washington Nationals", + "home_team_abbrev": "PHI", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80512,10 +56919,17 @@ "canonical_id": "game_mlb_2026_20260401_col_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-01T17:07:00Z", + "date": "2026-04-01", + "time": "1:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Colorado Rockies", + "home_team_abbrev": "TOR", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_col", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80523,10 +56937,17 @@ "canonical_id": "game_mlb_2026_20260401_chw_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-01T17:10:00Z", + "date": "2026-04-01", + "time": "1:10p", + "home_team": "Miami Marlins", + "away_team": "Chicago White Sox", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_chw", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80534,10 +56955,17 @@ "canonical_id": "game_mlb_2026_20260401_nym_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-01T17:15:00Z", + "date": "2026-04-01", + "time": "12:15p", + "home_team": "St. Louis Cardinals", + "away_team": "New York Mets", + "home_team_abbrev": "STL", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_nym", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80545,10 +56973,17 @@ "canonical_id": "game_mlb_2026_20260401_tbr_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-01T17:40:00Z", + "date": "2026-04-01", + "time": "12:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "MIL", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80556,10 +56991,17 @@ "canonical_id": "game_mlb_2026_20260401_bos_hou_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-01T18:10:00Z", + "date": "2026-04-01", + "time": "1:10p", + "home_team": "Houston Astros", + "away_team": "Boston Red Sox", + "home_team_abbrev": "HOU", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_bos", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80567,10 +57009,17 @@ "canonical_id": "game_mlb_2026_20260401_laa_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-01T18:20:00Z", + "date": "2026-04-01", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "CHC", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_laa", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80578,21 +57027,17 @@ "canonical_id": "game_mlb_2026_20260401_det_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-01T19:40:00Z", + "date": "2026-04-01", + "time": "12:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Detroit Tigers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_det", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260401_sf_sd_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-01T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80600,10 +57045,89 @@ "canonical_id": "game_mlb_2026_20260401_nyy_sea_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-01T20:10:00Z", + "date": "2026-04-01", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "New York Yankees", + "home_team_abbrev": "SEA", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260401_sf_sd_2", + "sport": "MLB", + "season": "2026", + "date": "2026-04-01", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "San Francisco Giants", + "home_team_abbrev": "SD", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_sd", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Petco Park", + "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260401_phi_was", + "sport": "NBA", + "season": "2026", + "date": "2026-04-01", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "WAS", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_phi", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260401_atl_orl", + "sport": "NBA", + "season": "2026", + "date": "2026-04-01", + "time": "7:30p", + "home_team": "Orlando Magic", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "ORL", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_atl", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260401_bos_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-04-01", + "time": "7:30p", + "home_team": "Miami Heat", + "away_team": "Boston Celtics", + "home_team_abbrev": "MIA", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_bos", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -80611,21 +57135,107 @@ "canonical_id": "game_mlb_2026_20260401_min_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-01T23:40:00Z", + "date": "2026-04-01", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Minnesota Twins", + "home_team_abbrev": "KC", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_min", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260401_ind_chi", + "sport": "NBA", + "season": "2026", + "date": "2026-04-01", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Indiana Pacers", + "home_team_abbrev": "CHI", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_ind", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260401_dal_mem", + "sport": "NBA", + "season": "2026", + "date": "2026-04-01", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "MEM", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_dal", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": null, + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260401_mil_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-04-01", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "HOU", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_mil", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260401_sac_tor", + "sport": "NBA", + "season": "2026", + "date": "2026-04-01", + "time": "8p", + "home_team": "Toronto Raptors", + "away_team": "Sacramento Kings", + "home_team_abbrev": "TOR", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_sac", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nba_2025_20260401_nyk_mem", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T00:00:00Z", + "season": "2026", + "date": "2026-04-01", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "New York Knicks", + "home_team_abbrev": "MEM", + "away_team_abbrev": "NYK", "home_team_canonical_id": "team_nba_mem", "away_team_canonical_id": "team_nba_nyk", + "venue": "FedExForum", "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -80633,230 +57243,107 @@ "canonical_id": "game_mlb_2026_20260402_cle_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-02T00:20:00Z", + "date": "2026-04-01", + "time": "5:20p", + "home_team": "Los Angeles Dodgers", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "LAD", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_cle", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260402_phx_cho", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T04:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_spectrum_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260402_min_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T04:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260402_cbj_car", + "canonical_id": "game_nhl_2025_20260401_van_col", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T04:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260402_bos_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T04:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260402_was_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T04:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260402_mtl_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260402_buf_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T04:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260402_det_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T04:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260402_pit_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T04:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_amalie_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260402_lal_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T05:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260402_wpg_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T05:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260402_van_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T05:00:00Z", - "home_team_canonical_id": "team_nhl_min", + "season": "2026", + "date": "2026-04-01", + "time": "6:30p", + "home_team": "Colorado Avalanche", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "COL", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_col", "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260402_chi_edm", + "canonical_id": "game_nba_2025_20260401_den_uta", + "sport": "NBA", + "season": "2026", + "date": "2026-04-01", + "time": "7p", + "home_team": "Utah Jazz", + "away_team": "Denver Nuggets", + "home_team_abbrev": "UTA", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_den", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260401_stl_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T06:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260402_cle_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T07:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260402_nop_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T07:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260402_sas_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T07:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260402_nsh_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T07:00:00Z", + "season": "2026", + "date": "2026-04-01", + "time": "6p", + "home_team": "Los Angeles Kings", + "away_team": "St. Louis Blues", + "home_team_abbrev": "LA", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Crypto.com Arena", "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260402_ari_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T07:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "canonical_id": "game_nba_2025_20260401_sas_gsw", + "sport": "NBA", + "season": "2026", + "date": "2026-04-01", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "GSW", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_sas", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260402_tor_sj", + "canonical_id": "game_nhl_2025_20260401_ana_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T07:00:00Z", + "season": "2026", + "date": "2026-04-01", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "SJ", + "away_team_abbrev": "ANA", "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_ana", + "venue": "SAP Center", "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260402_cgy_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-02T07:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -80864,10 +57351,17 @@ "canonical_id": "game_mlb_2026_20260402_min_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-02T18:10:00Z", + "date": "2026-04-02", + "time": "1:10p", + "home_team": "Kansas City Royals", + "away_team": "Minnesota Twins", + "home_team_abbrev": "KC", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_min", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80875,10 +57369,251 @@ "canonical_id": "game_mlb_2026_20260402_tor_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-02T20:10:00Z", + "date": "2026-04-02", + "time": "3:10p", + "home_team": "Chicago White Sox", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "CHW", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_tor", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260402_min_det", + "sport": "NBA", + "season": "2026", + "date": "2026-04-02", + "time": "7p", + "home_team": "Detroit Pistons", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "DET", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_min", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260402_phx_cho", + "sport": "NBA", + "season": "2026", + "date": "2026-04-02", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Phoenix Suns", + "home_team_abbrev": "CHA", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_phx", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260402_mtl_nyr", + "sport": "NHL", + "season": "2026", + "date": "2026-04-02", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "NYR", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260402_pit_tb", + "sport": "NHL", + "season": "2026", + "date": "2026-04-02", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "TB", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_pit", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260402_bos_fla", + "sport": "NHL", + "season": "2026", + "date": "2026-04-02", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Boston Bruins", + "home_team_abbrev": "FLA", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260402_det_phi", + "sport": "NHL", + "season": "2026", + "date": "2026-04-02", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "PHI", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_det", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260402_buf_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-04-02", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "OTT", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260402_cbj_car", + "sport": "NHL", + "season": "2026", + "date": "2026-04-02", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "CAR", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260402_was_njd", + "sport": "NHL", + "season": "2026", + "date": "2026-04-02", + "time": "7:30p", + "home_team": "New Jersey Devils", + "away_team": "Washington Capitals", + "home_team_abbrev": "NJ", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_was", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260402_van_min", + "sport": "NHL", + "season": "2026", + "date": "2026-04-02", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "MIN", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_van", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260402_wpg_dal", + "sport": "NHL", + "season": "2026", + "date": "2026-04-02", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "DAL", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260402_chi_edm", + "sport": "NHL", + "season": "2026", + "date": "2026-04-02", + "time": "7p", + "home_team": "Edmonton Oilers", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "EDM", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260402_lal_okc", + "sport": "NBA", + "season": "2026", + "date": "2026-04-02", + "time": "8:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "OKC", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_lal", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -80886,10 +57621,17 @@ "canonical_id": "game_mlb_2026_20260403_atl_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-03T01:40:00Z", + "date": "2026-04-02", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Atlanta Braves", + "home_team_abbrev": "ARI", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_atl", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -80897,131 +57639,143 @@ "canonical_id": "game_mlb_2026_20260403_nym_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-03T01:45:00Z", + "date": "2026-04-02", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "New York Mets", + "home_team_abbrev": "SF", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_nym", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260403_ind_cho", + "canonical_id": "game_nba_2025_20260402_cle_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-03T04:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_spectrum_center", + "season": "2026", + "date": "2026-04-02", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "GSW", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_cle", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260403_atl_brk", + "canonical_id": "game_nba_2025_20260402_nop_por", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-03T04:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260403_chi_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-03T04:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260403_phi_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-03T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260403_uta_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-03T05:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260403_tor_mem", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-03T05:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260403_bos_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-03T05:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260403_orl_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-03T05:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260403_min_phi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-03T07:00:00Z", - "home_team_canonical_id": "team_nba_phi", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260403_nop_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-03T07:00:00Z", - "home_team_canonical_id": "team_nba_sac", + "season": "2026", + "date": "2026-04-02", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "POR", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_por", "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_golden_1_center", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260403_stl_ana", + "canonical_id": "game_nhl_2025_20260402_ari_sea", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-03T07:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_honda_center", + "season": "2026", + "date": "2026-04-02", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Utah Club", + "home_team_abbrev": "SEA", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260402_tor_sj", + "sport": "NHL", + "season": "2026", + "date": "2026-04-02", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "SJ", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_tor", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260402_cgy_vgk", + "sport": "NHL", + "season": "2026", + "date": "2026-04-02", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Calgary Flames", + "home_team_abbrev": "VGK", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260402_sas_lac", + "sport": "NBA", + "season": "2026", + "date": "2026-04-02", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "LAC", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_sas", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260402_nsh_la", + "sport": "NHL", + "season": "2026", + "date": "2026-04-02", + "time": "7:30p", + "home_team": "Los Angeles Kings", + "away_team": "Nashville Predators", + "home_team_abbrev": "LA", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -81029,10 +57783,17 @@ "canonical_id": "game_mlb_2026_20260403_lad_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-03T17:05:00Z", + "date": "2026-04-03", + "time": "1:05p", + "home_team": "Washington Nationals", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "WSN", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_lad", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81040,10 +57801,17 @@ "canonical_id": "game_mlb_2026_20260403_stl_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-03T17:10:00Z", + "date": "2026-04-03", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "DET", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_stl", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81051,10 +57819,17 @@ "canonical_id": "game_mlb_2026_20260403_mia_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-03T17:35:00Z", + "date": "2026-04-03", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Miami Marlins", + "home_team_abbrev": "NYY", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_mia", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81062,10 +57837,17 @@ "canonical_id": "game_mlb_2026_20260403_sd_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-03T18:10:00Z", + "date": "2026-04-03", + "time": "2:10p", + "home_team": "Boston Red Sox", + "away_team": "San Diego Padres", + "home_team_abbrev": "BOS", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_sd", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81073,32 +57855,17 @@ "canonical_id": "game_mlb_2026_20260403_cin_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-03T20:05:00Z", + "date": "2026-04-03", + "time": "3:05p", + "home_team": "Texas Rangers", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "TEX", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_cin", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260403_tbr_min", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-03T20:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260403_phi_col", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-03T20:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81106,10 +57873,53 @@ "canonical_id": "game_mlb_2026_20260403_chc_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-03T20:10:00Z", + "date": "2026-04-03", + "time": "4:10p", + "home_team": "Cleveland Guardians", + "away_team": "Chicago Cubs", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_chc", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260403_tbr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "3:10p", + "home_team": "Minnesota Twins", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "MIN", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Target Field", + "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260403_phi_col", + "sport": "MLB", + "season": "2026", + "date": "2026-04-03", + "time": "2:10p", + "home_team": "Colorado Rockies", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "COL", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_phi", + "venue": "Coors Field", + "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81117,10 +57927,107 @@ "canonical_id": "game_mlb_2026_20260403_bal_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-03T20:12:00Z", + "date": "2026-04-03", + "time": "4:12p", + "home_team": "Pittsburgh Pirates", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "PIT", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_bal", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260403_min_phi", + "sport": "NBA", + "season": "2026", + "date": "2026-04-03", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_min", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260403_ind_cho", + "sport": "NBA", + "season": "2026", + "date": "2026-04-03", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Indiana Pacers", + "home_team_abbrev": "CHA", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_ind", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260403_phi_nyi", + "sport": "NHL", + "season": "2026", + "date": "2026-04-03", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "NYI", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_phi", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260403_chi_nyk", + "sport": "NBA", + "season": "2026", + "date": "2026-04-03", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Chicago Bulls", + "home_team_abbrev": "NYK", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_chi", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260403_atl_brk", + "sport": "NBA", + "season": "2026", + "date": "2026-04-03", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "BKN", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_atl", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -81128,10 +58035,161 @@ "canonical_id": "game_mlb_2026_20260403_mil_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-03T23:40:00Z", + "date": "2026-04-03", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "KC", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_mil", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260403_bos_mil", + "sport": "NBA", + "season": "2026", + "date": "2026-04-03", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Boston Celtics", + "home_team_abbrev": "MIL", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_bos", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260403_uta_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-04-03", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Utah Jazz", + "home_team_abbrev": "HOU", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_uta", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260403_tor_mem", + "sport": "NBA", + "season": "2026", + "date": "2026-04-03", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Toronto Raptors", + "home_team_abbrev": "MEM", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_tor", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260404_sdw_bos", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-03", + "time": "8p", + "home_team": "Boston Boston Legacy FC", + "away_team": "San Diego San Diego Wave", + "home_team_abbrev": "BOS", + "away_team_abbrev": "SDW", + "home_team_canonical_id": "team_nwsl_bos", + "away_team_canonical_id": "team_nwsl_sdw", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_nwsl_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260404_ang_orl", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-03", + "time": "8p", + "home_team": "Orlando Orlando Pride", + "away_team": "Los Angeles Angel City FC", + "home_team_abbrev": "ORL", + "away_team_abbrev": "ANG", + "home_team_canonical_id": "team_nwsl_orl", + "away_team_canonical_id": "team_nwsl_ang", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260403_orl_dal", + "sport": "NBA", + "season": "2026", + "date": "2026-04-03", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Orlando Magic", + "home_team_abbrev": "DAL", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_orl", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260404_rgn_hou", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-03", + "time": "7:30p", + "home_team": "Houston Houston Dash", + "away_team": "Louisville Racing Louisville", + "home_team_abbrev": "HOU", + "away_team_abbrev": "RGN", + "home_team_canonical_id": "team_nwsl_hou", + "away_team_canonical_id": "team_nwsl_rgn", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260404_chi_uta", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-03", + "time": "7p", + "home_team": "Utah Utah Royals", + "away_team": "Chicago Chicago Red Stars", + "home_team_abbrev": "UTA", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nwsl_uta", + "away_team_canonical_id": "team_nwsl_chi", + "venue": "America First Field", + "stadium_canonical_id": "stadium_nwsl_america_first_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -81139,10 +58197,17 @@ "canonical_id": "game_mlb_2026_20260404_sea_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-04T01:38:00Z", + "date": "2026-04-03", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Seattle Mariners", + "home_team_abbrev": "LAA", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_sea", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81150,10 +58215,17 @@ "canonical_id": "game_mlb_2026_20260404_hou_oak_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-04T01:40:00Z", + "date": "2026-04-03", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Houston Astros", + "home_team_abbrev": "OAK", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_hou", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81161,10 +58233,53 @@ "canonical_id": "game_mlb_2026_20260404_atl_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-04T01:40:00Z", + "date": "2026-04-03", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Atlanta Braves", + "home_team_abbrev": "ARI", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_atl", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260403_nop_sac", + "sport": "NBA", + "season": "2026", + "date": "2026-04-03", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "SAC", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_nop", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260403_stl_ana", + "sport": "NHL", + "season": "2026", + "date": "2026-04-03", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "St. Louis Blues", + "home_team_abbrev": "ANA", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -81172,208 +58287,71 @@ "canonical_id": "game_mlb_2026_20260404_nym_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-04T02:15:00Z", + "date": "2026-04-03", + "time": "7:15p", + "home_team": "San Francisco Giants", + "away_team": "New York Mets", + "home_team_abbrev": "SF", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_nym", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260404_was_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-04T04:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260404_nyi_car", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-04T04:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_nyi", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260404_wpg_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-04T04:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260404_mtl_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-04T04:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260404_det_nyr", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-04T04:00:00Z", + "season": "2026", + "date": "2026-04-04", + "time": "12:30p", + "home_team": "New York Rangers", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "NYR", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_nhl_nyr", "away_team_canonical_id": "team_nhl_det", + "venue": "Madison Square Garden", "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260404_col_tor", + "sport": "MLS", + "season": "2026", + "date": "2026-04-04", + "time": "1p", + "home_team": "Toronto Toronto FC", + "away_team": "Colorado Colorado Rapids", + "home_team_abbrev": "TOR", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mls_tor", + "away_team_canonical_id": "team_mls_col", + "venue": "BMO Field", + "stadium_canonical_id": "stadium_mls_bmo_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260404_min_ott", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-04T04:00:00Z", + "season": "2026", + "date": "2026-04-04", + "time": "1p", + "home_team": "Ottawa Senators", + "away_team": "Minnesota Wild", + "home_team_abbrev": "OTT", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nhl_ott", "away_team_canonical_id": "team_nhl_min", + "venue": "Canadian Tire Centre", "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260404_fla_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-04T04:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260404_bos_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-04T04:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_amalie_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260404_buf_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-04T04:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260404_col_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-04T05:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260404_sas_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-04T06:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_sas", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260404_vgk_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-04T06:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260404_det_phi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-04T07:00:00Z", - "home_team_canonical_id": "team_nba_phi", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260404_cgy_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-04T07:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260404_tor_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-04T07:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260404_chi_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-04T07:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260404_nsh_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-04T07:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_sap_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260404_ari_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-04T07:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -81381,10 +58359,17 @@ "canonical_id": "game_mlb_2026_20260404_stl_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-04T17:10:00Z", + "date": "2026-04-04", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "DET", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_stl", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81392,21 +58377,89 @@ "canonical_id": "game_mlb_2026_20260404_tor_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-04T18:10:00Z", + "date": "2026-04-04", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "CHW", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_tor", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260404_lad_wsn", - "sport": "MLB", + "canonical_id": "game_nba_2025_20260404_sas_den", + "sport": "NBA", "season": "2026", - "game_datetime_utc": "2026-04-04T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_nationals_park", + "date": "2026-04-04", + "time": "1p", + "home_team": "Denver Nuggets", + "away_team": "San Antonio Spurs", + "home_team_abbrev": "DEN", + "away_team_abbrev": "SAS", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_sas", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260404_was_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-04-04", + "time": "3p", + "home_team": "Miami Heat", + "away_team": "Washington Wizards", + "home_team_abbrev": "MIA", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_was", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260404_col_dal", + "sport": "NHL", + "season": "2026", + "date": "2026-04-04", + "time": "2p", + "home_team": "Dallas Stars", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "DAL", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_col", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260404_njy_kcc", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-04", + "time": "3p", + "home_team": "Kansas City Kansas City Current", + "away_team": "New Jersey NJ/NY Gotham FC", + "home_team_abbrev": "KCC", + "away_team_abbrev": "NJY", + "home_team_canonical_id": "team_nwsl_kcc", + "away_team_canonical_id": "team_nwsl_njy", + "venue": "CPKC Stadium", + "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -81414,10 +58467,17 @@ "canonical_id": "game_mlb_2026_20260404_hou_oak_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-04T20:05:00Z", + "date": "2026-04-04", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Houston Astros", + "home_team_abbrev": "OAK", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_hou", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81425,21 +58485,35 @@ "canonical_id": "game_mlb_2026_20260404_bal_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-04T20:05:00Z", + "date": "2026-04-04", + "time": "4:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "PIT", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_bal", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260404_sd_bos", + "canonical_id": "game_mlb_2026_20260404_lad_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-04T20:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_fenway_park", + "date": "2026-04-04", + "time": "4:05p", + "home_team": "Washington Nationals", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "WSN", + "away_team_abbrev": "LAD", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_lad", + "venue": "Nationals Park", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81447,21 +58521,251 @@ "canonical_id": "game_mlb_2026_20260404_mil_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-04T20:10:00Z", + "date": "2026-04-04", + "time": "3:10p", + "home_team": "Kansas City Royals", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "KC", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_mil", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260404_mia_nyy", + "canonical_id": "game_mlb_2026_20260404_sd_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-04T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "date": "2026-04-04", + "time": "4:10p", + "home_team": "Boston Red Sox", + "away_team": "San Diego Padres", + "home_team_abbrev": "BOS", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sd", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260404_skc_slc", + "sport": "MLS", + "season": "2026", + "date": "2026-04-04", + "time": "2:30p", + "home_team": "Salt Lake Real Salt Lake", + "away_team": "Kansas City Sporting Kansas City", + "home_team_abbrev": "SLC", + "away_team_abbrev": "SKC", + "home_team_canonical_id": "team_mls_slc", + "away_team_canonical_id": "team_mls_skc", + "venue": "America First Field", + "stadium_canonical_id": "stadium_mls_america_first_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260404_mtl_ne", + "sport": "MLS", + "season": "2026", + "date": "2026-04-04", + "time": "4:30p", + "home_team": "New England New England Revolution", + "away_team": "Montreal CF Montreal", + "home_team_abbrev": "NE", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_mls_ne", + "away_team_canonical_id": "team_mls_mtl", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_mls_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260404_bos_tb", + "sport": "NHL", + "season": "2026", + "date": "2026-04-04", + "time": "5p", + "home_team": "Tampa Bay Lightning", + "away_team": "Boston Bruins", + "home_team_abbrev": "TB", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260404_fla_pit", + "sport": "NHL", + "season": "2026", + "date": "2026-04-04", + "time": "5p", + "home_team": "Pittsburgh Penguins", + "away_team": "Florida Panthers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_fla", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260404_por_ncc", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-04", + "time": "6:30p", + "home_team": "North Carolina North Carolina Courage", + "away_team": "Portland Portland Thorns", + "home_team_abbrev": "NCC", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nwsl_ncc", + "away_team_canonical_id": "team_nwsl_por", + "venue": "WakeMed Soccer Park", + "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260404_det_phi", + "sport": "NBA", + "season": "2026", + "date": "2026-04-04", + "time": "4p", + "home_team": "Philadelphia 76ers", + "away_team": "Detroit Pistons", + "home_team_abbrev": "PHI", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_det", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260404_buf_was", + "sport": "NHL", + "season": "2026", + "date": "2026-04-04", + "time": "7p", + "home_team": "Washington Capitals", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "WAS", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260404_ari_van", + "sport": "NHL", + "season": "2026", + "date": "2026-04-04", + "time": "4p", + "home_team": "Vancouver Canucks", + "away_team": "Utah Club", + "home_team_abbrev": "VAN", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260404_tor_la", + "sport": "NHL", + "season": "2026", + "date": "2026-04-04", + "time": "4p", + "home_team": "Los Angeles Kings", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "LA", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260404_mtl_njd", + "sport": "NHL", + "season": "2026", + "date": "2026-04-04", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "NJ", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260404_nyi_car", + "sport": "NHL", + "season": "2026", + "date": "2026-04-04", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "New York Islanders", + "home_team_abbrev": "CAR", + "away_team_abbrev": "NYI", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_nyi", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260404_wpg_cbj", + "sport": "NHL", + "season": "2026", + "date": "2026-04-04", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -81469,10 +58773,35 @@ "canonical_id": "game_mlb_2026_20260404_cin_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-04T23:05:00Z", + "date": "2026-04-04", + "time": "6:05p", + "home_team": "Texas Rangers", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "TEX", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_cin", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260404_mia_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Miami Marlins", + "home_team_abbrev": "NYY", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_mia", + "venue": "Yankee Stadium", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81480,21 +58809,17 @@ "canonical_id": "game_mlb_2026_20260404_tbr_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-04T23:10:00Z", + "date": "2026-04-04", + "time": "6:10p", + "home_team": "Minnesota Twins", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "MIN", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260404_chc_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-04T23:15:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81502,10 +58827,143 @@ "canonical_id": "game_mlb_2026_20260404_atl_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-04T23:15:00Z", + "date": "2026-04-04", + "time": "4:15p", + "home_team": "Arizona Diamondbacks", + "away_team": "Atlanta Braves", + "home_team_abbrev": "ARI", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_atl", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260404_chc_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-04", + "time": "7:15p", + "home_team": "Cleveland Guardians", + "away_team": "Chicago Cubs", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CHC", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_chc", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260404_dal_dc", + "sport": "MLS", + "season": "2026", + "date": "2026-04-04", + "time": "7:30p", + "home_team": "Washington D.C. United", + "away_team": "Dallas FC Dallas", + "home_team_abbrev": "DC", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_mls_dc", + "away_team_canonical_id": "team_mls_dal", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_mls_audi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260404_aus_mia", + "sport": "MLS", + "season": "2026", + "date": "2026-04-04", + "time": "7:30p", + "home_team": "Miami Inter Miami", + "away_team": "Austin Austin FC", + "home_team_abbrev": "MIA", + "away_team_abbrev": "AUS", + "home_team_canonical_id": "team_mls_mia", + "away_team_canonical_id": "team_mls_aus", + "venue": "Miami Freedom Park", + "stadium_canonical_id": "stadium_mls_miami_freedom_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260404_clb_atl", + "sport": "MLS", + "season": "2026", + "date": "2026-04-04", + "time": "7:30p", + "home_team": "Atlanta Atlanta United", + "away_team": "Columbus Columbus Crew", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CLB", + "home_team_canonical_id": "team_mls_atl", + "away_team_canonical_id": "team_mls_clb", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260404_cin_ny", + "sport": "MLS", + "season": "2026", + "date": "2026-04-04", + "time": "7:30p", + "home_team": "New York New York Red Bulls", + "away_team": "Cincinnati FC Cincinnati", + "home_team_abbrev": "RB", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mls_ny", + "away_team_canonical_id": "team_mls_cin", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_mls_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260404_stl_nyc", + "sport": "MLS", + "season": "2026", + "date": "2026-04-04", + "time": "7:30p", + "home_team": "New York New York City FC", + "away_team": "St. Louis St. Louis City SC", + "home_team_abbrev": "NYC", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mls_nyc", + "away_team_canonical_id": "team_mls_stl", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mls_citi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260404_phi_clt", + "sport": "MLS", + "season": "2026", + "date": "2026-04-04", + "time": "7:30p", + "home_team": "Charlotte Charlotte FC", + "away_team": "Philadelphia Philadelphia Union", + "home_team_abbrev": "CLT", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mls_clt", + "away_team_canonical_id": "team_mls_phi", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -81513,10 +58971,71 @@ "canonical_id": "game_mlb_2026_20260405_phi_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-05T00:10:00Z", + "date": "2026-04-04", + "time": "6:10p", + "home_team": "Colorado Rockies", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "COL", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_phi", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260405_nsh_chi", + "sport": "MLS", + "season": "2026", + "date": "2026-04-04", + "time": "7:30p", + "home_team": "Chicago Chicago Fire", + "away_team": "Nashville Nashville SC", + "home_team_abbrev": "CHI", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_mls_chi", + "away_team_canonical_id": "team_mls_nsh", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_mls_soldier_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260405_sea_hou", + "sport": "MLS", + "season": "2026", + "date": "2026-04-04", + "time": "7:30p", + "home_team": "Houston Houston Dynamo", + "away_team": "Seattle Seattle Sounders", + "home_team_abbrev": "HOU", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mls_hou", + "away_team_canonical_id": "team_mls_sea", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_mls_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260405_den_sea", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-04", + "time": "5:45p", + "home_team": "Seattle Seattle Reign", + "away_team": "Denver Denver Summit FC", + "home_team_abbrev": "SEA", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nwsl_sea", + "away_team_canonical_id": "team_nwsl_den", + "venue": "ONE Spokane Stadium", + "stadium_canonical_id": "stadium_nwsl_one_spokane_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -81524,10 +59043,35 @@ "canonical_id": "game_mlb_2026_20260405_nym_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-05T01:05:00Z", + "date": "2026-04-04", + "time": "6:05p", + "home_team": "San Francisco Giants", + "away_team": "New York Mets", + "home_team_abbrev": "SF", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_nym", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260405_orl_lafc", + "sport": "MLS", + "season": "2026", + "date": "2026-04-04", + "time": "6:30p", + "home_team": "Los Angeles Los Angeles FC", + "away_team": "Orlando Orlando City", + "home_team_abbrev": "LAFC", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_mls_lafc", + "away_team_canonical_id": "team_mls_orl", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -81535,208 +59079,161 @@ "canonical_id": "game_mlb_2026_20260405_sea_laa_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-05T01:38:00Z", + "date": "2026-04-04", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Seattle Mariners", + "home_team_abbrev": "LAA", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_sea", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260405_tor_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-05T04:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_td_garden", + "canonical_id": "game_nhl_2025_20260404_cgy_ana", + "sport": "NHL", + "season": "2026", + "date": "2026-04-04", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Calgary Flames", + "home_team_abbrev": "ANA", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260405_was_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-05T04:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_barclays_center", + "canonical_id": "game_nhl_2025_20260404_chi_sea", + "sport": "NHL", + "season": "2026", + "date": "2026-04-04", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_chi", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260404_vgk_edm", + "sport": "NHL", + "season": "2026", + "date": "2026-04-04", + "time": "8p", + "home_team": "Edmonton Oilers", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "EDM", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260404_nsh_sj", + "sport": "NHL", + "season": "2026", + "date": "2026-04-04", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Nashville Predators", + "home_team_abbrev": "SJ", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260405_min_lag", + "sport": "MLS", + "season": "2026", + "date": "2026-04-04", + "time": "7:30p", + "home_team": "Los Angeles LA Galaxy", + "away_team": "Minnesota Minnesota United", + "home_team_abbrev": "LAG", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mls_lag", + "away_team_canonical_id": "team_mls_min", + "venue": "Dignity Health Sports Park", + "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260405_sd_sj", + "sport": "MLS", + "season": "2026", + "date": "2026-04-04", + "time": "7:30p", + "home_team": "San Jose San Jose Earthquakes", + "away_team": "San Diego San Diego FC", + "home_team_abbrev": "SJ", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mls_sj", + "away_team_canonical_id": "team_mls_sd", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_mls_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260405_por_van", + "sport": "MLS", + "season": "2026", + "date": "2026-04-04", + "time": "7:30p", + "home_team": "Vancouver Vancouver Whitecaps", + "away_team": "Portland Portland Timbers", + "home_team_abbrev": "VAN", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_mls_van", + "away_team_canonical_id": "team_mls_por", + "venue": "BC Place", + "stadium_canonical_id": "stadium_mls_bc_place", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260405_min_det", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-05T04:00:00Z", + "season": "2026", + "date": "2026-04-05", + "time": "1p", + "home_team": "Detroit Red Wings", + "away_team": "Minnesota Wild", + "home_team_abbrev": "DET", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_nhl_det", "away_team_canonical_id": "team_nhl_min", + "venue": "Little Caesars Arena", "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260405_njd_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-05T04:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260405_was_nyr", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-05T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260405_car_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-05T04:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260405_bos_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-05T04:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260405_fla_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-05T04:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260405_phx_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-05T05:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260405_mem_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-05T05:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260405_ind_cle", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-05T05:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260405_cho_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-05T05:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260405_orl_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-05T05:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260405_uta_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-05T05:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260405_lal_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-05T05:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260405_stl_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-05T06:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260405_lac_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-05T07:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260405_hou_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-05T07:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_chase_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -81744,10 +59241,17 @@ "canonical_id": "game_mlb_2026_20260405_sd_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-05T17:35:00Z", + "date": "2026-04-05", + "time": "1:35p", + "home_team": "Boston Red Sox", + "away_team": "San Diego Padres", + "home_team_abbrev": "BOS", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_sd", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81755,21 +59259,17 @@ "canonical_id": "game_mlb_2026_20260405_mia_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-05T17:35:00Z", + "date": "2026-04-05", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Miami Marlins", + "home_team_abbrev": "NYY", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_mia", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260405_lad_wsn", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-05T17:35:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81777,10 +59277,35 @@ "canonical_id": "game_mlb_2026_20260405_bal_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-05T17:35:00Z", + "date": "2026-04-05", + "time": "1:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "PIT", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_bal", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260405_lad_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "1:35p", + "home_team": "Washington Nationals", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "WSN", + "away_team_abbrev": "LAD", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_lad", + "venue": "Nationals Park", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81788,32 +59313,17 @@ "canonical_id": "game_mlb_2026_20260405_chc_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-05T17:40:00Z", + "date": "2026-04-05", + "time": "1:40p", + "home_team": "Cleveland Guardians", + "away_team": "Chicago Cubs", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_chc", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260405_tor_chw", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-05T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260405_tbr_min", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-05T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81821,10 +59331,53 @@ "canonical_id": "game_mlb_2026_20260405_mil_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-05T18:10:00Z", + "date": "2026-04-05", + "time": "1:10p", + "home_team": "Kansas City Royals", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "KC", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_mil", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260405_tor_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "CHW", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_tor", + "venue": "Guaranteed Rate Field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260405_tbr_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-05", + "time": "1:10p", + "home_team": "Minnesota Twins", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "MIN", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Target Field", + "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81832,10 +59385,35 @@ "canonical_id": "game_mlb_2026_20260405_cin_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-05T18:35:00Z", + "date": "2026-04-05", + "time": "1:35p", + "home_team": "Texas Rangers", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "TEX", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_cin", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260405_fla_pit", + "sport": "NHL", + "season": "2026", + "date": "2026-04-05", + "time": "3p", + "home_team": "Pittsburgh Penguins", + "away_team": "Florida Panthers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_fla", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -81843,10 +59421,107 @@ "canonical_id": "game_mlb_2026_20260405_phi_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-05T19:10:00Z", + "date": "2026-04-05", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "COL", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_phi", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260405_was_brk", + "sport": "NBA", + "season": "2026", + "date": "2026-04-05", + "time": "3:30p", + "home_team": "Brooklyn Nets", + "away_team": "Washington Wizards", + "home_team_abbrev": "BKN", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_was", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260405_mem_mil", + "sport": "NBA", + "season": "2026", + "date": "2026-04-05", + "time": "2:30p", + "home_team": "Milwaukee Bucks", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "MIL", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_mem", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260405_tor_bos", + "sport": "NBA", + "season": "2026", + "date": "2026-04-05", + "time": "3:30p", + "home_team": "Boston Celtics", + "away_team": "Toronto Raptors", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_tor", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260405_phx_chi", + "sport": "NBA", + "season": "2026", + "date": "2026-04-05", + "time": "2:30p", + "home_team": "Chicago Bulls", + "away_team": "Phoenix Suns", + "home_team_abbrev": "CHI", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_phx", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260405_bos_phi", + "sport": "NHL", + "season": "2026", + "date": "2026-04-05", + "time": "3:30p", + "home_team": "Philadelphia Flyers", + "away_team": "Boston Bruins", + "home_team_abbrev": "PHI", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -81854,10 +59529,17 @@ "canonical_id": "game_mlb_2026_20260405_nym_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-05T20:05:00Z", + "date": "2026-04-05", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "New York Mets", + "home_team_abbrev": "SF", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_nym", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81865,10 +59547,17 @@ "canonical_id": "game_mlb_2026_20260405_hou_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-05T20:05:00Z", + "date": "2026-04-05", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Houston Astros", + "home_team_abbrev": "OAK", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_hou", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81876,10 +59565,17 @@ "canonical_id": "game_mlb_2026_20260405_sea_laa_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-05T20:07:00Z", + "date": "2026-04-05", + "time": "1:07p", + "home_team": "Los Angeles Angels", + "away_team": "Seattle Mariners", + "home_team_abbrev": "LAA", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_sea", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -81887,10 +59583,161 @@ "canonical_id": "game_mlb_2026_20260405_atl_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-05T20:10:00Z", + "date": "2026-04-05", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Atlanta Braves", + "home_team_abbrev": "ARI", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_atl", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260405_car_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-04-05", + "time": "5p", + "home_team": "Ottawa Senators", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "OTT", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_car", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260405_wsh_bay", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-05", + "time": "2p", + "home_team": "San Francisco Bay FC", + "away_team": "Washington Washington Spirit", + "home_team_abbrev": "BAY", + "away_team_abbrev": "WSH", + "home_team_canonical_id": "team_nwsl_bay", + "away_team_canonical_id": "team_nwsl_wsh", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_nwsl_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260405_ind_cle", + "sport": "NBA", + "season": "2026", + "date": "2026-04-05", + "time": "5p", + "home_team": "Cleveland Cavaliers", + "away_team": "Indiana Pacers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_ind", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260405_orl_nop", + "sport": "NBA", + "season": "2026", + "date": "2026-04-05", + "time": "6p", + "home_team": "New Orleans Pelicans", + "away_team": "Orlando Magic", + "home_team_abbrev": "NOP", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_orl", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260405_cho_min", + "sport": "NBA", + "season": "2026", + "date": "2026-04-05", + "time": "6p", + "home_team": "Minnesota Timberwolves", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_cho", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260405_uta_okc", + "sport": "NBA", + "season": "2026", + "date": "2026-04-05", + "time": "6p", + "home_team": "Oklahoma City Thunder", + "away_team": "Utah Jazz", + "home_team_abbrev": "OKC", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_uta", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260405_was_nyr", + "sport": "NHL", + "season": "2026", + "date": "2026-04-05", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Washington Capitals", + "home_team_abbrev": "NYR", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_was", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260405_njd_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-04-05", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "New Jersey Devils", + "home_team_abbrev": "MTL", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_njd", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -81898,109 +59745,89 @@ "canonical_id": "game_mlb_2026_20260405_stl_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-05T23:20:00Z", + "date": "2026-04-05", + "time": "7:20p", + "home_team": "Detroit Tigers", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "DET", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_stl", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260406_nyk_atl", + "canonical_id": "game_nba_2025_20260405_lal_dal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-06T04:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_nyk", - "stadium_canonical_id": "stadium_nba_state_farm_arena", + "season": "2026", + "date": "2026-04-05", + "time": "6:30p", + "home_team": "Dallas Mavericks", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "DAL", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_lal", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260406_det_orl", + "canonical_id": "game_nba_2025_20260405_lac_sac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-06T04:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_kia_center", + "season": "2026", + "date": "2026-04-05", + "time": "6p", + "home_team": "Sacramento Kings", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "SAC", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_lac", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260406_tb_buf", + "canonical_id": "game_nhl_2025_20260405_stl_col", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-06T04:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_keybank_center", + "season": "2026", + "date": "2026-04-05", + "time": "7:30p", + "home_team": "Colorado Avalanche", + "away_team": "St. Louis Blues", + "home_team_abbrev": "COL", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260406_cle_mem", + "canonical_id": "game_nba_2025_20260405_hou_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-06T05:00:00Z", - "home_team_canonical_id": "team_nba_mem", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_fedexforum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260406_phi_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-06T05:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260406_sea_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-06T05:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260406_por_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-06T06:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260406_nsh_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-06T07:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260406_chi_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-06T07:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_chi", - "stadium_canonical_id": "stadium_nhl_sap_center", + "season": "2026", + "date": "2026-04-05", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Houston Rockets", + "home_team_abbrev": "GSW", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_hou", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -82008,10 +59835,17 @@ "canonical_id": "game_mlb_2026_20260406_chc_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-06T20:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-04-06", + "time": "4:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Chicago Cubs", + "home_team_abbrev": "TB", + "away_team_abbrev": "CHC", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_chc", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82019,21 +59853,17 @@ "canonical_id": "game_mlb_2026_20260406_kc_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-06T22:10:00Z", + "date": "2026-04-06", + "time": "6:10p", + "home_team": "Cleveland Guardians", + "away_team": "Kansas City Royals", + "home_team_abbrev": "CLE", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_kc", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260406_sd_pit", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-06T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82041,10 +59871,35 @@ "canonical_id": "game_mlb_2026_20260406_cin_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-06T22:40:00Z", + "date": "2026-04-06", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_cin", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260406_sd_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-06", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "San Diego Padres", + "home_team_abbrev": "PIT", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sd", + "venue": "PNC Park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82052,10 +59907,17 @@ "canonical_id": "game_mlb_2026_20260406_stl_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-06T22:45:00Z", + "date": "2026-04-06", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "WSN", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_stl", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82063,10 +59925,71 @@ "canonical_id": "game_mlb_2026_20260406_mil_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-06T22:45:00Z", + "date": "2026-04-06", + "time": "6:45p", + "home_team": "Boston Red Sox", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_mil", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260406_det_orl", + "sport": "NBA", + "season": "2026", + "date": "2026-04-06", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Detroit Pistons", + "home_team_abbrev": "ORL", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_det", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260406_nyk_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-04-06", + "time": "7p", + "home_team": "Atlanta Hawks", + "away_team": "New York Knicks", + "home_team_abbrev": "ATL", + "away_team_abbrev": "NYK", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_nyk", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260406_tb_buf", + "sport": "NHL", + "season": "2026", + "date": "2026-04-06", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "BUF", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_tb", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -82074,10 +59997,35 @@ "canonical_id": "game_mlb_2026_20260406_lad_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-06T23:07:00Z", + "date": "2026-04-06", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_lad", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260406_sea_wpg", + "sport": "NHL", + "season": "2026", + "date": "2026-04-06", + "time": "6:30p", + "home_team": "Winnipeg Jets", + "away_team": "Seattle Kraken", + "home_team_abbrev": "WPG", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -82085,10 +60033,17 @@ "canonical_id": "game_mlb_2026_20260406_det_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-06T23:40:00Z", + "date": "2026-04-06", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Detroit Tigers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_det", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82096,10 +60051,53 @@ "canonical_id": "game_mlb_2026_20260406_bal_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-06T23:40:00Z", + "date": "2026-04-06", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "CHW", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_bal", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260406_phi_sas", + "sport": "NBA", + "season": "2026", + "date": "2026-04-06", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "SAS", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_phi", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260406_cle_mem", + "sport": "NBA", + "season": "2026", + "date": "2026-04-06", + "time": "7p", + "home_team": "Memphis Grizzlies", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "MEM", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_mem", + "away_team_canonical_id": "team_nba_cle", + "venue": "FedExForum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -82107,10 +60105,17 @@ "canonical_id": "game_mlb_2026_20260407_sea_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-07T00:05:00Z", + "date": "2026-04-06", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Seattle Mariners", + "home_team_abbrev": "TEX", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_sea", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82118,10 +60123,35 @@ "canonical_id": "game_mlb_2026_20260407_hou_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-07T00:40:00Z", + "date": "2026-04-06", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Houston Astros", + "home_team_abbrev": "COL", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_hou", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260406_por_den", + "sport": "NBA", + "season": "2026", + "date": "2026-04-06", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Portland Blazers", + "home_team_abbrev": "DEN", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_por", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -82129,10 +60159,17 @@ "canonical_id": "game_mlb_2026_20260407_atl_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-07T01:38:00Z", + "date": "2026-04-06", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Atlanta Braves", + "home_team_abbrev": "LAA", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_atl", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82140,241 +60177,53 @@ "canonical_id": "game_mlb_2026_20260407_phi_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-07T01:45:00Z", + "date": "2026-04-06", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "SF", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_phi", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260407_chi_was", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T04:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260407_cho_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T04:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260407_mil_brk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T04:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_barclays_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260407_mia_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T04:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260407_min_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T04:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260407_hou_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T04:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_hou", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260407_bos_car", + "canonical_id": "game_nhl_2025_20260406_chi_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T04:00:00Z", - "home_team_canonical_id": "team_nhl_car", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_pnc_arena", + "season": "2026", + "date": "2026-04-06", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Chicago Blackhawks", + "home_team_abbrev": "SJ", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_chi", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260407_cbj_det", + "canonical_id": "game_nhl_2025_20260406_nsh_la", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T04:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260407_fla_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T04:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260407_phi_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T04:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260407_tb_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T04:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260407_uta_nop", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T05:00:00Z", - "home_team_canonical_id": "team_nba_nop", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260407_cgy_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T05:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260407_sea_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T05:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260407_col_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T05:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260407_edm_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T06:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260407_sac_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T07:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260407_okc_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T07:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260407_dal_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T07:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260407_nsh_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T07:00:00Z", - "home_team_canonical_id": "team_nhl_ana", + "season": "2026", + "date": "2026-04-06", + "time": "7:30p", + "home_team": "Los Angeles Kings", + "away_team": "Nashville Predators", + "home_team_abbrev": "LA", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_la", "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260407_vgk_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-07T07:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_rogers_arena", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -82382,32 +60231,17 @@ "canonical_id": "game_mlb_2026_20260407_kc_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-07T22:10:00Z", + "date": "2026-04-07", + "time": "6:10p", + "home_team": "Cleveland Guardians", + "away_team": "Kansas City Royals", + "home_team_abbrev": "CLE", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_kc", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260407_sd_pit", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-07T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260407_cin_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-07T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82415,21 +60249,53 @@ "canonical_id": "game_mlb_2026_20260407_chc_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-07T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-04-07", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Chicago Cubs", + "home_team_abbrev": "TB", + "away_team_abbrev": "CHC", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_chc", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260407_stl_wsn", + "canonical_id": "game_mlb_2026_20260407_cin_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-07T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_nationals_park", + "date": "2026-04-07", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_cin", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260407_sd_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "San Diego Padres", + "home_team_abbrev": "PIT", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sd", + "venue": "PNC Park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82437,10 +60303,143 @@ "canonical_id": "game_mlb_2026_20260407_mil_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-07T22:45:00Z", + "date": "2026-04-07", + "time": "6:45p", + "home_team": "Boston Red Sox", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_mil", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260407_stl_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-07", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "WSN", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_stl", + "venue": "Nationals Park", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260407_chi_was", + "sport": "NBA", + "season": "2026", + "date": "2026-04-07", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Chicago Bulls", + "home_team_abbrev": "WAS", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_chi", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260407_cbj_det", + "sport": "NHL", + "season": "2026", + "date": "2026-04-07", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "DET", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260407_tb_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-04-07", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "OTT", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260407_phi_njd", + "sport": "NHL", + "season": "2026", + "date": "2026-04-07", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "NJ", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_phi", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260407_fla_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-04-07", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Florida Panthers", + "home_team_abbrev": "MTL", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260407_bos_car", + "sport": "NHL", + "season": "2026", + "date": "2026-04-07", + "time": "7p", + "home_team": "Carolina Hurricanes", + "away_team": "Boston Bruins", + "home_team_abbrev": "CAR", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_car", + "away_team_canonical_id": "team_nhl_bos", + "venue": "PNC Arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -82448,10 +60447,17 @@ "canonical_id": "game_mlb_2026_20260407_oak_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-07T23:05:00Z", + "date": "2026-04-07", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Oakland Athletics", + "home_team_abbrev": "NYY", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_oak", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82459,10 +60465,17 @@ "canonical_id": "game_mlb_2026_20260407_lad_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-07T23:07:00Z", + "date": "2026-04-07", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_lad", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82470,10 +60483,71 @@ "canonical_id": "game_mlb_2026_20260407_ari_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-07T23:10:00Z", + "date": "2026-04-07", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "NYM", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_ari", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260407_cho_bos", + "sport": "NBA", + "season": "2026", + "date": "2026-04-07", + "time": "7:30p", + "home_team": "Boston Celtics", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_cho", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260407_mil_brk", + "sport": "NBA", + "season": "2026", + "date": "2026-04-07", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "BKN", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_mil", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260407_mia_tor", + "sport": "NBA", + "season": "2026", + "date": "2026-04-07", + "time": "7:30p", + "home_team": "Toronto Raptors", + "away_team": "Miami Heat", + "home_team_abbrev": "TOR", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_mia", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -82481,10 +60555,17 @@ "canonical_id": "game_mlb_2026_20260407_det_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-07T23:40:00Z", + "date": "2026-04-07", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Detroit Tigers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_det", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82492,10 +60573,107 @@ "canonical_id": "game_mlb_2026_20260407_bal_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-07T23:40:00Z", + "date": "2026-04-07", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "CHW", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_bal", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260407_uta_nop", + "sport": "NBA", + "season": "2026", + "date": "2026-04-07", + "time": "7p", + "home_team": "New Orleans Pelicans", + "away_team": "Utah Jazz", + "home_team_abbrev": "NOP", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_nop", + "away_team_canonical_id": "team_nba_uta", + "venue": "Smoothie King Center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260407_min_ind", + "sport": "NBA", + "season": "2026", + "date": "2026-04-07", + "time": "8p", + "home_team": "Indiana Pacers", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "IND", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_min", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260407_col_stl", + "sport": "NHL", + "season": "2026", + "date": "2026-04-07", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "STL", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_col", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260407_sea_min", + "sport": "NHL", + "season": "2026", + "date": "2026-04-07", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "Seattle Kraken", + "home_team_abbrev": "MIN", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260407_cgy_dal", + "sport": "NHL", + "season": "2026", + "date": "2026-04-07", + "time": "7p", + "home_team": "Dallas Stars", + "away_team": "Calgary Flames", + "home_team_abbrev": "DAL", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -82503,10 +60681,17 @@ "canonical_id": "game_mlb_2026_20260408_sea_tex_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-08T00:05:00Z", + "date": "2026-04-07", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Seattle Mariners", + "home_team_abbrev": "TEX", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_sea", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82514,10 +60699,35 @@ "canonical_id": "game_mlb_2026_20260408_hou_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-08T00:40:00Z", + "date": "2026-04-07", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Houston Astros", + "home_team_abbrev": "COL", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_hou", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260407_edm_ari", + "sport": "NHL", + "season": "2026", + "date": "2026-04-07", + "time": "7:30p", + "home_team": "Utah Club", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -82525,10 +60735,17 @@ "canonical_id": "game_mlb_2026_20260408_atl_laa_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-08T01:38:00Z", + "date": "2026-04-07", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Atlanta Braves", + "home_team_abbrev": "LAA", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_atl", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82536,120 +60753,125 @@ "canonical_id": "game_mlb_2026_20260408_phi_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-08T01:45:00Z", + "date": "2026-04-07", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "SF", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_phi", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260408_min_orl", + "canonical_id": "game_nba_2025_20260407_sac_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-08T04:00:00Z", - "home_team_canonical_id": "team_nba_orl", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_kia_center", + "season": "2026", + "date": "2026-04-07", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Sacramento Kings", + "home_team_abbrev": "GSW", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_sac", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260408_mil_det", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-08T04:00:00Z", - "home_team_canonical_id": "team_nba_det", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260408_dal_phx", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-08T04:00:00Z", - "home_team_canonical_id": "team_nba_phx", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260408_buf_nyr", + "canonical_id": "game_nhl_2025_20260407_nsh_ana", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-08T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyr", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "season": "2026", + "date": "2026-04-07", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "Nashville Predators", + "home_team_abbrev": "ANA", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260408_was_tor", + "canonical_id": "game_nhl_2025_20260407_vgk_van", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-08T04:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "season": "2026", + "date": "2026-04-07", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "VAN", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260408_atl_cle", + "canonical_id": "game_nba_2025_20260407_okc_lal", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-08T05:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260408_por_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-08T05:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_por", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260408_mem_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-08T06:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260408_okc_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-08T07:00:00Z", - "home_team_canonical_id": "team_nba_lac", + "season": "2026", + "date": "2026-04-07", + "time": "7:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "LAL", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_lal", "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_intuit_dome", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260408_edm_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-08T07:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_sap_center", + "canonical_id": "game_nba_2025_20260407_dal_lac", + "sport": "NBA", + "season": "2026", + "date": "2026-04-07", + "time": "7:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "LAC", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_dal", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260407_hou_phx", + "sport": "NBA", + "season": "2026", + "date": "2026-04-07", + "time": "11p", + "home_team": "Phoenix Suns", + "away_team": "Houston Rockets", + "home_team_abbrev": "PHX", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_hou", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -82657,10 +60879,17 @@ "canonical_id": "game_mlb_2026_20260408_sd_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-08T16:35:00Z", + "date": "2026-04-08", + "time": "12:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "San Diego Padres", + "home_team_abbrev": "PIT", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_sd", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82668,10 +60897,17 @@ "canonical_id": "game_mlb_2026_20260408_kc_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-08T17:10:00Z", + "date": "2026-04-08", + "time": "1:10p", + "home_team": "Cleveland Guardians", + "away_team": "Kansas City Royals", + "home_team_abbrev": "CLE", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_kc", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82679,10 +60915,17 @@ "canonical_id": "game_mlb_2026_20260408_mil_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-08T17:35:00Z", + "date": "2026-04-08", + "time": "1:35p", + "home_team": "Boston Red Sox", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_mil", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82690,10 +60933,17 @@ "canonical_id": "game_mlb_2026_20260408_bal_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-08T18:10:00Z", + "date": "2026-04-08", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "CHW", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_bal", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82701,10 +60951,17 @@ "canonical_id": "game_mlb_2026_20260408_sea_tex_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-08T18:35:00Z", + "date": "2026-04-08", + "time": "1:35p", + "home_team": "Texas Rangers", + "away_team": "Seattle Mariners", + "home_team_abbrev": "TEX", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_sea", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82712,10 +60969,17 @@ "canonical_id": "game_mlb_2026_20260408_lad_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-08T19:07:00Z", + "date": "2026-04-08", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_lad", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82723,10 +60987,17 @@ "canonical_id": "game_mlb_2026_20260408_hou_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-08T19:10:00Z", + "date": "2026-04-08", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Houston Astros", + "home_team_abbrev": "COL", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_hou", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82734,10 +61005,17 @@ "canonical_id": "game_mlb_2026_20260408_phi_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-08T19:45:00Z", + "date": "2026-04-08", + "time": "12:45p", + "home_team": "San Francisco Giants", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "SF", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_phi", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82745,10 +61023,17 @@ "canonical_id": "game_mlb_2026_20260408_stl_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-08T20:05:00Z", + "date": "2026-04-08", + "time": "4:05p", + "home_team": "Washington Nationals", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "WSN", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_stl", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82756,21 +61041,17 @@ "canonical_id": "game_mlb_2026_20260408_atl_laa_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-08T20:07:00Z", + "date": "2026-04-08", + "time": "1:07p", + "home_team": "Los Angeles Angels", + "away_team": "Atlanta Braves", + "home_team_abbrev": "LAA", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_atl", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260408_cin_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-08T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82778,10 +61059,89 @@ "canonical_id": "game_mlb_2026_20260408_chc_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-08T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-04-08", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Chicago Cubs", + "home_team_abbrev": "TB", + "away_team_abbrev": "CHC", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_chc", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260408_cin_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-08", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_cin", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260408_atl_cle", + "sport": "NBA", + "season": "2026", + "date": "2026-04-08", + "time": "6p", + "home_team": "Cleveland Cavaliers", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "CLE", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_atl", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260408_min_orl", + "sport": "NBA", + "season": "2026", + "date": "2026-04-08", + "time": "7p", + "home_team": "Orlando Magic", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "ORL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_orl", + "away_team_canonical_id": "team_nba_min", + "venue": "Kia Center", + "stadium_canonical_id": "stadium_nba_kia_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260408_buf_nyr", + "sport": "NHL", + "season": "2026", + "date": "2026-04-08", + "time": "7p", + "home_team": "New York Rangers", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "NYR", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_nyr", + "away_team_canonical_id": "team_nhl_buf", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -82789,10 +61149,17 @@ "canonical_id": "game_mlb_2026_20260408_oak_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-08T23:05:00Z", + "date": "2026-04-08", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Oakland Athletics", + "home_team_abbrev": "NYY", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_oak", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -82800,10 +61167,53 @@ "canonical_id": "game_mlb_2026_20260408_ari_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-08T23:10:00Z", + "date": "2026-04-08", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "NYM", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_ari", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260408_mil_det", + "sport": "NBA", + "season": "2026", + "date": "2026-04-08", + "time": "7:30p", + "home_team": "Detroit Pistons", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "DET", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_det", + "away_team_canonical_id": "team_nba_mil", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260408_was_tor", + "sport": "NHL", + "season": "2026", + "date": "2026-04-08", + "time": "7:30p", + "home_team": "Toronto Maple Leafs", + "away_team": "Washington Capitals", + "home_team_abbrev": "TOR", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_was", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -82811,230 +61221,107 @@ "canonical_id": "game_mlb_2026_20260408_det_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-08T23:40:00Z", + "date": "2026-04-08", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Detroit Tigers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_det", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260409_mia_tor", + "canonical_id": "game_nba_2025_20260408_por_sas", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T04:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "season": "2026", + "date": "2026-04-08", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Portland Blazers", + "home_team_abbrev": "SAS", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_por", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260409_chi_was", + "canonical_id": "game_nba_2025_20260408_mem_den", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T04:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_capital_one_arena", + "season": "2026", + "date": "2026-04-08", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "DEN", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_mem", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260409_ind_brk", + "canonical_id": "game_nba_2025_20260408_okc_lac", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T04:00:00Z", - "home_team_canonical_id": "team_nba_brk", - "away_team_canonical_id": "team_nba_ind", - "stadium_canonical_id": "stadium_nba_barclays_center", + "season": "2026", + "date": "2026-04-08", + "time": "7p", + "home_team": "Los Angeles Clippers", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "LAC", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_okc", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260409_bos_nyk", + "canonical_id": "game_nba_2025_20260408_dal_phx", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T04:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_bos", - "stadium_canonical_id": "stadium_nba_madison_square_garden", + "season": "2026", + "date": "2026-04-08", + "time": "10p", + "home_team": "Phoenix Suns", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "PHX", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_phx", + "away_team_canonical_id": "team_nba_dal", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260409_cbj_buf", + "canonical_id": "game_nhl_2025_20260408_edm_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T04:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260409_phi_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T04:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260409_tb_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T04:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_tb", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260409_pit_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T04:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260409_tor_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260409_fla_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T04:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260409_phi_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T05:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260409_car_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T05:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260409_min_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T05:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260409_wpg_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T05:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260409_cgy_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T06:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260409_nsh_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T06:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_nsh", - "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260409_lal_gsw", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T07:00:00Z", - "home_team_canonical_id": "team_nba_gsw", - "away_team_canonical_id": "team_nba_lal", - "stadium_canonical_id": "stadium_nba_chase_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260409_sj_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T07:00:00Z", - "home_team_canonical_id": "team_nhl_ana", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_honda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260409_van_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T07:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260409_vgk_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-09T07:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "season": "2026", + "date": "2026-04-08", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "SJ", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_sj", + "away_team_canonical_id": "team_nhl_edm", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -83042,10 +61329,17 @@ "canonical_id": "game_mlb_2026_20260409_cin_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-09T16:10:00Z", + "date": "2026-04-09", + "time": "12:10p", + "home_team": "Miami Marlins", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_cin", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -83053,10 +61347,17 @@ "canonical_id": "game_mlb_2026_20260409_oak_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-09T17:35:00Z", + "date": "2026-04-09", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Oakland Athletics", + "home_team_abbrev": "NYY", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_oak", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -83064,10 +61365,161 @@ "canonical_id": "game_mlb_2026_20260409_det_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-09T17:40:00Z", + "date": "2026-04-09", + "time": "12:40p", + "home_team": "Minnesota Twins", + "away_team": "Detroit Tigers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_det", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260409_tor_nyi", + "sport": "NHL", + "season": "2026", + "date": "2026-04-09", + "time": "6:45p", + "home_team": "New York Islanders", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "NYI", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_tor", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260409_mia_tor", + "sport": "NBA", + "season": "2026", + "date": "2026-04-09", + "time": "7p", + "home_team": "Toronto Raptors", + "away_team": "Miami Heat", + "home_team_abbrev": "TOR", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_mia", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260409_chi_was", + "sport": "NBA", + "season": "2026", + "date": "2026-04-09", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Chicago Bulls", + "home_team_abbrev": "WAS", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_chi", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260409_fla_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-04-09", + "time": "7p", + "home_team": "Ottawa Senators", + "away_team": "Florida Panthers", + "home_team_abbrev": "OTT", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260409_pit_njd", + "sport": "NHL", + "season": "2026", + "date": "2026-04-09", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "NJ", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_pit", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260409_tb_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-04-09", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "MTL", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_tb", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260409_phi_det", + "sport": "NHL", + "season": "2026", + "date": "2026-04-09", + "time": "7p", + "home_team": "Detroit Red Wings", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "DET", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_phi", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260409_cbj_buf", + "sport": "NHL", + "season": "2026", + "date": "2026-04-09", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "BUF", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -83075,10 +61527,53 @@ "canonical_id": "game_mlb_2026_20260409_ari_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-09T23:10:00Z", + "date": "2026-04-09", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "NYM", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_ari", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260409_ind_brk", + "sport": "NBA", + "season": "2026", + "date": "2026-04-09", + "time": "7:30p", + "home_team": "Brooklyn Nets", + "away_team": "Indiana Pacers", + "home_team_abbrev": "BKN", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_nba_brk", + "away_team_canonical_id": "team_nba_ind", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260409_bos_nyk", + "sport": "NBA", + "season": "2026", + "date": "2026-04-09", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Boston Celtics", + "home_team_abbrev": "NYK", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_bos", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -83086,10 +61581,125 @@ "canonical_id": "game_mlb_2026_20260409_chw_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-09T23:40:00Z", + "date": "2026-04-09", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Chicago White Sox", + "home_team_abbrev": "KC", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_chw", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260409_phi_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-04-09", + "time": "7p", + "home_team": "Houston Rockets", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_phi", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260409_wpg_stl", + "sport": "NHL", + "season": "2026", + "date": "2026-04-09", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "STL", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260409_car_chi", + "sport": "NHL", + "season": "2026", + "date": "2026-04-09", + "time": "7:30p", + "home_team": "Chicago Blackhawks", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "CHI", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_car", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260409_nsh_ari", + "sport": "NHL", + "season": "2026", + "date": "2026-04-09", + "time": "7p", + "home_team": "Utah Club", + "away_team": "Nashville Predators", + "home_team_abbrev": "ARI", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_nsh", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260409_cgy_col", + "sport": "NHL", + "season": "2026", + "date": "2026-04-09", + "time": "7p", + "home_team": "Colorado Avalanche", + "away_team": "Calgary Flames", + "home_team_abbrev": "COL", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260409_min_dal", + "sport": "NHL", + "season": "2026", + "date": "2026-04-09", + "time": "8p", + "home_team": "Dallas Stars", + "away_team": "Minnesota Wild", + "home_team_abbrev": "DAL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_min", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -83097,175 +61707,89 @@ "canonical_id": "game_mlb_2026_20260410_col_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-10T01:40:00Z", + "date": "2026-04-09", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Colorado Rockies", + "home_team_abbrev": "SD", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_col", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260410_mia_was", + "canonical_id": "game_nba_2025_20260409_lal_gsw", "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-10T04:00:00Z", - "home_team_canonical_id": "team_nba_was", - "away_team_canonical_id": "team_nba_mia", - "stadium_canonical_id": "stadium_nba_capital_one_arena", + "season": "2026", + "date": "2026-04-09", + "time": "7p", + "home_team": "Golden State Warriors", + "away_team": "Los Angeles Lakers", + "home_team_abbrev": "GSW", + "away_team_abbrev": "LAL", + "home_team_canonical_id": "team_nba_gsw", + "away_team_canonical_id": "team_nba_lal", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_nba_chase_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260410_det_cho", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-10T04:00:00Z", - "home_team_canonical_id": "team_nba_cho", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_spectrum_center", + "canonical_id": "game_nhl_2025_20260409_vgk_sea", + "sport": "NHL", + "season": "2026", + "date": "2026-04-09", + "time": "7p", + "home_team": "Seattle Kraken", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "SEA", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260410_cle_atl", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-10T04:00:00Z", - "home_team_canonical_id": "team_nba_atl", - "away_team_canonical_id": "team_nba_cle", - "stadium_canonical_id": "stadium_nba_state_farm_arena", + "canonical_id": "game_nhl_2025_20260409_sj_ana", + "sport": "NHL", + "season": "2026", + "date": "2026-04-09", + "time": "7p", + "home_team": "Anaheim Ducks", + "away_team": "San Jose Sharks", + "home_team_abbrev": "ANA", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260410_nop_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-10T04:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260410_phi_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-10T04:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_phi", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260410_tor_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-10T04:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_tor", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260410_orl_chi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-10T05:00:00Z", - "home_team_canonical_id": "team_nba_chi", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260410_brk_mil", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-10T05:00:00Z", - "home_team_canonical_id": "team_nba_mil", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260410_dal_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-10T05:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_dal", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260410_min_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-10T05:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_min", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260410_okc_den", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-10T06:00:00Z", - "home_team_canonical_id": "team_nba_den", - "away_team_canonical_id": "team_nba_okc", - "stadium_canonical_id": "stadium_nba_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260410_mem_uta", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-10T06:00:00Z", - "home_team_canonical_id": "team_nba_uta", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260410_lac_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-10T07:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_lac", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260410_gsw_sac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-10T07:00:00Z", - "home_team_canonical_id": "team_nba_sac", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260410_phx_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-10T07:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "canonical_id": "game_nhl_2025_20260409_van_la", + "sport": "NHL", + "season": "2026", + "date": "2026-04-09", + "time": "7:30p", + "home_team": "Los Angeles Kings", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "LA", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_van", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -83273,10 +61797,17 @@ "canonical_id": "game_mlb_2026_20260410_pit_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-10T18:20:00Z", + "date": "2026-04-10", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "CHC", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_pit", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -83284,21 +61815,17 @@ "canonical_id": "game_mlb_2026_20260410_mia_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-10T22:40:00Z", + "date": "2026-04-10", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Miami Marlins", + "home_team_abbrev": "DET", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_mia", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260410_laa_cin", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-10T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -83306,10 +61833,89 @@ "canonical_id": "game_mlb_2026_20260410_ari_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-10T22:40:00Z", + "date": "2026-04-10", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "PHI", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_ari", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260410_laa_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "CIN", + "away_team_abbrev": "LAA", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_laa", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260410_cle_atl", + "sport": "NBA", + "season": "2026", + "date": "2026-04-10", + "time": "7p", + "home_team": "Atlanta Hawks", + "away_team": "Cleveland Cavaliers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_nba_atl", + "away_team_canonical_id": "team_nba_cle", + "venue": "State Farm Arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260410_det_cho", + "sport": "NBA", + "season": "2026", + "date": "2026-04-10", + "time": "7p", + "home_team": "Charlotte Hornets", + "away_team": "Detroit Pistons", + "home_team_abbrev": "CHA", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_cho", + "away_team_canonical_id": "team_nba_det", + "venue": "Spectrum Center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260410_mia_was", + "sport": "NBA", + "season": "2026", + "date": "2026-04-10", + "time": "7p", + "home_team": "Washington Wizards", + "away_team": "Miami Heat", + "home_team_abbrev": "WAS", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_nba_was", + "away_team_canonical_id": "team_nba_mia", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -83317,10 +61923,17 @@ "canonical_id": "game_mlb_2026_20260410_sf_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-10T23:05:00Z", + "date": "2026-04-10", + "time": "7:05p", + "home_team": "Baltimore Orioles", + "away_team": "San Francisco Giants", + "home_team_abbrev": "BAL", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_sf", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -83328,10 +61941,17 @@ "canonical_id": "game_mlb_2026_20260410_min_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-10T23:07:00Z", + "date": "2026-04-10", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Minnesota Twins", + "home_team_abbrev": "TOR", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_min", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -83339,10 +61959,17 @@ "canonical_id": "game_mlb_2026_20260410_oak_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-10T23:10:00Z", + "date": "2026-04-10", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Oakland Athletics", + "home_team_abbrev": "NYM", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_oak", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -83350,10 +61977,17 @@ "canonical_id": "game_mlb_2026_20260410_nyy_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-10T23:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-04-10", + "time": "7:10p", + "home_team": "Tampa Bay Rays", + "away_team": "New York Yankees", + "home_team_abbrev": "TB", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -83361,21 +61995,71 @@ "canonical_id": "game_mlb_2026_20260410_cle_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-10T23:15:00Z", + "date": "2026-04-10", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_cle", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260410_wsn_mil", - "sport": "MLB", + "canonical_id": "game_nba_2025_20260410_nop_bos", + "sport": "NBA", "season": "2026", - "game_datetime_utc": "2026-04-10T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "date": "2026-04-10", + "time": "7:30p", + "home_team": "Boston Celtics", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "BOS", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_nop", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260410_tor_nyk", + "sport": "NBA", + "season": "2026", + "date": "2026-04-10", + "time": "7:30p", + "home_team": "New York Knicks", + "away_team": "Toronto Raptors", + "home_team_abbrev": "NYK", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_tor", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260410_phi_ind", + "sport": "NBA", + "season": "2026", + "date": "2026-04-10", + "time": "7:30p", + "home_team": "Indiana Pacers", + "away_team": "Philadelphia 76ers", + "home_team_abbrev": "IND", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_phi", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -83383,10 +62067,89 @@ "canonical_id": "game_mlb_2026_20260410_chw_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-10T23:40:00Z", + "date": "2026-04-10", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Chicago White Sox", + "home_team_abbrev": "KC", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_chw", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260410_wsn_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-10", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Washington Nationals", + "home_team_abbrev": "MIL", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260410_orl_chi", + "sport": "NBA", + "season": "2026", + "date": "2026-04-10", + "time": "7p", + "home_team": "Chicago Bulls", + "away_team": "Orlando Magic", + "home_team_abbrev": "CHI", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_chi", + "away_team_canonical_id": "team_nba_orl", + "venue": "United Center", + "stadium_canonical_id": "stadium_nba_united_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260410_brk_mil", + "sport": "NBA", + "season": "2026", + "date": "2026-04-10", + "time": "7p", + "home_team": "Milwaukee Bucks", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "MIL", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_mil", + "away_team_canonical_id": "team_nba_brk", + "venue": "Fiserv Forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260410_dal_sas", + "sport": "NBA", + "season": "2026", + "date": "2026-04-10", + "time": "7p", + "home_team": "San Antonio Spurs", + "away_team": "Dallas Mavericks", + "home_team_abbrev": "SAS", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_dal", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -83394,10 +62157,71 @@ "canonical_id": "game_mlb_2026_20260411_bos_stl_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-11T00:15:00Z", + "date": "2026-04-10", + "time": "7:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Boston Red Sox", + "home_team_abbrev": "STL", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_bos", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260410_okc_den", + "sport": "NBA", + "season": "2026", + "date": "2026-04-10", + "time": "7p", + "home_team": "Denver Nuggets", + "away_team": "Oklahoma City Thunder", + "home_team_abbrev": "DEN", + "away_team_abbrev": "OKC", + "home_team_canonical_id": "team_nba_den", + "away_team_canonical_id": "team_nba_okc", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260410_min_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-04-10", + "time": "8:30p", + "home_team": "Houston Rockets", + "away_team": "Minnesota Timberwolves", + "home_team_abbrev": "HOU", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_min", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260410_mem_uta", + "sport": "NBA", + "season": "2026", + "date": "2026-04-10", + "time": "7:30p", + "home_team": "Utah Jazz", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "UTA", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_uta", + "away_team_canonical_id": "team_nba_mem", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nba_delta_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -83405,10 +62229,17 @@ "canonical_id": "game_mlb_2026_20260411_hou_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-11T01:40:00Z", + "date": "2026-04-10", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Houston Astros", + "home_team_abbrev": "SEA", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -83416,10 +62247,53 @@ "canonical_id": "game_mlb_2026_20260411_col_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-11T01:40:00Z", + "date": "2026-04-10", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Colorado Rockies", + "home_team_abbrev": "SD", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_col", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260410_gsw_sac", + "sport": "NBA", + "season": "2026", + "date": "2026-04-10", + "time": "7p", + "home_team": "Sacramento Kings", + "away_team": "Golden State Warriors", + "home_team_abbrev": "SAC", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_sac", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Golden 1 Center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260410_lac_por", + "sport": "NBA", + "season": "2026", + "date": "2026-04-10", + "time": "7p", + "home_team": "Portland Blazers", + "away_team": "Los Angeles Clippers", + "home_team_abbrev": "POR", + "away_team_abbrev": "LAC", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_lac", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -83427,175 +62301,89 @@ "canonical_id": "game_mlb_2026_20260411_tex_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-11T02:10:00Z", + "date": "2026-04-10", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Texas Rangers", + "home_team_abbrev": "LAD", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_tex", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260410_phx_lal", + "sport": "NBA", + "season": "2026", + "date": "2026-04-10", + "time": "7:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Phoenix Suns", + "home_team_abbrev": "LAL", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_phx", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260411_tb_bos", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-11T04:00:00Z", + "season": "2026", + "date": "2026-04-11", + "time": "12:30p", + "home_team": "Boston Bruins", + "away_team": "Tampa Bay Lightning", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_nhl_bos", "away_team_canonical_id": "team_nhl_tb", + "venue": "TD Garden", "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260411_njd_det", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-11T04:00:00Z", - "home_team_canonical_id": "team_nhl_det", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260411_cbj_mtl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-11T04:00:00Z", - "home_team_canonical_id": "team_nhl_mtl", - "away_team_canonical_id": "team_nhl_cbj", - "stadium_canonical_id": "stadium_nhl_bell_centre", + "canonical_id": "game_mls_2026_20260411_cin_tor", + "sport": "MLS", + "season": "2026", + "date": "2026-04-11", + "time": "1p", + "home_team": "Toronto Toronto FC", + "away_team": "Cincinnati FC Cincinnati", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mls_tor", + "away_team_canonical_id": "team_mls_cin", + "venue": "BMO Field", + "stadium_canonical_id": "stadium_mls_bmo_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { "canonical_id": "game_nhl_2025_20260411_ott_nyi", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-11T04:00:00Z", + "season": "2026", + "date": "2026-04-11", + "time": "1p", + "home_team": "New York Islanders", + "away_team": "Ottawa Senators", + "home_team_abbrev": "NYI", + "away_team_abbrev": "OTT", "home_team_canonical_id": "team_nhl_nyi", "away_team_canonical_id": "team_nhl_ott", + "venue": "UBS Arena", "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260411_was_pit", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-11T04:00:00Z", - "home_team_canonical_id": "team_nhl_pit", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260411_fla_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-11T04:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_fla", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260411_stl_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-11T05:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260411_nyr_dal", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-11T05:00:00Z", - "home_team_canonical_id": "team_nhl_dal", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260411_min_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-11T05:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260411_phi_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-11T05:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_phi", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260411_vgk_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-11T06:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_vgk", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260411_car_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-11T06:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260411_edm_la", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-11T07:00:00Z", - "home_team_canonical_id": "team_nhl_la", - "away_team_canonical_id": "team_nhl_edm", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260411_cgy_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-11T07:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_cgy", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260411_van_sj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-11T07:00:00Z", - "home_team_canonical_id": "team_nhl_sj", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -83603,10 +62391,17 @@ "canonical_id": "game_mlb_2026_20260411_ari_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-11T17:05:00Z", + "date": "2026-04-11", + "time": "1:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "PHI", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_ari", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -83614,10 +62409,17 @@ "canonical_id": "game_mlb_2026_20260411_mia_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-11T17:10:00Z", + "date": "2026-04-11", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Miami Marlins", + "home_team_abbrev": "DET", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_mia", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -83625,10 +62427,53 @@ "canonical_id": "game_mlb_2026_20260411_pit_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-11T18:20:00Z", + "date": "2026-04-11", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "CHC", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_pit", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260411_lag_aus", + "sport": "MLS", + "season": "2026", + "date": "2026-04-11", + "time": "1:30p", + "home_team": "Austin Austin FC", + "away_team": "Los Angeles LA Galaxy", + "home_team_abbrev": "AUS", + "away_team_abbrev": "LAG", + "home_team_canonical_id": "team_mls_aus", + "away_team_canonical_id": "team_mls_lag", + "venue": "Q2 Stadium", + "stadium_canonical_id": "stadium_mls_q2_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260411_was_pit", + "sport": "NHL", + "season": "2026", + "date": "2026-04-11", + "time": "3p", + "home_team": "Pittsburgh Penguins", + "away_team": "Washington Capitals", + "home_team_abbrev": "PIT", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_pit", + "away_team_canonical_id": "team_nhl_was", + "venue": "PPG Paints Arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -83636,32 +62481,35 @@ "canonical_id": "game_mlb_2026_20260411_min_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-11T19:07:00Z", + "date": "2026-04-11", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Minnesota Twins", + "home_team_abbrev": "TOR", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_min", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260411_oak_nym", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20260411_edm_la", + "sport": "NHL", "season": "2026", - "game_datetime_utc": "2026-04-11T20:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260411_laa_cin", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-11T20:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "date": "2026-04-11", + "time": "1p", + "home_team": "Los Angeles Kings", + "away_team": "Edmonton Oilers", + "home_team_abbrev": "LA", + "away_team_abbrev": "EDM", + "home_team_canonical_id": "team_nhl_la", + "away_team_canonical_id": "team_nhl_edm", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -83669,10 +62517,161 @@ "canonical_id": "game_mlb_2026_20260411_chw_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-11T20:10:00Z", + "date": "2026-04-11", + "time": "3:10p", + "home_team": "Kansas City Royals", + "away_team": "Chicago White Sox", + "home_team_abbrev": "KC", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_chw", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260411_oak_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "4:10p", + "home_team": "New York Mets", + "away_team": "Oakland Athletics", + "home_team_abbrev": "NYM", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260411_laa_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "4:10p", + "home_team": "Cincinnati Reds", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "CIN", + "away_team_abbrev": "LAA", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_laa", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260411_lafc_por", + "sport": "MLS", + "season": "2026", + "date": "2026-04-11", + "time": "1:30p", + "home_team": "Portland Portland Timbers", + "away_team": "Los Angeles Los Angeles FC", + "home_team_abbrev": "POR", + "away_team_abbrev": "LAFC", + "home_team_canonical_id": "team_mls_por", + "away_team_canonical_id": "team_mls_lafc", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_mls_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260411_nyr_dal", + "sport": "NHL", + "season": "2026", + "date": "2026-04-11", + "time": "4p", + "home_team": "Dallas Stars", + "away_team": "New York Rangers", + "home_team_abbrev": "DAL", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_dal", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260411_car_ari", + "sport": "NHL", + "season": "2026", + "date": "2026-04-11", + "time": "3p", + "home_team": "Utah Club", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_car", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260411_min_nsh", + "sport": "NHL", + "season": "2026", + "date": "2026-04-11", + "time": "4p", + "home_team": "Nashville Predators", + "away_team": "Minnesota Wild", + "home_team_abbrev": "NSH", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_min", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260411_njd_det", + "sport": "NHL", + "season": "2026", + "date": "2026-04-11", + "time": "5p", + "home_team": "Detroit Red Wings", + "away_team": "New Jersey Devils", + "home_team_abbrev": "DET", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_det", + "away_team_canonical_id": "team_nhl_njd", + "venue": "Little Caesars Arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260411_stl_chi", + "sport": "NHL", + "season": "2026", + "date": "2026-04-11", + "time": "4p", + "home_team": "Chicago Blackhawks", + "away_team": "St. Louis Blues", + "home_team_abbrev": "CHI", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_stl", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -83680,10 +62679,89 @@ "canonical_id": "game_mlb_2026_20260411_nyy_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-11T22:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-04-11", + "time": "6:10p", + "home_team": "Tampa Bay Rays", + "away_team": "New York Yankees", + "home_team_abbrev": "TB", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260411_cgy_sea", + "sport": "NHL", + "season": "2026", + "date": "2026-04-11", + "time": "4p", + "home_team": "Seattle Kraken", + "away_team": "Calgary Flames", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CGY", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_cgy", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260411_cbj_mtl", + "sport": "NHL", + "season": "2026", + "date": "2026-04-11", + "time": "7p", + "home_team": "Montreal Canadiens", + "away_team": "Columbus Blue Jackets", + "home_team_abbrev": "MTL", + "away_team_abbrev": "CBJ", + "home_team_canonical_id": "team_nhl_mtl", + "away_team_canonical_id": "team_nhl_cbj", + "venue": "Bell Centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260411_fla_tor", + "sport": "NHL", + "season": "2026", + "date": "2026-04-11", + "time": "7p", + "home_team": "Toronto Maple Leafs", + "away_team": "Florida Panthers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "FLA", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_fla", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260411_phi_wpg", + "sport": "NHL", + "season": "2026", + "date": "2026-04-11", + "time": "6p", + "home_team": "Winnipeg Jets", + "away_team": "Philadelphia Flyers", + "home_team_abbrev": "WPG", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_phi", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -83691,32 +62769,17 @@ "canonical_id": "game_mlb_2026_20260411_wsn_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-11T23:10:00Z", + "date": "2026-04-11", + "time": "6:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Washington Nationals", + "home_team_abbrev": "MIL", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_wsn", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260411_sf_bal", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-11T23:15:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260411_cle_atl", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-11T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -83724,10 +62787,197 @@ "canonical_id": "game_mlb_2026_20260411_bos_stl_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-11T23:15:00Z", + "date": "2026-04-11", + "time": "6:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Boston Red Sox", + "home_team_abbrev": "STL", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_bos", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260411_cle_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_cle", + "venue": "Truist Park", + "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260411_sf_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-04-11", + "time": "7:15p", + "home_team": "Baltimore Orioles", + "away_team": "San Francisco Giants", + "home_team_abbrev": "BAL", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Oriole Park at Camden Yards", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260411_dc_ne", + "sport": "MLS", + "season": "2026", + "date": "2026-04-11", + "time": "7:30p", + "home_team": "New England New England Revolution", + "away_team": "Washington D.C. United", + "home_team_abbrev": "NE", + "away_team_abbrev": "DC", + "home_team_canonical_id": "team_mls_ne", + "away_team_canonical_id": "team_mls_dc", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_mls_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260411_ny_mia", + "sport": "MLS", + "season": "2026", + "date": "2026-04-11", + "time": "7:30p", + "home_team": "Miami Inter Miami", + "away_team": "New York New York Red Bulls", + "home_team_abbrev": "MIA", + "away_team_abbrev": "RB", + "home_team_canonical_id": "team_mls_mia", + "away_team_canonical_id": "team_mls_ny", + "venue": "Miami Freedom Park", + "stadium_canonical_id": "stadium_mls_miami_freedom_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260411_nsh_clt", + "sport": "MLS", + "season": "2026", + "date": "2026-04-11", + "time": "7:30p", + "home_team": "Charlotte Charlotte FC", + "away_team": "Nashville Nashville SC", + "home_team_abbrev": "CLT", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_mls_clt", + "away_team_canonical_id": "team_mls_nsh", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260411_nyc_van", + "sport": "MLS", + "season": "2026", + "date": "2026-04-11", + "time": "4:30p", + "home_team": "Vancouver Vancouver Whitecaps", + "away_team": "New York New York City FC", + "home_team_abbrev": "VAN", + "away_team_abbrev": "NYC", + "home_team_canonical_id": "team_mls_van", + "away_team_canonical_id": "team_mls_nyc", + "venue": "BC Place", + "stadium_canonical_id": "stadium_mls_bc_place", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260411_vgk_col", + "sport": "NHL", + "season": "2026", + "date": "2026-04-11", + "time": "6p", + "home_team": "Colorado Avalanche", + "away_team": "Vegas Golden Knights", + "home_team_abbrev": "COL", + "away_team_abbrev": "VGK", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_vgk", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260412_atl_chi", + "sport": "MLS", + "season": "2026", + "date": "2026-04-11", + "time": "7:30p", + "home_team": "Chicago Chicago Fire", + "away_team": "Atlanta Atlanta United", + "home_team_abbrev": "CHI", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mls_chi", + "away_team_canonical_id": "team_mls_atl", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_mls_soldier_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260412_stl_dal", + "sport": "MLS", + "season": "2026", + "date": "2026-04-11", + "time": "7:30p", + "home_team": "Dallas FC Dallas", + "away_team": "St. Louis St. Louis City SC", + "home_team_abbrev": "DAL", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mls_dal", + "away_team_canonical_id": "team_mls_stl", + "venue": "Toyota Stadium", + "stadium_canonical_id": "stadium_mls_toyota_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260412_sj_skc", + "sport": "MLS", + "season": "2026", + "date": "2026-04-11", + "time": "7:30p", + "home_team": "Kansas City Sporting Kansas City", + "away_team": "San Jose San Jose Earthquakes", + "home_team_abbrev": "SKC", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_mls_skc", + "away_team_canonical_id": "team_mls_sj", + "venue": "Children's Mercy Park", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -83735,10 +62985,17 @@ "canonical_id": "game_mlb_2026_20260412_col_sd_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-12T00:40:00Z", + "date": "2026-04-11", + "time": "5:40p", + "home_team": "San Diego Padres", + "away_team": "Colorado Rockies", + "home_team_abbrev": "SD", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_col", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -83746,10 +63003,35 @@ "canonical_id": "game_mlb_2026_20260412_tex_lad_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-12T01:10:00Z", + "date": "2026-04-11", + "time": "6:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Texas Rangers", + "home_team_abbrev": "LAD", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_tex", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260412_hou_col", + "sport": "MLS", + "season": "2026", + "date": "2026-04-11", + "time": "7:30p", + "home_team": "Colorado Colorado Rapids", + "away_team": "Houston Houston Dynamo", + "home_team_abbrev": "COL", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mls_col", + "away_team_canonical_id": "team_mls_hou", + "venue": "Dick's Sporting Goods Park", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -83757,241 +63039,53 @@ "canonical_id": "game_mlb_2026_20260412_hou_sea_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-12T01:40:00Z", + "date": "2026-04-11", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Houston Astros", + "home_team_abbrev": "SEA", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nba_2025_20260412_orl_bos", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T04:00:00Z", - "home_team_canonical_id": "team_nba_bos", - "away_team_canonical_id": "team_nba_orl", - "stadium_canonical_id": "stadium_nba_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260412_det_ind", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T04:00:00Z", - "home_team_canonical_id": "team_nba_ind", - "away_team_canonical_id": "team_nba_det", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260412_atl_mia", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T04:00:00Z", - "home_team_canonical_id": "team_nba_mia", - "away_team_canonical_id": "team_nba_atl", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260412_cho_nyk", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T04:00:00Z", - "home_team_canonical_id": "team_nba_nyk", - "away_team_canonical_id": "team_nba_cho", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260412_brk_tor", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T04:00:00Z", - "home_team_canonical_id": "team_nba_tor", - "away_team_canonical_id": "team_nba_brk", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260412_bos_cbj", + "canonical_id": "game_nhl_2025_20260411_van_sj", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T04:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_bos", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260412_ott_njd", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T04:00:00Z", - "home_team_canonical_id": "team_nhl_njd", - "away_team_canonical_id": "team_nhl_ott", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260412_mtl_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260412_pit_was", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T04:00:00Z", - "home_team_canonical_id": "team_nhl_was", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260412_was_cle", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T05:00:00Z", - "home_team_canonical_id": "team_nba_cle", - "away_team_canonical_id": "team_nba_was", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260412_chi_dal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T05:00:00Z", - "home_team_canonical_id": "team_nba_dal", - "away_team_canonical_id": "team_nba_chi", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260412_mem_hou", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T05:00:00Z", - "home_team_canonical_id": "team_nba_hou", - "away_team_canonical_id": "team_nba_mem", - "stadium_canonical_id": "stadium_nba_toyota_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260412_nop_min", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T05:00:00Z", - "home_team_canonical_id": "team_nba_min", - "away_team_canonical_id": "team_nba_nop", - "stadium_canonical_id": "stadium_nba_target_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260412_phx_okc", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T05:00:00Z", - "home_team_canonical_id": "team_nba_okc", - "away_team_canonical_id": "team_nba_phx", - "stadium_canonical_id": "stadium_nba_paycom_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260412_den_sas", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T05:00:00Z", - "home_team_canonical_id": "team_nba_sas", - "away_team_canonical_id": "team_nba_den", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260412_ari_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T06:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_ari", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260412_mil_phi", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T07:00:00Z", - "home_team_canonical_id": "team_nba_phi", - "away_team_canonical_id": "team_nba_mil", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260412_gsw_lac", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T07:00:00Z", - "home_team_canonical_id": "team_nba_lac", - "away_team_canonical_id": "team_nba_gsw", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260412_uta_lal", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T07:00:00Z", - "home_team_canonical_id": "team_nba_lal", - "away_team_canonical_id": "team_nba_uta", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nba_2025_20260412_sac_por", - "sport": "NBA", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T07:00:00Z", - "home_team_canonical_id": "team_nba_por", - "away_team_canonical_id": "team_nba_sac", - "stadium_canonical_id": "stadium_nba_moda_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260412_van_ana", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-12T07:00:00Z", - "home_team_canonical_id": "team_nhl_ana", + "season": "2026", + "date": "2026-04-11", + "time": "7p", + "home_team": "San Jose Sharks", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "SJ", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_sj", "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_honda_center", + "venue": "SAP Center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260412_min_sd", + "sport": "MLS", + "season": "2026", + "date": "2026-04-11", + "time": "7:30p", + "home_team": "San Diego San Diego FC", + "away_team": "Minnesota Minnesota United", + "home_team_abbrev": "SD", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mls_sd", + "away_team_canonical_id": "team_mls_min", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -83999,10 +63093,17 @@ "canonical_id": "game_mlb_2026_20260412_sf_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-12T17:35:00Z", + "date": "2026-04-12", + "time": "1:35p", + "home_team": "Baltimore Orioles", + "away_team": "San Francisco Giants", + "home_team_abbrev": "BAL", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_sf", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84010,10 +63111,17 @@ "canonical_id": "game_mlb_2026_20260412_ari_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-12T17:35:00Z", + "date": "2026-04-12", + "time": "1:35p", + "home_team": "Philadelphia Phillies", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "PHI", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_ari", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84021,32 +63129,17 @@ "canonical_id": "game_mlb_2026_20260412_min_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-12T17:37:00Z", + "date": "2026-04-12", + "time": "1:37p", + "home_team": "Toronto Blue Jays", + "away_team": "Minnesota Twins", + "home_team_abbrev": "TOR", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_min", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260412_oak_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-12T17:40:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260412_nyy_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-12T17:40:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84054,10 +63147,17 @@ "canonical_id": "game_mlb_2026_20260412_mia_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-12T17:40:00Z", + "date": "2026-04-12", + "time": "1:40p", + "home_team": "Detroit Tigers", + "away_team": "Miami Marlins", + "home_team_abbrev": "DET", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_mia", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84065,10 +63165,53 @@ "canonical_id": "game_mlb_2026_20260412_laa_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-12T17:40:00Z", + "date": "2026-04-12", + "time": "1:40p", + "home_team": "Cincinnati Reds", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "CIN", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_laa", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260412_oak_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "1:40p", + "home_team": "New York Mets", + "away_team": "Oakland Athletics", + "home_team_abbrev": "NYM", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260412_nyy_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "1:40p", + "home_team": "Tampa Bay Rays", + "away_team": "New York Yankees", + "home_team_abbrev": "TB", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84076,10 +63219,17 @@ "canonical_id": "game_mlb_2026_20260412_wsn_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-12T18:10:00Z", + "date": "2026-04-12", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Washington Nationals", + "home_team_abbrev": "MIL", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_wsn", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84087,10 +63237,17 @@ "canonical_id": "game_mlb_2026_20260412_chw_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-12T18:10:00Z", + "date": "2026-04-12", + "time": "1:10p", + "home_team": "Kansas City Royals", + "away_team": "Chicago White Sox", + "home_team_abbrev": "KC", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_chw", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84098,10 +63255,17 @@ "canonical_id": "game_mlb_2026_20260412_bos_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-12T18:15:00Z", + "date": "2026-04-12", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Boston Red Sox", + "home_team_abbrev": "STL", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_bos", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84109,10 +63273,53 @@ "canonical_id": "game_mlb_2026_20260412_pit_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-12T18:20:00Z", + "date": "2026-04-12", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "CHC", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_pit", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260412_phi_mtl", + "sport": "MLS", + "season": "2026", + "date": "2026-04-12", + "time": "2:30p", + "home_team": "Montreal CF Montreal", + "away_team": "Philadelphia Philadelphia Union", + "home_team_abbrev": "MTL", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mls_mtl", + "away_team_canonical_id": "team_mls_phi", + "venue": "Stade Saputo", + "stadium_canonical_id": "stadium_mls_stade_saputo", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260412_pit_was", + "sport": "NHL", + "season": "2026", + "date": "2026-04-12", + "time": "3p", + "home_team": "Washington Capitals", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "WAS", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_was", + "away_team_canonical_id": "team_nhl_pit", + "venue": "Capital One Arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -84120,21 +63327,17 @@ "canonical_id": "game_mlb_2026_20260412_tex_lad_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-12T20:10:00Z", + "date": "2026-04-12", + "time": "1:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Texas Rangers", + "home_team_abbrev": "LAD", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_tex", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260412_hou_sea_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-12T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84142,10 +63345,233 @@ "canonical_id": "game_mlb_2026_20260412_col_sd_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-12T20:10:00Z", + "date": "2026-04-12", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Colorado Rockies", + "home_team_abbrev": "SD", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_col", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260412_hou_sea_2", + "sport": "MLB", + "season": "2026", + "date": "2026-04-12", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Houston Astros", + "home_team_abbrev": "SEA", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_hou", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260412_orl_bos", + "sport": "NBA", + "season": "2026", + "date": "2026-04-12", + "time": "6p", + "home_team": "Boston Celtics", + "away_team": "Orlando Magic", + "home_team_abbrev": "BOS", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nba_bos", + "away_team_canonical_id": "team_nba_orl", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260412_was_cle", + "sport": "NBA", + "season": "2026", + "date": "2026-04-12", + "time": "5p", + "home_team": "Cleveland Cavaliers", + "away_team": "Washington Wizards", + "home_team_abbrev": "CLE", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nba_cle", + "away_team_canonical_id": "team_nba_was", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260412_det_ind", + "sport": "NBA", + "season": "2026", + "date": "2026-04-12", + "time": "6p", + "home_team": "Indiana Pacers", + "away_team": "Detroit Pistons", + "home_team_abbrev": "IND", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nba_ind", + "away_team_canonical_id": "team_nba_det", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260412_atl_mia", + "sport": "NBA", + "season": "2026", + "date": "2026-04-12", + "time": "6p", + "home_team": "Miami Heat", + "away_team": "Atlanta Hawks", + "home_team_abbrev": "MIA", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_nba_mia", + "away_team_canonical_id": "team_nba_atl", + "venue": "Kaseya Center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260412_cho_nyk", + "sport": "NBA", + "season": "2026", + "date": "2026-04-12", + "time": "6p", + "home_team": "New York Knicks", + "away_team": "Charlotte Hornets", + "home_team_abbrev": "NYK", + "away_team_abbrev": "CHA", + "home_team_canonical_id": "team_nba_nyk", + "away_team_canonical_id": "team_nba_cho", + "venue": "Madison Square Garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260412_mil_phi", + "sport": "NBA", + "season": "2026", + "date": "2026-04-12", + "time": "3p", + "home_team": "Philadelphia 76ers", + "away_team": "Milwaukee Bucks", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_nba_phi", + "away_team_canonical_id": "team_nba_mil", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nba_2025_20260412_brk_tor", + "sport": "NBA", + "season": "2026", + "date": "2026-04-12", + "time": "6p", + "home_team": "Toronto Raptors", + "away_team": "Brooklyn Nets", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BKN", + "home_team_canonical_id": "team_nba_tor", + "away_team_canonical_id": "team_nba_brk", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "source": "basketball-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260412_bos_cbj", + "sport": "NHL", + "season": "2026", + "date": "2026-04-12", + "time": "6p", + "home_team": "Columbus Blue Jackets", + "away_team": "Boston Bruins", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_bos", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260412_mtl_nyi", + "sport": "NHL", + "season": "2026", + "date": "2026-04-12", + "time": "6p", + "home_team": "New York Islanders", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "NYI", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260412_orl_clb", + "sport": "MLS", + "season": "2026", + "date": "2026-04-12", + "time": "7p", + "home_team": "Columbus Columbus Crew", + "away_team": "Orlando Orlando City", + "home_team_abbrev": "CLB", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_mls_clb", + "away_team_canonical_id": "team_mls_orl", + "venue": "Lower.com Field", + "stadium_canonical_id": "stadium_mls_lowercom_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260412_ott_njd", + "sport": "NHL", + "season": "2026", + "date": "2026-04-12", + "time": "7p", + "home_team": "New Jersey Devils", + "away_team": "Ottawa Senators", + "home_team_abbrev": "NJ", + "away_team_abbrev": "OTT", + "home_team_canonical_id": "team_nhl_njd", + "away_team_canonical_id": "team_nhl_ott", + "venue": "Prudential Center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -84153,120 +63579,215 @@ "canonical_id": "game_mlb_2026_20260412_cle_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-12T23:20:00Z", + "date": "2026-04-12", + "time": "7:20p", + "home_team": "Atlanta Braves", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_cle", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260413_nyr_fla", + "canonical_id": "game_nhl_2025_20260412_van_ana", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-13T04:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "season": "2026", + "date": "2026-04-12", + "time": "5p", + "home_team": "Anaheim Ducks", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "ANA", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_ana", + "away_team_canonical_id": "team_nhl_van", + "venue": "Honda Center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260413_car_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-13T04:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "canonical_id": "game_nba_2025_20260412_nop_min", + "sport": "NBA", + "season": "2026", + "date": "2026-04-12", + "time": "7:30p", + "home_team": "Minnesota Timberwolves", + "away_team": "New Orleans Pelicans", + "home_team_abbrev": "MIN", + "away_team_abbrev": "NOP", + "home_team_canonical_id": "team_nba_min", + "away_team_canonical_id": "team_nba_nop", + "venue": "Target Center", + "stadium_canonical_id": "stadium_nba_target_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260413_det_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-13T04:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_amalie_arena", + "canonical_id": "game_nba_2025_20260412_phx_okc", + "sport": "NBA", + "season": "2026", + "date": "2026-04-12", + "time": "7:30p", + "home_team": "Oklahoma City Thunder", + "away_team": "Phoenix Suns", + "home_team_abbrev": "OKC", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_nba_okc", + "away_team_canonical_id": "team_nba_phx", + "venue": "Paycom Center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260413_dal_tor", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-13T04:00:00Z", - "home_team_canonical_id": "team_nhl_tor", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "canonical_id": "game_nba_2025_20260412_uta_lal", + "sport": "NBA", + "season": "2026", + "date": "2026-04-12", + "time": "5:30p", + "home_team": "Los Angeles Lakers", + "away_team": "Utah Jazz", + "home_team_abbrev": "LAL", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nba_lal", + "away_team_canonical_id": "team_nba_uta", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260413_buf_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_buf", - "stadium_canonical_id": "stadium_nhl_united_center", + "canonical_id": "game_nba_2025_20260412_gsw_lac", + "sport": "NBA", + "season": "2026", + "date": "2026-04-12", + "time": "5:30p", + "home_team": "Los Angeles Clippers", + "away_team": "Golden State Warriors", + "home_team_abbrev": "LAC", + "away_team_abbrev": "GSW", + "home_team_canonical_id": "team_nba_lac", + "away_team_canonical_id": "team_nba_gsw", + "venue": "Intuit Dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260413_sj_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "canonical_id": "game_nba_2025_20260412_mem_hou", + "sport": "NBA", + "season": "2026", + "date": "2026-04-12", + "time": "7:30p", + "home_team": "Houston Rockets", + "away_team": "Memphis Grizzlies", + "home_team_abbrev": "HOU", + "away_team_abbrev": "MEM", + "home_team_canonical_id": "team_nba_hou", + "away_team_canonical_id": "team_nba_mem", + "venue": "Toyota Center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260413_min_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-13T05:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_min", - "stadium_canonical_id": "stadium_nhl_enterprise_center", + "canonical_id": "game_nba_2025_20260412_chi_dal", + "sport": "NBA", + "season": "2026", + "date": "2026-04-12", + "time": "7:30p", + "home_team": "Dallas Mavericks", + "away_team": "Chicago Bulls", + "home_team_abbrev": "DAL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nba_dal", + "away_team_canonical_id": "team_nba_chi", + "venue": "American Airlines Center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260413_col_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-13T06:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_rogers_place", + "canonical_id": "game_nba_2025_20260412_sac_por", + "sport": "NBA", + "season": "2026", + "date": "2026-04-12", + "time": "5:30p", + "home_team": "Portland Blazers", + "away_team": "Sacramento Kings", + "home_team_abbrev": "POR", + "away_team_abbrev": "SAC", + "home_team_canonical_id": "team_nba_por", + "away_team_canonical_id": "team_nba_sac", + "venue": "Moda Center", + "stadium_canonical_id": "stadium_nba_moda_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260413_la_sea", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-13T07:00:00Z", - "home_team_canonical_id": "team_nhl_sea", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "canonical_id": "game_nba_2025_20260412_den_sas", + "sport": "NBA", + "season": "2026", + "date": "2026-04-12", + "time": "7:30p", + "home_team": "San Antonio Spurs", + "away_team": "Denver Nuggets", + "home_team_abbrev": "SAS", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nba_sas", + "away_team_canonical_id": "team_nba_den", + "venue": "Frost Bank Center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "source": "basketball-reference.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_nhl_2025_20260413_wpg_vgk", + "canonical_id": "game_mls_2026_20260413_slc_sea", + "sport": "MLS", + "season": "2026", + "date": "2026-04-12", + "time": "6p", + "home_team": "Seattle Seattle Sounders", + "away_team": "Salt Lake Real Salt Lake", + "home_team_abbrev": "SEA", + "away_team_abbrev": "SLC", + "home_team_canonical_id": "team_mls_sea", + "away_team_canonical_id": "team_mls_slc", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_mls_lumen_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260412_ari_cgy", "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-13T07:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "season": "2026", + "date": "2026-04-12", + "time": "7p", + "home_team": "Calgary Flames", + "away_team": "Utah Club", + "home_team_abbrev": "CGY", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_ari", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -84274,10 +63795,17 @@ "canonical_id": "game_mlb_2026_20260413_hou_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-13T20:10:00Z", + "date": "2026-04-13", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Houston Astros", + "home_team_abbrev": "SEA", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84285,10 +63813,17 @@ "canonical_id": "game_mlb_2026_20260413_ari_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-13T22:35:00Z", + "date": "2026-04-13", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "BAL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_ari", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84296,10 +63831,17 @@ "canonical_id": "game_mlb_2026_20260413_wsn_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-13T22:40:00Z", + "date": "2026-04-13", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Washington Nationals", + "home_team_abbrev": "PIT", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_wsn", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84307,10 +63849,71 @@ "canonical_id": "game_mlb_2026_20260413_chc_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-13T22:40:00Z", + "date": "2026-04-13", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Chicago Cubs", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_chc", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260413_car_phi", + "sport": "NHL", + "season": "2026", + "date": "2026-04-13", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_car", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260413_det_tb", + "sport": "NHL", + "season": "2026", + "date": "2026-04-13", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "TB", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_det", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260413_nyr_fla", + "sport": "NHL", + "season": "2026", + "date": "2026-04-13", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "New York Rangers", + "home_team_abbrev": "FLA", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -84318,10 +63921,17 @@ "canonical_id": "game_mlb_2026_20260413_laa_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-13T23:05:00Z", + "date": "2026-04-13", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "NYY", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_laa", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84329,10 +63939,35 @@ "canonical_id": "game_mlb_2026_20260413_mia_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-13T23:15:00Z", + "date": "2026-04-13", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Miami Marlins", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_mia", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260413_dal_tor", + "sport": "NHL", + "season": "2026", + "date": "2026-04-13", + "time": "7:30p", + "home_team": "Toronto Maple Leafs", + "away_team": "Dallas Stars", + "home_team_abbrev": "TOR", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_tor", + "away_team_canonical_id": "team_nhl_dal", + "venue": "Scotiabank Arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -84340,10 +63975,17 @@ "canonical_id": "game_mlb_2026_20260413_bos_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-13T23:40:00Z", + "date": "2026-04-13", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Boston Red Sox", + "home_team_abbrev": "MIN", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_bos", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84351,10 +63993,107 @@ "canonical_id": "game_mlb_2026_20260413_cle_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-13T23:45:00Z", + "date": "2026-04-13", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "STL", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_cle", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260413_sj_nsh", + "sport": "NHL", + "season": "2026", + "date": "2026-04-13", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "San Jose Sharks", + "home_team_abbrev": "NSH", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260413_min_stl", + "sport": "NHL", + "season": "2026", + "date": "2026-04-13", + "time": "7p", + "home_team": "St. Louis Blues", + "away_team": "Minnesota Wild", + "home_team_abbrev": "STL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_min", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260413_buf_chi", + "sport": "NHL", + "season": "2026", + "date": "2026-04-13", + "time": "7:30p", + "home_team": "Chicago Blackhawks", + "away_team": "Buffalo Sabres", + "home_team_abbrev": "CHI", + "away_team_abbrev": "BUF", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_buf", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260413_col_edm", + "sport": "NHL", + "season": "2026", + "date": "2026-04-13", + "time": "7:30p", + "home_team": "Edmonton Oilers", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "EDM", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_col", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260413_la_sea", + "sport": "NHL", + "season": "2026", + "date": "2026-04-13", + "time": "6:30p", + "home_team": "Seattle Kraken", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "SEA", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_sea", + "away_team_canonical_id": "team_nhl_la", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -84362,10 +64101,35 @@ "canonical_id": "game_mlb_2026_20260414_tex_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-14T01:40:00Z", + "date": "2026-04-13", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Texas Rangers", + "home_team_abbrev": "OAK", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_tex", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260413_wpg_vgk", + "sport": "NHL", + "season": "2026", + "date": "2026-04-13", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "VGK", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -84373,109 +64137,17 @@ "canonical_id": "game_mlb_2026_20260414_nym_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-14T02:10:00Z", + "date": "2026-04-13", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "New York Mets", + "home_team_abbrev": "LAD", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_nym", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260414_njd_bos", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-14T04:00:00Z", - "home_team_canonical_id": "team_nhl_bos", - "away_team_canonical_id": "team_nhl_njd", - "stadium_canonical_id": "stadium_nhl_td_garden", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260414_was_cbj", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-14T04:00:00Z", - "home_team_canonical_id": "team_nhl_cbj", - "away_team_canonical_id": "team_nhl_was", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260414_car_nyi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-14T04:00:00Z", - "home_team_canonical_id": "team_nhl_nyi", - "away_team_canonical_id": "team_nhl_car", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260414_mtl_phi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-14T04:00:00Z", - "home_team_canonical_id": "team_nhl_phi", - "away_team_canonical_id": "team_nhl_mtl", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260414_ana_min", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-14T05:00:00Z", - "home_team_canonical_id": "team_nhl_min", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260414_pit_stl", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-14T05:00:00Z", - "home_team_canonical_id": "team_nhl_stl", - "away_team_canonical_id": "team_nhl_pit", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260414_col_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-14T06:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_col", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260414_wpg_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-14T06:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_wpg", - "stadium_canonical_id": "stadium_nhl_delta_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260414_la_van", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-14T07:00:00Z", - "home_team_canonical_id": "team_nhl_van", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84483,32 +64155,17 @@ "canonical_id": "game_mlb_2026_20260414_ari_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-14T22:35:00Z", + "date": "2026-04-14", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "BAL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_ari", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260414_wsn_pit", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-14T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260414_sf_cin", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-14T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84516,10 +64173,53 @@ "canonical_id": "game_mlb_2026_20260414_kc_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-14T22:40:00Z", + "date": "2026-04-14", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Kansas City Royals", + "home_team_abbrev": "DET", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_kc", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260414_sf_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "San Francisco Giants", + "home_team_abbrev": "CIN", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260414_wsn_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Washington Nationals", + "home_team_abbrev": "PIT", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "PNC Park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84527,10 +64227,89 @@ "canonical_id": "game_mlb_2026_20260414_chc_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-14T22:40:00Z", + "date": "2026-04-14", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Chicago Cubs", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_chc", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260414_njd_bos", + "sport": "NHL", + "season": "2026", + "date": "2026-04-14", + "time": "7p", + "home_team": "Boston Bruins", + "away_team": "New Jersey Devils", + "home_team_abbrev": "BOS", + "away_team_abbrev": "NJ", + "home_team_canonical_id": "team_nhl_bos", + "away_team_canonical_id": "team_nhl_njd", + "venue": "TD Garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260414_mtl_phi", + "sport": "NHL", + "season": "2026", + "date": "2026-04-14", + "time": "7p", + "home_team": "Philadelphia Flyers", + "away_team": "Montreal Canadiens", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_nhl_phi", + "away_team_canonical_id": "team_nhl_mtl", + "venue": "Wells Fargo Center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260414_was_cbj", + "sport": "NHL", + "season": "2026", + "date": "2026-04-14", + "time": "7p", + "home_team": "Columbus Blue Jackets", + "away_team": "Washington Capitals", + "home_team_abbrev": "CBJ", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_nhl_cbj", + "away_team_canonical_id": "team_nhl_was", + "venue": "Nationwide Arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260414_car_nyi", + "sport": "NHL", + "season": "2026", + "date": "2026-04-14", + "time": "7p", + "home_team": "New York Islanders", + "away_team": "Carolina Hurricanes", + "home_team_abbrev": "NYI", + "away_team_abbrev": "CAR", + "home_team_canonical_id": "team_nhl_nyi", + "away_team_canonical_id": "team_nhl_car", + "venue": "UBS Arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -84538,10 +64317,17 @@ "canonical_id": "game_mlb_2026_20260414_laa_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-14T23:05:00Z", + "date": "2026-04-14", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "NYY", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_laa", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84549,21 +64335,17 @@ "canonical_id": "game_mlb_2026_20260414_mia_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-14T23:15:00Z", + "date": "2026-04-14", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Miami Marlins", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_mia", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260414_tor_mil", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-14T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84571,10 +64353,35 @@ "canonical_id": "game_mlb_2026_20260414_tbr_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-14T23:40:00Z", + "date": "2026-04-14", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "CHW", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260414_tor_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "MIL", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tor", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84582,10 +64389,17 @@ "canonical_id": "game_mlb_2026_20260414_bos_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-14T23:40:00Z", + "date": "2026-04-14", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Boston Red Sox", + "home_team_abbrev": "MIN", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_bos", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84593,10 +64407,35 @@ "canonical_id": "game_mlb_2026_20260414_cle_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-14T23:45:00Z", + "date": "2026-04-14", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "STL", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_cle", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260414_ana_min", + "sport": "NHL", + "season": "2026", + "date": "2026-04-14", + "time": "7p", + "home_team": "Minnesota Wild", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "MIN", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_min", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Xcel Energy Center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -84604,21 +64443,71 @@ "canonical_id": "game_mlb_2026_20260415_col_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-15T00:10:00Z", + "date": "2026-04-14", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Colorado Rockies", + "home_team_abbrev": "HOU", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_col", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260415_tex_oak", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20260414_wpg_ari", + "sport": "NHL", "season": "2026", - "game_datetime_utc": "2026-04-15T01:40:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "date": "2026-04-14", + "time": "7p", + "home_team": "Utah Club", + "away_team": "Winnipeg Jets", + "home_team_abbrev": "ARI", + "away_team_abbrev": "WPG", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_wpg", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260414_col_cgy", + "sport": "NHL", + "season": "2026", + "date": "2026-04-14", + "time": "7p", + "home_team": "Calgary Flames", + "away_team": "Colorado Avalanche", + "home_team_abbrev": "CGY", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_col", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260414_pit_stl", + "sport": "NHL", + "season": "2026", + "date": "2026-04-14", + "time": "8:30p", + "home_team": "St. Louis Blues", + "away_team": "Pittsburgh Penguins", + "home_team_abbrev": "STL", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_nhl_stl", + "away_team_canonical_id": "team_nhl_pit", + "venue": "Enterprise Center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -84626,10 +64515,53 @@ "canonical_id": "game_mlb_2026_20260415_sea_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-15T01:40:00Z", + "date": "2026-04-14", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Seattle Mariners", + "home_team_abbrev": "SD", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_sea", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260415_tex_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-14", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Texas Rangers", + "home_team_abbrev": "OAK", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Sutter Health Park", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260414_la_van", + "sport": "NHL", + "season": "2026", + "date": "2026-04-14", + "time": "7p", + "home_team": "Vancouver Canucks", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "VAN", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_van", + "away_team_canonical_id": "team_nhl_la", + "venue": "Rogers Arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -84637,76 +64569,17 @@ "canonical_id": "game_mlb_2026_20260415_nym_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-15T02:10:00Z", + "date": "2026-04-14", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "New York Mets", + "home_team_abbrev": "LAD", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_nym", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260415_dal_buf", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-15T04:00:00Z", - "home_team_canonical_id": "team_nhl_buf", - "away_team_canonical_id": "team_nhl_dal", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260415_det_fla", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-15T04:00:00Z", - "home_team_canonical_id": "team_nhl_fla", - "away_team_canonical_id": "team_nhl_det", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260415_tor_ott", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-15T04:00:00Z", - "home_team_canonical_id": "team_nhl_ott", - "away_team_canonical_id": "team_nhl_tor", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260415_nyr_tb", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-15T04:00:00Z", - "home_team_canonical_id": "team_nhl_tb", - "away_team_canonical_id": "team_nhl_nyr", - "stadium_canonical_id": "stadium_nhl_amalie_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260415_sj_chi", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-15T05:00:00Z", - "home_team_canonical_id": "team_nhl_chi", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_united_center", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260415_sea_vgk", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-15T07:00:00Z", - "home_team_canonical_id": "team_nhl_vgk", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84714,10 +64587,17 @@ "canonical_id": "game_mlb_2026_20260415_ari_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-15T16:35:00Z", + "date": "2026-04-15", + "time": "12:35p", + "home_team": "Baltimore Orioles", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "BAL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_ari", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84725,10 +64605,17 @@ "canonical_id": "game_mlb_2026_20260415_cle_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-15T17:15:00Z", + "date": "2026-04-15", + "time": "12:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "STL", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_cle", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84736,21 +64623,17 @@ "canonical_id": "game_mlb_2026_20260415_bos_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-15T17:40:00Z", + "date": "2026-04-15", + "time": "12:40p", + "home_team": "Minnesota Twins", + "away_team": "Boston Red Sox", + "home_team_abbrev": "MIN", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_bos", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260415_wsn_pit", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-15T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84758,10 +64641,17 @@ "canonical_id": "game_mlb_2026_20260415_sf_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-15T22:40:00Z", + "date": "2026-04-15", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "San Francisco Giants", + "home_team_abbrev": "CIN", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_sf", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84769,10 +64659,35 @@ "canonical_id": "game_mlb_2026_20260415_kc_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-15T22:40:00Z", + "date": "2026-04-15", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Kansas City Royals", + "home_team_abbrev": "DET", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_kc", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260415_wsn_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Washington Nationals", + "home_team_abbrev": "PIT", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "PNC Park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84780,10 +64695,71 @@ "canonical_id": "game_mlb_2026_20260415_chc_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-15T22:40:00Z", + "date": "2026-04-15", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Chicago Cubs", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_chc", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260415_nyr_tb", + "sport": "NHL", + "season": "2026", + "date": "2026-04-15", + "time": "7p", + "home_team": "Tampa Bay Lightning", + "away_team": "New York Rangers", + "home_team_abbrev": "TB", + "away_team_abbrev": "NYR", + "home_team_canonical_id": "team_nhl_tb", + "away_team_canonical_id": "team_nhl_nyr", + "venue": "Amalie Arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260415_dal_buf", + "sport": "NHL", + "season": "2026", + "date": "2026-04-15", + "time": "7p", + "home_team": "Buffalo Sabres", + "away_team": "Dallas Stars", + "home_team_abbrev": "BUF", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_nhl_buf", + "away_team_canonical_id": "team_nhl_dal", + "venue": "KeyBank Center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260415_det_fla", + "sport": "NHL", + "season": "2026", + "date": "2026-04-15", + "time": "7p", + "home_team": "Florida Panthers", + "away_team": "Detroit Red Wings", + "home_team_abbrev": "FLA", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_nhl_fla", + "away_team_canonical_id": "team_nhl_det", + "venue": "Amerant Bank Arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -84791,10 +64767,17 @@ "canonical_id": "game_mlb_2026_20260415_laa_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-15T23:05:00Z", + "date": "2026-04-15", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "NYY", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_laa", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84802,10 +64785,35 @@ "canonical_id": "game_mlb_2026_20260415_mia_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-15T23:15:00Z", + "date": "2026-04-15", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Miami Marlins", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_mia", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260415_tor_ott", + "sport": "NHL", + "season": "2026", + "date": "2026-04-15", + "time": "7:30p", + "home_team": "Ottawa Senators", + "away_team": "Toronto Maple Leafs", + "home_team_abbrev": "OTT", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_nhl_ott", + "away_team_canonical_id": "team_nhl_tor", + "venue": "Canadian Tire Centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -84813,10 +64821,17 @@ "canonical_id": "game_mlb_2026_20260415_tor_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-15T23:40:00Z", + "date": "2026-04-15", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "MIL", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_tor", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84824,10 +64839,17 @@ "canonical_id": "game_mlb_2026_20260415_tbr_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-15T23:40:00Z", + "date": "2026-04-15", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "CHW", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84835,21 +64857,35 @@ "canonical_id": "game_mlb_2026_20260416_col_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-16T00:10:00Z", + "date": "2026-04-15", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Colorado Rockies", + "home_team_abbrev": "HOU", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_col", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260416_tex_oak_1", - "sport": "MLB", + "canonical_id": "game_nhl_2025_20260415_sj_chi", + "sport": "NHL", "season": "2026", - "game_datetime_utc": "2026-04-16T01:40:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "date": "2026-04-15", + "time": "7:30p", + "home_team": "Chicago Blackhawks", + "away_team": "San Jose Sharks", + "home_team_abbrev": "CHI", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_chi", + "away_team_canonical_id": "team_nhl_sj", + "venue": "United Center", + "stadium_canonical_id": "stadium_nhl_united_center", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -84857,10 +64893,53 @@ "canonical_id": "game_mlb_2026_20260416_sea_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-16T01:40:00Z", + "date": "2026-04-15", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Seattle Mariners", + "home_team_abbrev": "SD", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_sea", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260416_tex_oak_1", + "sport": "MLB", + "season": "2026", + "date": "2026-04-15", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Texas Rangers", + "home_team_abbrev": "OAK", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Sutter Health Park", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260415_sea_vgk", + "sport": "NHL", + "season": "2026", + "date": "2026-04-15", + "time": "7p", + "home_team": "Vegas Golden Knights", + "away_team": "Seattle Kraken", + "home_team_abbrev": "VGK", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_vgk", + "away_team_canonical_id": "team_nhl_sea", + "venue": "T-Mobile Arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -84868,76 +64947,17 @@ "canonical_id": "game_mlb_2026_20260416_nym_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-16T02:10:00Z", + "date": "2026-04-15", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "New York Mets", + "home_team_abbrev": "LAD", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_nym", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260416_ana_nsh", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-16T05:00:00Z", - "home_team_canonical_id": "team_nhl_nsh", - "away_team_canonical_id": "team_nhl_ana", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260416_sj_wpg", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-16T05:00:00Z", - "home_team_canonical_id": "team_nhl_wpg", - "away_team_canonical_id": "team_nhl_sj", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260416_la_cgy", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-16T06:00:00Z", - "home_team_canonical_id": "team_nhl_cgy", - "away_team_canonical_id": "team_nhl_la", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260416_sea_col", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-16T06:00:00Z", - "home_team_canonical_id": "team_nhl_col", - "away_team_canonical_id": "team_nhl_sea", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260416_van_edm", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-16T06:00:00Z", - "home_team_canonical_id": "team_nhl_edm", - "away_team_canonical_id": "team_nhl_van", - "stadium_canonical_id": "stadium_nhl_rogers_place", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_nhl_2025_20260416_stl_ari", - "sport": "NHL", - "season": "2025-26", - "game_datetime_utc": "2026-04-16T06:00:00Z", - "home_team_canonical_id": "team_nhl_ari", - "away_team_canonical_id": "team_nhl_stl", - "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84945,10 +64965,17 @@ "canonical_id": "game_mlb_2026_20260416_wsn_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-16T16:35:00Z", + "date": "2026-04-16", + "time": "12:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "Washington Nationals", + "home_team_abbrev": "PIT", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_wsn", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84956,10 +64983,17 @@ "canonical_id": "game_mlb_2026_20260416_sf_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-16T16:40:00Z", + "date": "2026-04-16", + "time": "12:40p", + "home_team": "Cincinnati Reds", + "away_team": "San Francisco Giants", + "home_team_abbrev": "CIN", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_sf", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84967,10 +65001,17 @@ "canonical_id": "game_mlb_2026_20260416_kc_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-16T17:10:00Z", + "date": "2026-04-16", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Kansas City Royals", + "home_team_abbrev": "DET", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_kc", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84978,10 +65019,17 @@ "canonical_id": "game_mlb_2026_20260416_laa_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-16T17:35:00Z", + "date": "2026-04-16", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "NYY", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_laa", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -84989,10 +65037,17 @@ "canonical_id": "game_mlb_2026_20260416_tor_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-16T17:40:00Z", + "date": "2026-04-16", + "time": "12:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "MIL", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_tor", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85000,10 +65055,17 @@ "canonical_id": "game_mlb_2026_20260416_tbr_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-16T18:10:00Z", + "date": "2026-04-16", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "CHW", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85011,10 +65073,17 @@ "canonical_id": "game_mlb_2026_20260416_tex_oak_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-16T19:05:00Z", + "date": "2026-04-16", + "time": "12:05p", + "home_team": "Oakland Athletics", + "away_team": "Texas Rangers", + "home_team_abbrev": "OAK", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_tex", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85022,10 +65091,71 @@ "canonical_id": "game_mlb_2026_20260416_bal_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-16T22:10:00Z", + "date": "2026-04-16", + "time": "6:10p", + "home_team": "Cleveland Guardians", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "CLE", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_bal", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260416_stl_ari", + "sport": "NHL", + "season": "2026", + "date": "2026-04-16", + "time": "6p", + "home_team": "Utah Club", + "away_team": "St. Louis Blues", + "home_team_abbrev": "ARI", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_nhl_ari", + "away_team_canonical_id": "team_nhl_stl", + "venue": "Delta Center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260416_ana_nsh", + "sport": "NHL", + "season": "2026", + "date": "2026-04-16", + "time": "7p", + "home_team": "Nashville Predators", + "away_team": "Anaheim Ducks", + "home_team_abbrev": "NSH", + "away_team_abbrev": "ANA", + "home_team_canonical_id": "team_nhl_nsh", + "away_team_canonical_id": "team_nhl_ana", + "venue": "Bridgestone Arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260416_sj_wpg", + "sport": "NHL", + "season": "2026", + "date": "2026-04-16", + "time": "7p", + "home_team": "Winnipeg Jets", + "away_team": "San Jose Sharks", + "home_team_abbrev": "WPG", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_nhl_wpg", + "away_team_canonical_id": "team_nhl_sj", + "venue": "Canada Life Centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -85033,10 +65163,17 @@ "canonical_id": "game_mlb_2026_20260417_col_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-17T00:10:00Z", + "date": "2026-04-16", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Colorado Rockies", + "home_team_abbrev": "HOU", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_col", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85044,10 +65181,71 @@ "canonical_id": "game_mlb_2026_20260417_sea_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-17T00:40:00Z", + "date": "2026-04-16", + "time": "5:40p", + "home_team": "San Diego Padres", + "away_team": "Seattle Mariners", + "home_team_abbrev": "SD", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_sea", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260416_la_cgy", + "sport": "NHL", + "season": "2026", + "date": "2026-04-16", + "time": "7p", + "home_team": "Calgary Flames", + "away_team": "Los Angeles Kings", + "home_team_abbrev": "CGY", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_nhl_cgy", + "away_team_canonical_id": "team_nhl_la", + "venue": "Scotiabank Saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260416_van_edm", + "sport": "NHL", + "season": "2026", + "date": "2026-04-16", + "time": "7p", + "home_team": "Edmonton Oilers", + "away_team": "Vancouver Canucks", + "home_team_abbrev": "EDM", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_nhl_edm", + "away_team_canonical_id": "team_nhl_van", + "venue": "Rogers Place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "source": "hockey-reference.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nhl_2025_20260416_sea_col", + "sport": "NHL", + "season": "2026", + "date": "2026-04-16", + "time": "8:30p", + "home_team": "Colorado Avalanche", + "away_team": "Seattle Kraken", + "home_team_abbrev": "COL", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nhl_col", + "away_team_canonical_id": "team_nhl_sea", + "venue": "Ball Arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "source": "hockey-reference.com", "is_playoff": false, "broadcast_info": null }, @@ -85055,10 +65253,17 @@ "canonical_id": "game_mlb_2026_20260417_nym_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-17T18:20:00Z", + "date": "2026-04-17", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "New York Mets", + "home_team_abbrev": "CHC", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_nym", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85066,21 +65271,17 @@ "canonical_id": "game_mlb_2026_20260417_bal_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-17T22:10:00Z", + "date": "2026-04-17", + "time": "6:10p", + "home_team": "Cleveland Guardians", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "CLE", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_bal", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260417_tbr_pit", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-17T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85088,10 +65289,35 @@ "canonical_id": "game_mlb_2026_20260417_atl_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-17T22:40:00Z", + "date": "2026-04-17", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Atlanta Braves", + "home_team_abbrev": "PHI", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_atl", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260417_tbr_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-17", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "PIT", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "PNC Park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85099,10 +65325,17 @@ "canonical_id": "game_mlb_2026_20260417_sf_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-17T22:45:00Z", + "date": "2026-04-17", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "San Francisco Giants", + "home_team_abbrev": "WSN", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_sf", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85110,10 +65343,17 @@ "canonical_id": "game_mlb_2026_20260417_kc_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-17T23:05:00Z", + "date": "2026-04-17", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Kansas City Royals", + "home_team_abbrev": "NYY", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_kc", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85121,10 +65361,17 @@ "canonical_id": "game_mlb_2026_20260417_mil_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-17T23:10:00Z", + "date": "2026-04-17", + "time": "7:10p", + "home_team": "Miami Marlins", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "MIA", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_mil", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85132,10 +65379,17 @@ "canonical_id": "game_mlb_2026_20260417_det_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-17T23:10:00Z", + "date": "2026-04-17", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Detroit Tigers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_det", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85143,10 +65397,17 @@ "canonical_id": "game_mlb_2026_20260418_stl_hou_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-18T00:10:00Z", + "date": "2026-04-17", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "HOU", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_stl", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85154,10 +65415,17 @@ "canonical_id": "game_mlb_2026_20260418_cin_min_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-18T00:10:00Z", + "date": "2026-04-17", + "time": "7:10p", + "home_team": "Minnesota Twins", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_cin", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85165,10 +65433,17 @@ "canonical_id": "game_mlb_2026_20260418_lad_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-18T00:40:00Z", + "date": "2026-04-17", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "COL", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_lad", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85176,10 +65451,17 @@ "canonical_id": "game_mlb_2026_20260418_sd_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-18T01:38:00Z", + "date": "2026-04-17", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "San Diego Padres", + "home_team_abbrev": "LAA", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_sd", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85187,10 +65469,17 @@ "canonical_id": "game_mlb_2026_20260418_tor_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-18T01:40:00Z", + "date": "2026-04-17", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "ARI", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_tor", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85198,10 +65487,17 @@ "canonical_id": "game_mlb_2026_20260418_tex_sea_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-18T01:40:00Z", + "date": "2026-04-17", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Texas Rangers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85209,10 +65505,53 @@ "canonical_id": "game_mlb_2026_20260418_chw_oak_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-18T01:40:00Z", + "date": "2026-04-17", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Chicago White Sox", + "home_team_abbrev": "OAK", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_chw", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260418_skc_van", + "sport": "MLS", + "season": "2026", + "date": "2026-04-17", + "time": "7:30p", + "home_team": "Vancouver Vancouver Whitecaps", + "away_team": "Kansas City Sporting Kansas City", + "home_team_abbrev": "VAN", + "away_team_abbrev": "SKC", + "home_team_canonical_id": "team_mls_van", + "away_team_canonical_id": "team_mls_skc", + "venue": "BC Place", + "stadium_canonical_id": "stadium_mls_bc_place", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260418_aus_tor", + "sport": "MLS", + "season": "2026", + "date": "2026-04-18", + "time": "1p", + "home_team": "Toronto Toronto FC", + "away_team": "Austin Austin FC", + "home_team_abbrev": "TOR", + "away_team_abbrev": "AUS", + "home_team_canonical_id": "team_mls_tor", + "away_team_canonical_id": "team_mls_aus", + "venue": "BMO Field", + "stadium_canonical_id": "stadium_mls_bmo_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -85220,10 +65559,17 @@ "canonical_id": "game_mlb_2026_20260418_kc_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-18T17:35:00Z", + "date": "2026-04-18", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Kansas City Royals", + "home_team_abbrev": "NYY", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_kc", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85231,10 +65577,17 @@ "canonical_id": "game_mlb_2026_20260418_cin_min_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-18T18:10:00Z", + "date": "2026-04-18", + "time": "1:10p", + "home_team": "Minnesota Twins", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_cin", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85242,32 +65595,35 @@ "canonical_id": "game_mlb_2026_20260418_nym_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-18T18:20:00Z", + "date": "2026-04-18", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "New York Mets", + "home_team_abbrev": "CHC", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_nym", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260418_tbr_pit", - "sport": "MLB", + "canonical_id": "game_mls_2026_20260418_ny_mtl", + "sport": "MLS", "season": "2026", - "game_datetime_utc": "2026-04-18T20:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260418_sf_wsn", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-18T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_nationals_park", + "date": "2026-04-18", + "time": "2:30p", + "home_team": "Montreal CF Montreal", + "away_team": "New York New York Red Bulls", + "home_team_abbrev": "MTL", + "away_team_abbrev": "RB", + "home_team_canonical_id": "team_mls_mtl", + "away_team_canonical_id": "team_mls_ny", + "venue": "Stade Saputo", + "stadium_canonical_id": "stadium_mls_stade_saputo", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -85275,10 +65631,53 @@ "canonical_id": "game_mlb_2026_20260418_chw_oak_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-18T20:05:00Z", + "date": "2026-04-18", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Chicago White Sox", + "home_team_abbrev": "OAK", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_chw", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260418_sf_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "4:05p", + "home_team": "Washington Nationals", + "away_team": "San Francisco Giants", + "home_team_abbrev": "WSN", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Nationals Park", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260418_tbr_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-18", + "time": "4:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "PIT", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "PNC Park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85286,10 +65685,17 @@ "canonical_id": "game_mlb_2026_20260418_mil_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-18T20:10:00Z", + "date": "2026-04-18", + "time": "4:10p", + "home_team": "Miami Marlins", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "MIA", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_mil", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85297,10 +65703,35 @@ "canonical_id": "game_mlb_2026_20260418_det_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-18T20:10:00Z", + "date": "2026-04-18", + "time": "4:10p", + "home_team": "Boston Red Sox", + "away_team": "Detroit Tigers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_det", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260418_mia_col", + "sport": "MLS", + "season": "2026", + "date": "2026-04-18", + "time": "2:30p", + "home_team": "Colorado Colorado Rapids", + "away_team": "Miami Inter Miami", + "home_team_abbrev": "COL", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mls_col", + "away_team_canonical_id": "team_mls_mia", + "venue": "Dick's Sporting Goods Park", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -85308,10 +65739,17 @@ "canonical_id": "game_mlb_2026_20260418_bal_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-18T22:10:00Z", + "date": "2026-04-18", + "time": "6:10p", + "home_team": "Cleveland Guardians", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "CLE", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_bal", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85319,10 +65757,17 @@ "canonical_id": "game_mlb_2026_20260418_stl_hou_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-18T23:10:00Z", + "date": "2026-04-18", + "time": "6:10p", + "home_team": "Houston Astros", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "HOU", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_stl", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85330,10 +65775,17 @@ "canonical_id": "game_mlb_2026_20260418_tex_sea_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-18T23:15:00Z", + "date": "2026-04-18", + "time": "4:15p", + "home_team": "Seattle Mariners", + "away_team": "Texas Rangers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85341,10 +65793,125 @@ "canonical_id": "game_mlb_2026_20260418_atl_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-18T23:15:00Z", + "date": "2026-04-18", + "time": "7:15p", + "home_team": "Philadelphia Phillies", + "away_team": "Atlanta Braves", + "home_team_abbrev": "PHI", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_atl", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260418_chi_cin", + "sport": "MLS", + "season": "2026", + "date": "2026-04-18", + "time": "7:30p", + "home_team": "Cincinnati FC Cincinnati", + "away_team": "Chicago Chicago Fire", + "home_team_abbrev": "CIN", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_mls_cin", + "away_team_canonical_id": "team_mls_chi", + "venue": "TQL Stadium", + "stadium_canonical_id": "stadium_mls_tql_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260418_clb_ne", + "sport": "MLS", + "season": "2026", + "date": "2026-04-18", + "time": "7:30p", + "home_team": "New England New England Revolution", + "away_team": "Columbus Columbus Crew", + "home_team_abbrev": "NE", + "away_team_abbrev": "CLB", + "home_team_canonical_id": "team_mls_ne", + "away_team_canonical_id": "team_mls_clb", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_mls_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260418_clt_nyc", + "sport": "MLS", + "season": "2026", + "date": "2026-04-18", + "time": "7:30p", + "home_team": "New York New York City FC", + "away_team": "Charlotte Charlotte FC", + "home_team_abbrev": "NYC", + "away_team_abbrev": "CLT", + "home_team_canonical_id": "team_mls_nyc", + "away_team_canonical_id": "team_mls_clt", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mls_citi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260418_hou_orl", + "sport": "MLS", + "season": "2026", + "date": "2026-04-18", + "time": "7:30p", + "home_team": "Orlando Orlando City", + "away_team": "Houston Houston Dynamo", + "home_team_abbrev": "ORL", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mls_orl", + "away_team_canonical_id": "team_mls_hou", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260418_dc_phi", + "sport": "MLS", + "season": "2026", + "date": "2026-04-18", + "time": "7:30p", + "home_team": "Philadelphia Philadelphia Union", + "away_team": "Washington D.C. United", + "home_team_abbrev": "PHI", + "away_team_abbrev": "DC", + "home_team_canonical_id": "team_mls_phi", + "away_team_canonical_id": "team_mls_dc", + "venue": "Subaru Park", + "stadium_canonical_id": "stadium_mls_subaru_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260418_nsh_atl", + "sport": "MLS", + "season": "2026", + "date": "2026-04-18", + "time": "7:30p", + "home_team": "Atlanta Atlanta United", + "away_team": "Nashville Nashville SC", + "home_team_abbrev": "ATL", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_mls_atl", + "away_team_canonical_id": "team_mls_nsh", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -85352,10 +65919,17 @@ "canonical_id": "game_mlb_2026_20260419_tor_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-19T00:10:00Z", + "date": "2026-04-18", + "time": "5:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "ARI", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_tor", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85363,10 +65937,89 @@ "canonical_id": "game_mlb_2026_20260419_lad_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-19T00:10:00Z", + "date": "2026-04-18", + "time": "6:10p", + "home_team": "Colorado Rockies", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "COL", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_lad", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260419_por_min", + "sport": "MLS", + "season": "2026", + "date": "2026-04-18", + "time": "7:30p", + "home_team": "Minnesota Minnesota United", + "away_team": "Portland Portland Timbers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_mls_min", + "away_team_canonical_id": "team_mls_por", + "venue": "Allianz Field", + "stadium_canonical_id": "stadium_mls_allianz_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260419_lag_dal", + "sport": "MLS", + "season": "2026", + "date": "2026-04-18", + "time": "7:30p", + "home_team": "Dallas FC Dallas", + "away_team": "Los Angeles LA Galaxy", + "home_team_abbrev": "DAL", + "away_team_abbrev": "LAG", + "home_team_canonical_id": "team_mls_dal", + "away_team_canonical_id": "team_mls_lag", + "venue": "Toyota Stadium", + "stadium_canonical_id": "stadium_mls_toyota_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260419_sd_slc", + "sport": "MLS", + "season": "2026", + "date": "2026-04-18", + "time": "7:30p", + "home_team": "Salt Lake Real Salt Lake", + "away_team": "San Diego San Diego FC", + "home_team_abbrev": "SLC", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mls_slc", + "away_team_canonical_id": "team_mls_sd", + "venue": "America First Field", + "stadium_canonical_id": "stadium_mls_america_first_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260419_stl_sea", + "sport": "MLS", + "season": "2026", + "date": "2026-04-18", + "time": "6:30p", + "home_team": "Seattle Seattle Sounders", + "away_team": "St. Louis St. Louis City SC", + "home_team_abbrev": "SEA", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mls_sea", + "away_team_canonical_id": "team_mls_stl", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_mls_lumen_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -85374,43 +66027,17 @@ "canonical_id": "game_mlb_2026_20260419_sd_laa_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-19T01:38:00Z", + "date": "2026-04-18", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "San Diego Padres", + "home_team_abbrev": "LAA", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_sd", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260419_tbr_pit", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-19T17:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260419_sf_wsn", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-19T17:35:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260419_kc_nyy", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-19T17:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85418,21 +66045,71 @@ "canonical_id": "game_mlb_2026_20260419_det_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-19T17:35:00Z", + "date": "2026-04-19", + "time": "1:35p", + "home_team": "Boston Red Sox", + "away_team": "Detroit Tigers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_det", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260419_mil_mia", + "canonical_id": "game_mlb_2026_20260419_kc_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-19T17:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_loandepot_park", + "date": "2026-04-19", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Kansas City Royals", + "home_team_abbrev": "NYY", + "away_team_abbrev": "KC", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_kc", + "venue": "Yankee Stadium", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260419_tbr_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "1:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "PIT", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "PNC Park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260419_sf_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "1:35p", + "home_team": "Washington Nationals", + "away_team": "San Francisco Giants", + "home_team_abbrev": "WSN", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Nationals Park", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85440,10 +66117,35 @@ "canonical_id": "game_mlb_2026_20260419_bal_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-19T17:40:00Z", + "date": "2026-04-19", + "time": "1:40p", + "home_team": "Cleveland Guardians", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "CLE", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_bal", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260419_mil_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "1:40p", + "home_team": "Miami Marlins", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "MIA", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_mil", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85451,10 +66153,17 @@ "canonical_id": "game_mlb_2026_20260419_stl_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-19T18:10:00Z", + "date": "2026-04-19", + "time": "1:10p", + "home_team": "Houston Astros", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "HOU", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_stl", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85462,10 +66171,17 @@ "canonical_id": "game_mlb_2026_20260419_cin_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-19T18:10:00Z", + "date": "2026-04-19", + "time": "1:10p", + "home_team": "Minnesota Twins", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_cin", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85473,10 +66189,17 @@ "canonical_id": "game_mlb_2026_20260419_nym_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-19T18:20:00Z", + "date": "2026-04-19", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "New York Mets", + "home_team_abbrev": "CHC", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_nym", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85484,10 +66207,17 @@ "canonical_id": "game_mlb_2026_20260419_lad_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-19T19:10:00Z", + "date": "2026-04-19", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "COL", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_lad", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85495,10 +66225,17 @@ "canonical_id": "game_mlb_2026_20260419_chw_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-19T20:05:00Z", + "date": "2026-04-19", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Chicago White Sox", + "home_team_abbrev": "OAK", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_chw", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85506,21 +66243,17 @@ "canonical_id": "game_mlb_2026_20260419_sd_laa_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-19T20:07:00Z", + "date": "2026-04-19", + "time": "1:07p", + "home_team": "Los Angeles Angels", + "away_team": "San Diego Padres", + "home_team_abbrev": "LAA", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_sd", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260419_tor_ari_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-19T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85528,10 +66261,53 @@ "canonical_id": "game_mlb_2026_20260419_tex_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-19T20:10:00Z", + "date": "2026-04-19", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Texas Rangers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260419_tor_ari_2", + "sport": "MLB", + "season": "2026", + "date": "2026-04-19", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "ARI", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_tor", + "venue": "Chase Field", + "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260419_sj_lafc", + "sport": "MLS", + "season": "2026", + "date": "2026-04-19", + "time": "4p", + "home_team": "Los Angeles Los Angeles FC", + "away_team": "San Jose San Jose Earthquakes", + "home_team_abbrev": "LAFC", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_mls_lafc", + "away_team_canonical_id": "team_mls_sj", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -85539,10 +66315,17 @@ "canonical_id": "game_mlb_2026_20260419_atl_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-19T23:20:00Z", + "date": "2026-04-19", + "time": "7:20p", + "home_team": "Philadelphia Phillies", + "away_team": "Atlanta Braves", + "home_team_abbrev": "PHI", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_atl", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85550,10 +66333,17 @@ "canonical_id": "game_mlb_2026_20260420_det_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-20T15:10:00Z", + "date": "2026-04-20", + "time": "11:10a", + "home_team": "Boston Red Sox", + "away_team": "Detroit Tigers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_det", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85561,21 +66351,17 @@ "canonical_id": "game_mlb_2026_20260420_hou_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-20T22:10:00Z", + "date": "2026-04-20", + "time": "6:10p", + "home_team": "Cleveland Guardians", + "away_team": "Houston Astros", + "home_team_abbrev": "CLE", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_hou", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260420_stl_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-20T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85583,10 +66369,35 @@ "canonical_id": "game_mlb_2026_20260420_cin_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-20T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-04-20", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "TB", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_cin", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260420_stl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-04-20", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "MIA", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_stl", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85594,10 +66405,17 @@ "canonical_id": "game_mlb_2026_20260420_atl_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-20T22:45:00Z", + "date": "2026-04-20", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Atlanta Braves", + "home_team_abbrev": "WSN", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_atl", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85605,10 +66423,17 @@ "canonical_id": "game_mlb_2026_20260420_phi_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-20T23:40:00Z", + "date": "2026-04-20", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "CHC", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_phi", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85616,10 +66441,17 @@ "canonical_id": "game_mlb_2026_20260420_bal_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-20T23:40:00Z", + "date": "2026-04-20", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "KC", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_bal", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85627,10 +66459,17 @@ "canonical_id": "game_mlb_2026_20260421_lad_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-21T00:40:00Z", + "date": "2026-04-20", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "COL", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_lad", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85638,10 +66477,17 @@ "canonical_id": "game_mlb_2026_20260421_tor_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-21T01:38:00Z", + "date": "2026-04-20", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "LAA", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_tor", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85649,10 +66495,17 @@ "canonical_id": "game_mlb_2026_20260421_oak_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-21T01:40:00Z", + "date": "2026-04-20", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Oakland Athletics", + "home_team_abbrev": "SEA", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85660,10 +66513,17 @@ "canonical_id": "game_mlb_2026_20260421_hou_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-21T22:10:00Z", + "date": "2026-04-21", + "time": "6:10p", + "home_team": "Cleveland Guardians", + "away_team": "Houston Astros", + "home_team_abbrev": "CLE", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_hou", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85671,10 +66531,17 @@ "canonical_id": "game_mlb_2026_20260421_stl_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-21T22:40:00Z", + "date": "2026-04-21", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "MIA", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_stl", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85682,10 +66549,17 @@ "canonical_id": "game_mlb_2026_20260421_mil_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-21T22:40:00Z", + "date": "2026-04-21", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "DET", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_mil", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85693,10 +66567,17 @@ "canonical_id": "game_mlb_2026_20260421_cin_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-21T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-04-21", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "TB", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_cin", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85704,10 +66585,17 @@ "canonical_id": "game_mlb_2026_20260421_nyy_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-21T22:45:00Z", + "date": "2026-04-21", + "time": "6:45p", + "home_team": "Boston Red Sox", + "away_team": "New York Yankees", + "home_team_abbrev": "BOS", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85715,10 +66603,17 @@ "canonical_id": "game_mlb_2026_20260421_atl_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-21T22:45:00Z", + "date": "2026-04-21", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Atlanta Braves", + "home_team_abbrev": "WSN", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_atl", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85726,21 +66621,17 @@ "canonical_id": "game_mlb_2026_20260421_min_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-21T23:10:00Z", + "date": "2026-04-21", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Minnesota Twins", + "home_team_abbrev": "NYM", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_min", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260421_phi_chc", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-21T23:40:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85748,10 +66639,35 @@ "canonical_id": "game_mlb_2026_20260421_bal_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-21T23:40:00Z", + "date": "2026-04-21", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "KC", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_bal", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260421_phi_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "CHC", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_phi", + "venue": "Wrigley Field", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85759,10 +66675,17 @@ "canonical_id": "game_mlb_2026_20260422_pit_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-22T00:05:00Z", + "date": "2026-04-21", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "TEX", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_pit", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85770,10 +66693,17 @@ "canonical_id": "game_mlb_2026_20260422_sd_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-22T00:40:00Z", + "date": "2026-04-21", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "San Diego Padres", + "home_team_abbrev": "COL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_sd", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85781,21 +66711,17 @@ "canonical_id": "game_mlb_2026_20260422_tor_laa_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-22T01:38:00Z", + "date": "2026-04-21", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "LAA", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_tor", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260422_oak_sea_1", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-22T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85803,10 +66729,35 @@ "canonical_id": "game_mlb_2026_20260422_chw_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-22T01:40:00Z", + "date": "2026-04-21", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Chicago White Sox", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_chw", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260422_oak_sea_1", + "sport": "MLB", + "season": "2026", + "date": "2026-04-21", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Oakland Athletics", + "home_team_abbrev": "SEA", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_oak", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85814,10 +66765,17 @@ "canonical_id": "game_mlb_2026_20260422_lad_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-22T01:45:00Z", + "date": "2026-04-21", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "SF", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_lad", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85825,10 +66783,17 @@ "canonical_id": "game_mlb_2026_20260422_stl_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-22T16:10:00Z", + "date": "2026-04-22", + "time": "12:10p", + "home_team": "Miami Marlins", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "MIA", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_stl", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85836,10 +66801,17 @@ "canonical_id": "game_mlb_2026_20260422_hou_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-22T17:10:00Z", + "date": "2026-04-22", + "time": "1:10p", + "home_team": "Cleveland Guardians", + "away_team": "Houston Astros", + "home_team_abbrev": "CLE", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_hou", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85847,10 +66819,17 @@ "canonical_id": "game_mlb_2026_20260422_cin_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-22T17:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-04-22", + "time": "1:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "TB", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_cin", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85858,10 +66837,17 @@ "canonical_id": "game_mlb_2026_20260422_bal_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-22T18:10:00Z", + "date": "2026-04-22", + "time": "1:10p", + "home_team": "Kansas City Royals", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "KC", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_bal", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85869,10 +66855,17 @@ "canonical_id": "game_mlb_2026_20260422_tor_laa_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-22T19:07:00Z", + "date": "2026-04-22", + "time": "12:07p", + "home_team": "Los Angeles Angels", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "LAA", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_tor", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85880,10 +66873,17 @@ "canonical_id": "game_mlb_2026_20260422_oak_sea_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-22T20:10:00Z", + "date": "2026-04-22", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Oakland Athletics", + "home_team_abbrev": "SEA", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85891,10 +66891,17 @@ "canonical_id": "game_mlb_2026_20260422_mil_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-22T22:40:00Z", + "date": "2026-04-22", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "DET", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_mil", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85902,10 +66909,17 @@ "canonical_id": "game_mlb_2026_20260422_nyy_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-22T22:45:00Z", + "date": "2026-04-22", + "time": "6:45p", + "home_team": "Boston Red Sox", + "away_team": "New York Yankees", + "home_team_abbrev": "BOS", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85913,10 +66927,17 @@ "canonical_id": "game_mlb_2026_20260422_atl_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-22T22:45:00Z", + "date": "2026-04-22", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Atlanta Braves", + "home_team_abbrev": "WSN", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_atl", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85924,10 +66945,125 @@ "canonical_id": "game_mlb_2026_20260422_min_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-22T23:10:00Z", + "date": "2026-04-22", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Minnesota Twins", + "home_team_abbrev": "NYM", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_min", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260422_dc_ny", + "sport": "MLS", + "season": "2026", + "date": "2026-04-22", + "time": "7:30p", + "home_team": "New York New York Red Bulls", + "away_team": "Washington D.C. United", + "home_team_abbrev": "RB", + "away_team_abbrev": "DC", + "home_team_canonical_id": "team_mls_ny", + "away_team_canonical_id": "team_mls_dc", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_mls_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260422_cin_nyc", + "sport": "MLS", + "season": "2026", + "date": "2026-04-22", + "time": "7:30p", + "home_team": "New York New York City FC", + "away_team": "Cincinnati FC Cincinnati", + "home_team_abbrev": "NYC", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mls_nyc", + "away_team_canonical_id": "team_mls_cin", + "venue": "Yankee Stadium", + "stadium_canonical_id": "stadium_mls_yankee_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260422_clt_orl", + "sport": "MLS", + "season": "2026", + "date": "2026-04-22", + "time": "7:30p", + "home_team": "Orlando Orlando City", + "away_team": "Charlotte Charlotte FC", + "home_team_abbrev": "ORL", + "away_team_abbrev": "CLT", + "home_team_canonical_id": "team_mls_orl", + "away_team_canonical_id": "team_mls_clt", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260422_phi_tor", + "sport": "MLS", + "season": "2026", + "date": "2026-04-22", + "time": "7:30p", + "home_team": "Toronto Toronto FC", + "away_team": "Philadelphia Philadelphia Union", + "home_team_abbrev": "TOR", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mls_tor", + "away_team_canonical_id": "team_mls_phi", + "venue": "BMO Field", + "stadium_canonical_id": "stadium_mls_bmo_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260422_ne_atl", + "sport": "MLS", + "season": "2026", + "date": "2026-04-22", + "time": "7:30p", + "home_team": "Atlanta Atlanta United", + "away_team": "New England New England Revolution", + "home_team_abbrev": "ATL", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_mls_atl", + "away_team_canonical_id": "team_mls_ne", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260422_lag_clb", + "sport": "MLS", + "season": "2026", + "date": "2026-04-22", + "time": "7:30p", + "home_team": "Columbus Columbus Crew", + "away_team": "Los Angeles LA Galaxy", + "home_team_abbrev": "CLB", + "away_team_abbrev": "LAG", + "home_team_canonical_id": "team_mls_clb", + "away_team_canonical_id": "team_mls_lag", + "venue": "Lower.com Field", + "stadium_canonical_id": "stadium_mls_lowercom_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -85935,10 +67071,17 @@ "canonical_id": "game_mlb_2026_20260422_phi_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-22T23:40:00Z", + "date": "2026-04-22", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "CHC", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_phi", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85946,10 +67089,53 @@ "canonical_id": "game_mlb_2026_20260423_pit_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-23T00:05:00Z", + "date": "2026-04-22", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "TEX", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_pit", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260423_min_dal", + "sport": "MLS", + "season": "2026", + "date": "2026-04-22", + "time": "7:30p", + "home_team": "Dallas FC Dallas", + "away_team": "Minnesota Minnesota United", + "home_team_abbrev": "DAL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mls_dal", + "away_team_canonical_id": "team_mls_min", + "venue": "Toyota Stadium", + "stadium_canonical_id": "stadium_mls_toyota_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260423_sd_hou", + "sport": "MLS", + "season": "2026", + "date": "2026-04-22", + "time": "7:30p", + "home_team": "Houston Houston Dynamo", + "away_team": "San Diego San Diego FC", + "home_team_abbrev": "HOU", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mls_hou", + "away_team_canonical_id": "team_mls_sd", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_mls_shell_energy_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -85957,10 +67143,35 @@ "canonical_id": "game_mlb_2026_20260423_sd_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-23T00:40:00Z", + "date": "2026-04-22", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "San Diego Padres", + "home_team_abbrev": "COL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_sd", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260423_mia_slc", + "sport": "MLS", + "season": "2026", + "date": "2026-04-22", + "time": "7:30p", + "home_team": "Salt Lake Real Salt Lake", + "away_team": "Miami Inter Miami", + "home_team_abbrev": "SLC", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mls_slc", + "away_team_canonical_id": "team_mls_mia", + "venue": "America First Field", + "stadium_canonical_id": "stadium_mls_america_first_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -85968,10 +67179,17 @@ "canonical_id": "game_mlb_2026_20260423_chw_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-23T01:40:00Z", + "date": "2026-04-22", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Chicago White Sox", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_chw", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -85979,10 +67197,53 @@ "canonical_id": "game_mlb_2026_20260423_lad_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-23T01:45:00Z", + "date": "2026-04-22", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "SF", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_lad", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260423_aus_sj", + "sport": "MLS", + "season": "2026", + "date": "2026-04-22", + "time": "7:30p", + "home_team": "San Jose San Jose Earthquakes", + "away_team": "Austin Austin FC", + "home_team_abbrev": "SJ", + "away_team_abbrev": "AUS", + "home_team_canonical_id": "team_mls_sj", + "away_team_canonical_id": "team_mls_aus", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_mls_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260423_col_lafc", + "sport": "MLS", + "season": "2026", + "date": "2026-04-22", + "time": "7:30p", + "home_team": "Los Angeles Los Angeles FC", + "away_team": "Colorado Colorado Rapids", + "home_team_abbrev": "LAFC", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mls_lafc", + "away_team_canonical_id": "team_mls_col", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -85990,10 +67251,17 @@ "canonical_id": "game_mlb_2026_20260423_atl_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-23T17:05:00Z", + "date": "2026-04-23", + "time": "1:05p", + "home_team": "Washington Nationals", + "away_team": "Atlanta Braves", + "home_team_abbrev": "WSN", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_atl", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86001,10 +67269,17 @@ "canonical_id": "game_mlb_2026_20260423_mil_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-23T17:10:00Z", + "date": "2026-04-23", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "DET", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_mil", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86012,10 +67287,17 @@ "canonical_id": "game_mlb_2026_20260423_phi_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-23T18:20:00Z", + "date": "2026-04-23", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "CHC", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_phi", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86023,10 +67305,17 @@ "canonical_id": "game_mlb_2026_20260423_sd_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-23T19:10:00Z", + "date": "2026-04-23", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "San Diego Padres", + "home_team_abbrev": "COL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_sd", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86034,10 +67323,17 @@ "canonical_id": "game_mlb_2026_20260423_chw_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-23T19:40:00Z", + "date": "2026-04-23", + "time": "12:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Chicago White Sox", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_chw", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86045,10 +67341,17 @@ "canonical_id": "game_mlb_2026_20260423_lad_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-23T19:45:00Z", + "date": "2026-04-23", + "time": "12:45p", + "home_team": "San Francisco Giants", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "SF", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_lad", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86056,10 +67359,17 @@ "canonical_id": "game_mlb_2026_20260423_nyy_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-23T22:10:00Z", + "date": "2026-04-23", + "time": "6:10p", + "home_team": "Boston Red Sox", + "away_team": "New York Yankees", + "home_team_abbrev": "BOS", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86067,10 +67377,17 @@ "canonical_id": "game_mlb_2026_20260423_min_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-23T23:10:00Z", + "date": "2026-04-23", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Minnesota Twins", + "home_team_abbrev": "NYM", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_min", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86078,10 +67395,35 @@ "canonical_id": "game_mlb_2026_20260424_pit_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-24T00:05:00Z", + "date": "2026-04-23", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "TEX", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_pit", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260424_orl_rgn", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-24", + "time": "5:30p", + "home_team": "Louisville Racing Louisville", + "away_team": "Orlando Orlando Pride", + "home_team_abbrev": "RGN", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nwsl_rgn", + "away_team_canonical_id": "team_nwsl_orl", + "venue": "Lynn Family Stadium", + "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -86089,10 +67431,17 @@ "canonical_id": "game_mlb_2026_20260424_det_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-24T22:40:00Z", + "date": "2026-04-24", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Detroit Tigers", + "home_team_abbrev": "CIN", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_det", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86100,10 +67449,17 @@ "canonical_id": "game_mlb_2026_20260424_bos_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-24T23:05:00Z", + "date": "2026-04-24", + "time": "7:05p", + "home_team": "Baltimore Orioles", + "away_team": "Boston Red Sox", + "home_team_abbrev": "BAL", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_bos", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86111,21 +67467,17 @@ "canonical_id": "game_mlb_2026_20260424_cle_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-24T23:07:00Z", + "date": "2026-04-24", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_cle", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260424_min_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-24T23:10:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86133,10 +67485,35 @@ "canonical_id": "game_mlb_2026_20260424_col_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-24T23:10:00Z", + "date": "2026-04-24", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Colorado Rockies", + "home_team_abbrev": "NYM", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_col", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260424_min_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-24", + "time": "7:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Minnesota Twins", + "home_team_abbrev": "TB", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_min", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86144,10 +67521,17 @@ "canonical_id": "game_mlb_2026_20260424_phi_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-24T23:15:00Z", + "date": "2026-04-24", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "ATL", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_phi", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86155,10 +67539,17 @@ "canonical_id": "game_mlb_2026_20260424_wsn_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-24T23:40:00Z", + "date": "2026-04-24", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Washington Nationals", + "home_team_abbrev": "CHW", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86166,10 +67557,17 @@ "canonical_id": "game_mlb_2026_20260424_pit_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-24T23:40:00Z", + "date": "2026-04-24", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "MIL", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_pit", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86177,10 +67575,35 @@ "canonical_id": "game_mlb_2026_20260424_laa_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-24T23:40:00Z", + "date": "2026-04-24", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "KC", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_laa", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260425_kcc_wsh", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-24", + "time": "8p", + "home_team": "Washington Washington Spirit", + "away_team": "Kansas City Kansas City Current", + "home_team_abbrev": "WSH", + "away_team_abbrev": "KCC", + "home_team_canonical_id": "team_nwsl_wsh", + "away_team_canonical_id": "team_nwsl_kcc", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_nwsl_audi_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -86188,10 +67611,17 @@ "canonical_id": "game_mlb_2026_20260425_oak_tex_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-25T00:05:00Z", + "date": "2026-04-24", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Oakland Athletics", + "home_team_abbrev": "TEX", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_oak", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86199,10 +67629,17 @@ "canonical_id": "game_mlb_2026_20260425_nyy_hou_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-25T00:10:00Z", + "date": "2026-04-24", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "New York Yankees", + "home_team_abbrev": "HOU", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86210,10 +67647,17 @@ "canonical_id": "game_mlb_2026_20260425_sea_stl_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-25T00:15:00Z", + "date": "2026-04-24", + "time": "7:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Seattle Mariners", + "home_team_abbrev": "STL", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_sea", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86221,10 +67665,17 @@ "canonical_id": "game_mlb_2026_20260425_chc_lad_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-25T02:10:00Z", + "date": "2026-04-24", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Chicago Cubs", + "home_team_abbrev": "LAD", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_chc", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86232,10 +67683,71 @@ "canonical_id": "game_mlb_2026_20260425_mia_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-25T02:15:00Z", + "date": "2026-04-24", + "time": "7:15p", + "home_team": "San Francisco Giants", + "away_team": "Miami Marlins", + "home_team_abbrev": "SF", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_mia", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260425_atl_tor", + "sport": "MLS", + "season": "2026", + "date": "2026-04-25", + "time": "1p", + "home_team": "Toronto Toronto FC", + "away_team": "Atlanta Atlanta United", + "home_team_abbrev": "TOR", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mls_tor", + "away_team_canonical_id": "team_mls_atl", + "venue": "BMO Field", + "stadium_canonical_id": "stadium_mls_bmo_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260425_bay_njy", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-25", + "time": "1p", + "home_team": "New Jersey NJ/NY Gotham FC", + "away_team": "San Francisco Bay FC", + "home_team_abbrev": "NJY", + "away_team_abbrev": "BAY", + "home_team_canonical_id": "team_nwsl_njy", + "away_team_canonical_id": "team_nwsl_bay", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_nwsl_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260425_lafc_min", + "sport": "MLS", + "season": "2026", + "date": "2026-04-25", + "time": "12:30p", + "home_team": "Minnesota Minnesota United", + "away_team": "Los Angeles Los Angeles FC", + "home_team_abbrev": "MIN", + "away_team_abbrev": "LAFC", + "home_team_canonical_id": "team_mls_min", + "away_team_canonical_id": "team_mls_lafc", + "venue": "Allianz Field", + "stadium_canonical_id": "stadium_mls_allianz_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -86243,10 +67755,17 @@ "canonical_id": "game_mlb_2026_20260425_sea_stl_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-25T18:15:00Z", + "date": "2026-04-25", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Seattle Mariners", + "home_team_abbrev": "STL", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_sea", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86254,21 +67773,17 @@ "canonical_id": "game_mlb_2026_20260425_cle_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-25T19:07:00Z", + "date": "2026-04-25", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_cle", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260425_mia_sf_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-25T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86276,21 +67791,35 @@ "canonical_id": "game_mlb_2026_20260425_bos_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-25T20:05:00Z", + "date": "2026-04-25", + "time": "4:05p", + "home_team": "Baltimore Orioles", + "away_team": "Boston Red Sox", + "home_team_abbrev": "BAL", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_bos", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260425_wsn_chw", + "canonical_id": "game_mlb_2026_20260425_mia_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-25T20:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "date": "2026-04-25", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Miami Marlins", + "home_team_abbrev": "SF", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_sf", + "away_team_canonical_id": "team_mlb_mia", + "venue": "Oracle Park", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86298,10 +67827,35 @@ "canonical_id": "game_mlb_2026_20260425_min_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-25T20:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-04-25", + "time": "4:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Minnesota Twins", + "home_team_abbrev": "TB", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_min", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260425_wsn_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "3:10p", + "home_team": "Chicago White Sox", + "away_team": "Washington Nationals", + "home_team_abbrev": "CHW", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "Guaranteed Rate Field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86309,10 +67863,17 @@ "canonical_id": "game_mlb_2026_20260425_col_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-25T20:10:00Z", + "date": "2026-04-25", + "time": "4:10p", + "home_team": "New York Mets", + "away_team": "Colorado Rockies", + "home_team_abbrev": "NYM", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_col", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86320,10 +67881,35 @@ "canonical_id": "game_mlb_2026_20260425_sd_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-25T22:05:00Z", + "date": "2026-04-25", + "time": "4:05p", + "home_team": "Arizona Diamondbacks", + "away_team": "San Diego Padres", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_estadio_alfredo_harp_helu", + "venue": "Estadio Alfredo Harp Helu", + "stadium_canonical_id": "stadium_mlb_mexico_alfredo_harp_helu", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260425_bos_chi", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-25", + "time": "5:30p", + "home_team": "Chicago Chicago Red Stars", + "away_team": "Boston Boston Legacy FC", + "home_team_abbrev": "CHI", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nwsl_chi", + "away_team_canonical_id": "team_nwsl_bos", + "venue": "Northwestern Medicine Field at Martin Stadium", + "stadium_canonical_id": "stadium_nwsl_northwestern_medicine_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -86331,10 +67917,17 @@ "canonical_id": "game_mlb_2026_20260425_oak_tex_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-25T23:05:00Z", + "date": "2026-04-25", + "time": "6:05p", + "home_team": "Texas Rangers", + "away_team": "Oakland Athletics", + "home_team_abbrev": "TEX", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_oak", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86342,21 +67935,17 @@ "canonical_id": "game_mlb_2026_20260425_pit_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-25T23:10:00Z", + "date": "2026-04-25", + "time": "6:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "MIL", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_pit", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260425_nyy_hou_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-25T23:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86364,32 +67953,35 @@ "canonical_id": "game_mlb_2026_20260425_laa_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-25T23:10:00Z", + "date": "2026-04-25", + "time": "6:10p", + "home_team": "Kansas City Royals", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "KC", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_laa", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260425_phi_atl", + "canonical_id": "game_mlb_2026_20260425_nyy_hou_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-25T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260425_det_cin", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-25T23:15:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "date": "2026-04-25", + "time": "6:10p", + "home_team": "Houston Astros", + "away_team": "New York Yankees", + "home_team_abbrev": "HOU", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Minute Maid Park", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86397,10 +67989,287 @@ "canonical_id": "game_mlb_2026_20260425_chc_lad_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-25T23:15:00Z", + "date": "2026-04-25", + "time": "4:15p", + "home_team": "Los Angeles Dodgers", + "away_team": "Chicago Cubs", + "home_team_abbrev": "LAD", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_chc", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260425_det_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "7:15p", + "home_team": "Cincinnati Reds", + "away_team": "Detroit Tigers", + "home_team_abbrev": "CIN", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_det", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260425_phi_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-04-25", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "ATL", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_phi", + "venue": "Truist Park", + "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260425_ne_mia", + "sport": "MLS", + "season": "2026", + "date": "2026-04-25", + "time": "7:30p", + "home_team": "Miami Inter Miami", + "away_team": "New England New England Revolution", + "home_team_abbrev": "MIA", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_mls_mia", + "away_team_canonical_id": "team_mls_ne", + "venue": "Miami Freedom Park", + "stadium_canonical_id": "stadium_mls_miami_freedom_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260425_ny_cin", + "sport": "MLS", + "season": "2026", + "date": "2026-04-25", + "time": "7:30p", + "home_team": "Cincinnati FC Cincinnati", + "away_team": "New York New York Red Bulls", + "home_team_abbrev": "CIN", + "away_team_abbrev": "RB", + "home_team_canonical_id": "team_mls_cin", + "away_team_canonical_id": "team_mls_ny", + "venue": "TQL Stadium", + "stadium_canonical_id": "stadium_mls_tql_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260425_orl_dc", + "sport": "MLS", + "season": "2026", + "date": "2026-04-25", + "time": "7:30p", + "home_team": "Washington D.C. United", + "away_team": "Orlando Orlando City", + "home_team_abbrev": "DC", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_mls_dc", + "away_team_canonical_id": "team_mls_orl", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_mls_audi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260425_phi_clb", + "sport": "MLS", + "season": "2026", + "date": "2026-04-25", + "time": "7:30p", + "home_team": "Columbus Columbus Crew", + "away_team": "Philadelphia Philadelphia Union", + "home_team_abbrev": "CLB", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mls_clb", + "away_team_canonical_id": "team_mls_phi", + "venue": "Lower.com Field", + "stadium_canonical_id": "stadium_mls_lowercom_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260426_ncc_hou", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-25", + "time": "7p", + "home_team": "Houston Houston Dash", + "away_team": "North Carolina North Carolina Courage", + "home_team_abbrev": "HOU", + "away_team_abbrev": "NCC", + "home_team_canonical_id": "team_nwsl_hou", + "away_team_canonical_id": "team_nwsl_ncc", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260426_hou_aus", + "sport": "MLS", + "season": "2026", + "date": "2026-04-25", + "time": "7:30p", + "home_team": "Austin Austin FC", + "away_team": "Houston Houston Dynamo", + "home_team_abbrev": "AUS", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mls_aus", + "away_team_canonical_id": "team_mls_hou", + "venue": "Q2 Stadium", + "stadium_canonical_id": "stadium_mls_q2_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260426_clt_nsh", + "sport": "MLS", + "season": "2026", + "date": "2026-04-25", + "time": "7:30p", + "home_team": "Nashville Nashville SC", + "away_team": "Charlotte Charlotte FC", + "home_team_abbrev": "NSH", + "away_team_abbrev": "CLT", + "home_team_canonical_id": "team_mls_nsh", + "away_team_canonical_id": "team_mls_clt", + "venue": "GEODIS Park", + "stadium_canonical_id": "stadium_mls_geodis_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260426_skc_chi", + "sport": "MLS", + "season": "2026", + "date": "2026-04-25", + "time": "7:30p", + "home_team": "Chicago Chicago Fire", + "away_team": "Kansas City Sporting Kansas City", + "home_team_abbrev": "CHI", + "away_team_abbrev": "SKC", + "home_team_canonical_id": "team_mls_chi", + "away_team_canonical_id": "team_mls_skc", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_mls_soldier_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260426_sj_stl", + "sport": "MLS", + "season": "2026", + "date": "2026-04-25", + "time": "7:30p", + "home_team": "St. Louis St. Louis City SC", + "away_team": "San Jose San Jose Earthquakes", + "home_team_abbrev": "STL", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_mls_stl", + "away_team_canonical_id": "team_mls_sj", + "venue": "CITYPARK", + "stadium_canonical_id": "stadium_mls_citypark", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260426_sdw_den", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-25", + "time": "6:45p", + "home_team": "Denver Denver Summit FC", + "away_team": "San Diego San Diego Wave", + "home_team_abbrev": "DEN", + "away_team_abbrev": "SDW", + "home_team_canonical_id": "team_nwsl_den", + "away_team_canonical_id": "team_nwsl_sdw", + "venue": "Centennial Stadium", + "stadium_canonical_id": "stadium_nwsl_centennial_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260426_por_sd", + "sport": "MLS", + "season": "2026", + "date": "2026-04-25", + "time": "6:30p", + "home_team": "San Diego San Diego FC", + "away_team": "Portland Portland Timbers", + "home_team_abbrev": "SD", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_mls_sd", + "away_team_canonical_id": "team_mls_por", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260426_dal_sea", + "sport": "MLS", + "season": "2026", + "date": "2026-04-25", + "time": "7:30p", + "home_team": "Seattle Seattle Sounders", + "away_team": "Dallas FC Dallas", + "home_team_abbrev": "SEA", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_mls_sea", + "away_team_canonical_id": "team_mls_dal", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_mls_lumen_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260426_col_van", + "sport": "MLS", + "season": "2026", + "date": "2026-04-25", + "time": "7:30p", + "home_team": "Vancouver Vancouver Whitecaps", + "away_team": "Colorado Colorado Rapids", + "home_team_abbrev": "VAN", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mls_van", + "away_team_canonical_id": "team_mls_col", + "venue": "BC Place", + "stadium_canonical_id": "stadium_mls_bc_place", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -86408,10 +68277,17 @@ "canonical_id": "game_mlb_2026_20260426_phi_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-26T17:35:00Z", + "date": "2026-04-26", + "time": "1:35p", + "home_team": "Atlanta Braves", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "ATL", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_phi", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86419,10 +68295,17 @@ "canonical_id": "game_mlb_2026_20260426_bos_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-26T17:35:00Z", + "date": "2026-04-26", + "time": "1:35p", + "home_team": "Baltimore Orioles", + "away_team": "Boston Red Sox", + "home_team_abbrev": "BAL", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_bos", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86430,21 +68313,17 @@ "canonical_id": "game_mlb_2026_20260426_cle_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-26T17:37:00Z", + "date": "2026-04-26", + "time": "1:37p", + "home_team": "Toronto Blue Jays", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_cle", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260426_min_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-26T17:40:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86452,10 +68331,17 @@ "canonical_id": "game_mlb_2026_20260426_det_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-26T17:40:00Z", + "date": "2026-04-26", + "time": "1:40p", + "home_team": "Cincinnati Reds", + "away_team": "Detroit Tigers", + "home_team_abbrev": "CIN", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_det", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86463,10 +68349,35 @@ "canonical_id": "game_mlb_2026_20260426_col_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-26T17:40:00Z", + "date": "2026-04-26", + "time": "1:40p", + "home_team": "New York Mets", + "away_team": "Colorado Rockies", + "home_team_abbrev": "NYM", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_col", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260426_min_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "1:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Minnesota Twins", + "home_team_abbrev": "TB", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_min", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86474,21 +68385,17 @@ "canonical_id": "game_mlb_2026_20260426_wsn_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-26T18:10:00Z", + "date": "2026-04-26", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Washington Nationals", + "home_team_abbrev": "CHW", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260426_pit_mil", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-26T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86496,10 +68403,35 @@ "canonical_id": "game_mlb_2026_20260426_nyy_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-26T18:10:00Z", + "date": "2026-04-26", + "time": "1:10p", + "home_team": "Houston Astros", + "away_team": "New York Yankees", + "home_team_abbrev": "HOU", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260426_pit_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "MIL", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_pit", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86507,10 +68439,35 @@ "canonical_id": "game_mlb_2026_20260426_sea_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-26T18:15:00Z", + "date": "2026-04-26", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Seattle Mariners", + "home_team_abbrev": "STL", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_sea", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260426_nyc_mtl", + "sport": "MLS", + "season": "2026", + "date": "2026-04-26", + "time": "2:30p", + "home_team": "Montreal CF Montreal", + "away_team": "New York New York City FC", + "home_team_abbrev": "MTL", + "away_team_abbrev": "NYC", + "home_team_canonical_id": "team_mls_mtl", + "away_team_canonical_id": "team_mls_nyc", + "venue": "Stade Saputo", + "stadium_canonical_id": "stadium_mls_stade_saputo", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -86518,21 +68475,17 @@ "canonical_id": "game_mlb_2026_20260426_oak_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-26T18:35:00Z", + "date": "2026-04-26", + "time": "1:35p", + "home_team": "Texas Rangers", + "away_team": "Oakland Athletics", + "home_team_abbrev": "TEX", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_oak", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260426_sd_ari", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-26T20:05:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_estadio_alfredo_harp_helu", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86540,10 +68493,35 @@ "canonical_id": "game_mlb_2026_20260426_mia_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-26T20:05:00Z", + "date": "2026-04-26", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Miami Marlins", + "home_team_abbrev": "SF", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_mia", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260426_sd_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-04-26", + "time": "2:05p", + "home_team": "Arizona Diamondbacks", + "away_team": "San Diego Padres", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sd", + "venue": "Estadio Alfredo Harp Helu", + "stadium_canonical_id": "stadium_mlb_mexico_alfredo_harp_helu", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86551,10 +68529,53 @@ "canonical_id": "game_mlb_2026_20260426_chc_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-26T20:10:00Z", + "date": "2026-04-26", + "time": "1:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Chicago Cubs", + "home_team_abbrev": "LAD", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_chc", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260426_por_ang", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-26", + "time": "3p", + "home_team": "Los Angeles Angel City FC", + "away_team": "Portland Portland Thorns", + "home_team_abbrev": "ANG", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nwsl_ang", + "away_team_canonical_id": "team_nwsl_por", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_nwsl_bmo_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260426_slc_lag", + "sport": "MLS", + "season": "2026", + "date": "2026-04-26", + "time": "4p", + "home_team": "Los Angeles LA Galaxy", + "away_team": "Salt Lake Real Salt Lake", + "home_team_abbrev": "LAG", + "away_team_abbrev": "SLC", + "home_team_canonical_id": "team_mls_lag", + "away_team_canonical_id": "team_mls_slc", + "venue": "Dignity Health Sports Park", + "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -86562,10 +68583,35 @@ "canonical_id": "game_mlb_2026_20260426_laa_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-26T23:20:00Z", + "date": "2026-04-26", + "time": "6:20p", + "home_team": "Kansas City Royals", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "KC", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_laa", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260427_uta_sea", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-26", + "time": "5p", + "home_team": "Seattle Seattle Reign", + "away_team": "Utah Utah Royals", + "home_team_abbrev": "SEA", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nwsl_sea", + "away_team_canonical_id": "team_nwsl_uta", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_nwsl_lumen_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -86573,10 +68619,17 @@ "canonical_id": "game_mlb_2026_20260427_tbr_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-27T22:10:00Z", + "date": "2026-04-27", + "time": "6:10p", + "home_team": "Cleveland Guardians", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "CLE", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86584,10 +68637,17 @@ "canonical_id": "game_mlb_2026_20260427_stl_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-27T22:40:00Z", + "date": "2026-04-27", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "PIT", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_stl", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86595,21 +68655,17 @@ "canonical_id": "game_mlb_2026_20260427_bos_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-27T23:07:00Z", + "date": "2026-04-27", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Boston Red Sox", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_bos", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260427_sea_min", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-27T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86617,10 +68673,35 @@ "canonical_id": "game_mlb_2026_20260427_laa_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-27T23:40:00Z", + "date": "2026-04-27", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "CHW", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_laa", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260427_sea_min", + "sport": "MLB", + "season": "2026", + "date": "2026-04-27", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Seattle Mariners", + "home_team_abbrev": "MIN", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_sea", + "venue": "Target Field", + "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86628,10 +68709,17 @@ "canonical_id": "game_mlb_2026_20260428_nyy_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-28T00:05:00Z", + "date": "2026-04-27", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "New York Yankees", + "home_team_abbrev": "TEX", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86639,10 +68727,17 @@ "canonical_id": "game_mlb_2026_20260428_chc_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-28T01:40:00Z", + "date": "2026-04-27", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Chicago Cubs", + "home_team_abbrev": "SD", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_chc", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86650,10 +68745,17 @@ "canonical_id": "game_mlb_2026_20260428_mia_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-28T02:10:00Z", + "date": "2026-04-27", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Miami Marlins", + "home_team_abbrev": "LAD", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_mia", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86661,10 +68763,17 @@ "canonical_id": "game_mlb_2026_20260428_tbr_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-28T22:10:00Z", + "date": "2026-04-28", + "time": "6:10p", + "home_team": "Cleveland Guardians", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "CLE", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86672,10 +68781,17 @@ "canonical_id": "game_mlb_2026_20260428_hou_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-28T22:35:00Z", + "date": "2026-04-28", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Houston Astros", + "home_team_abbrev": "BAL", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_hou", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86683,10 +68799,17 @@ "canonical_id": "game_mlb_2026_20260428_stl_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-28T22:40:00Z", + "date": "2026-04-28", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "PIT", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_stl", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86694,10 +68817,17 @@ "canonical_id": "game_mlb_2026_20260428_sf_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-28T22:40:00Z", + "date": "2026-04-28", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "San Francisco Giants", + "home_team_abbrev": "PHI", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_sf", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86705,10 +68835,17 @@ "canonical_id": "game_mlb_2026_20260428_col_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-28T22:40:00Z", + "date": "2026-04-28", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Colorado Rockies", + "home_team_abbrev": "CIN", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_col", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86716,10 +68853,17 @@ "canonical_id": "game_mlb_2026_20260428_bos_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-28T23:07:00Z", + "date": "2026-04-28", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Boston Red Sox", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_bos", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86727,10 +68871,17 @@ "canonical_id": "game_mlb_2026_20260428_wsn_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-28T23:10:00Z", + "date": "2026-04-28", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Washington Nationals", + "home_team_abbrev": "NYM", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86738,10 +68889,17 @@ "canonical_id": "game_mlb_2026_20260428_det_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-28T23:15:00Z", + "date": "2026-04-28", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Detroit Tigers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_det", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86749,10 +68907,17 @@ "canonical_id": "game_mlb_2026_20260428_sea_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-28T23:40:00Z", + "date": "2026-04-28", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Seattle Mariners", + "home_team_abbrev": "MIN", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_sea", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86760,10 +68925,17 @@ "canonical_id": "game_mlb_2026_20260428_laa_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-28T23:40:00Z", + "date": "2026-04-28", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "CHW", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_laa", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86771,10 +68943,17 @@ "canonical_id": "game_mlb_2026_20260428_ari_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-28T23:40:00Z", + "date": "2026-04-28", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "MIL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_ari", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86782,21 +68961,17 @@ "canonical_id": "game_mlb_2026_20260429_nyy_tex_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-29T00:05:00Z", + "date": "2026-04-28", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "New York Yankees", + "home_team_abbrev": "TEX", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260429_kc_oak", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-29T01:40:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86804,10 +68979,35 @@ "canonical_id": "game_mlb_2026_20260429_chc_sd_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-29T01:40:00Z", + "date": "2026-04-28", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Chicago Cubs", + "home_team_abbrev": "SD", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_chc", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260429_kc_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-04-28", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Kansas City Royals", + "home_team_abbrev": "OAK", + "away_team_abbrev": "KC", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_kc", + "venue": "Sutter Health Park", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86815,21 +69015,17 @@ "canonical_id": "game_mlb_2026_20260429_mia_lad_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-29T02:10:00Z", + "date": "2026-04-28", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Miami Marlins", + "home_team_abbrev": "LAD", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_mia", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260429_tbr_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-29T17:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86837,10 +69033,35 @@ "canonical_id": "game_mlb_2026_20260429_laa_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-29T17:10:00Z", + "date": "2026-04-29", + "time": "12:10p", + "home_team": "Chicago White Sox", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "CHW", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_laa", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260429_tbr_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "1:10p", + "home_team": "Cleveland Guardians", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "CLE", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86848,10 +69069,17 @@ "canonical_id": "game_mlb_2026_20260429_sea_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-29T17:40:00Z", + "date": "2026-04-29", + "time": "12:40p", + "home_team": "Minnesota Twins", + "away_team": "Seattle Mariners", + "home_team_abbrev": "MIN", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_sea", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86859,10 +69087,17 @@ "canonical_id": "game_mlb_2026_20260429_nyy_tex_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-29T18:35:00Z", + "date": "2026-04-29", + "time": "1:35p", + "home_team": "Texas Rangers", + "away_team": "New York Yankees", + "home_team_abbrev": "TEX", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86870,10 +69105,17 @@ "canonical_id": "game_mlb_2026_20260429_bos_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-29T19:07:00Z", + "date": "2026-04-29", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Boston Red Sox", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_bos", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86881,10 +69123,17 @@ "canonical_id": "game_mlb_2026_20260429_mia_lad_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-29T19:10:00Z", + "date": "2026-04-29", + "time": "12:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Miami Marlins", + "home_team_abbrev": "LAD", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_mia", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86892,10 +69141,17 @@ "canonical_id": "game_mlb_2026_20260429_chc_sd_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-29T20:10:00Z", + "date": "2026-04-29", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Chicago Cubs", + "home_team_abbrev": "SD", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_chc", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86903,10 +69159,17 @@ "canonical_id": "game_mlb_2026_20260429_hou_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-29T22:35:00Z", + "date": "2026-04-29", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Houston Astros", + "home_team_abbrev": "BAL", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_hou", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86914,21 +69177,17 @@ "canonical_id": "game_mlb_2026_20260429_stl_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-29T22:40:00Z", + "date": "2026-04-29", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "PIT", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_stl", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260429_sf_phi", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-04-29T22:40:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86936,10 +69195,53 @@ "canonical_id": "game_mlb_2026_20260429_col_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-29T22:40:00Z", + "date": "2026-04-29", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Colorado Rockies", + "home_team_abbrev": "CIN", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_col", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260429_sf_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-04-29", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "San Francisco Giants", + "home_team_abbrev": "PHI", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Citizens Bank Park", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260429_rgn_wsh", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-29", + "time": "7p", + "home_team": "Washington Washington Spirit", + "away_team": "Louisville Racing Louisville", + "home_team_abbrev": "WSH", + "away_team_abbrev": "RGN", + "home_team_canonical_id": "team_nwsl_wsh", + "away_team_canonical_id": "team_nwsl_rgn", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_nwsl_audi_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -86947,10 +69249,17 @@ "canonical_id": "game_mlb_2026_20260429_wsn_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-29T23:10:00Z", + "date": "2026-04-29", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Washington Nationals", + "home_team_abbrev": "NYM", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86958,10 +69267,17 @@ "canonical_id": "game_mlb_2026_20260429_det_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-29T23:15:00Z", + "date": "2026-04-29", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Detroit Tigers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_det", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -86969,10 +69285,53 @@ "canonical_id": "game_mlb_2026_20260429_ari_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-29T23:40:00Z", + "date": "2026-04-29", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "MIL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_ari", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260430_ncc_bos", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-29", + "time": "8p", + "home_team": "Boston Boston Legacy FC", + "away_team": "North Carolina North Carolina Courage", + "home_team_abbrev": "BOS", + "away_team_abbrev": "NCC", + "home_team_canonical_id": "team_nwsl_bos", + "away_team_canonical_id": "team_nwsl_ncc", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_nwsl_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260430_njy_chi", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-29", + "time": "7p", + "home_team": "Chicago Chicago Red Stars", + "away_team": "New Jersey NJ/NY Gotham FC", + "home_team_abbrev": "CHI", + "away_team_abbrev": "NJY", + "home_team_canonical_id": "team_nwsl_chi", + "away_team_canonical_id": "team_nwsl_njy", + "venue": "Northwestern Medicine Field at Martin Stadium", + "stadium_canonical_id": "stadium_nwsl_northwestern_medicine_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -86980,10 +69339,35 @@ "canonical_id": "game_mlb_2026_20260430_kc_oak_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-30T01:40:00Z", + "date": "2026-04-29", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Kansas City Royals", + "home_team_abbrev": "OAK", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_kc", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260430_sdw_por", + "sport": "NWSL", + "season": "2026", + "date": "2026-04-29", + "time": "7p", + "home_team": "Portland Portland Thorns", + "away_team": "San Diego San Diego Wave", + "home_team_abbrev": "POR", + "away_team_abbrev": "SDW", + "home_team_canonical_id": "team_nwsl_por", + "away_team_canonical_id": "team_nwsl_sdw", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_nwsl_providence_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -86991,10 +69375,17 @@ "canonical_id": "game_mlb_2026_20260430_det_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-30T16:15:00Z", + "date": "2026-04-30", + "time": "12:15p", + "home_team": "Atlanta Braves", + "away_team": "Detroit Tigers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_det", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87002,10 +69393,17 @@ "canonical_id": "game_mlb_2026_20260430_stl_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-30T16:35:00Z", + "date": "2026-04-30", + "time": "12:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "PIT", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_stl", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87013,10 +69411,17 @@ "canonical_id": "game_mlb_2026_20260430_hou_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-30T16:35:00Z", + "date": "2026-04-30", + "time": "12:35p", + "home_team": "Baltimore Orioles", + "away_team": "Houston Astros", + "home_team_abbrev": "BAL", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_hou", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87024,10 +69429,17 @@ "canonical_id": "game_mlb_2026_20260430_col_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-30T16:40:00Z", + "date": "2026-04-30", + "time": "12:40p", + "home_team": "Cincinnati Reds", + "away_team": "Colorado Rockies", + "home_team_abbrev": "CIN", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_col", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87035,10 +69447,17 @@ "canonical_id": "game_mlb_2026_20260430_sf_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-30T17:05:00Z", + "date": "2026-04-30", + "time": "1:05p", + "home_team": "Philadelphia Phillies", + "away_team": "San Francisco Giants", + "home_team_abbrev": "PHI", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_sf", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87046,10 +69465,17 @@ "canonical_id": "game_mlb_2026_20260430_wsn_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-30T17:10:00Z", + "date": "2026-04-30", + "time": "1:10p", + "home_team": "New York Mets", + "away_team": "Washington Nationals", + "home_team_abbrev": "NYM", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87057,10 +69483,17 @@ "canonical_id": "game_mlb_2026_20260430_ari_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-30T17:40:00Z", + "date": "2026-04-30", + "time": "12:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "MIL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_ari", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87068,10 +69501,17 @@ "canonical_id": "game_mlb_2026_20260430_kc_oak_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-30T19:05:00Z", + "date": "2026-04-30", + "time": "12:05p", + "home_team": "Oakland Athletics", + "away_team": "Kansas City Royals", + "home_team_abbrev": "OAK", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_kc", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87079,10 +69519,17 @@ "canonical_id": "game_mlb_2026_20260430_tor_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-04-30T23:40:00Z", + "date": "2026-04-30", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "MIN", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_tor", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87090,10 +69537,17 @@ "canonical_id": "game_mlb_2026_20260501_ari_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-01T18:20:00Z", + "date": "2026-05-01", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "CHC", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_ari", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87101,10 +69555,17 @@ "canonical_id": "game_mlb_2026_20260501_tex_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-01T22:40:00Z", + "date": "2026-05-01", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Texas Rangers", + "home_team_abbrev": "DET", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_tex", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87112,10 +69573,17 @@ "canonical_id": "game_mlb_2026_20260501_cin_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-01T22:40:00Z", + "date": "2026-05-01", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_cin", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87123,10 +69591,17 @@ "canonical_id": "game_mlb_2026_20260501_mil_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-01T22:45:00Z", + "date": "2026-05-01", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "WSN", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_mil", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87134,21 +69609,17 @@ "canonical_id": "game_mlb_2026_20260501_bal_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-01T23:05:00Z", + "date": "2026-05-01", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "NYY", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_bal", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260501_sf_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-01T23:10:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87156,10 +69627,17 @@ "canonical_id": "game_mlb_2026_20260501_phi_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-01T23:10:00Z", + "date": "2026-05-01", + "time": "7:10p", + "home_team": "Miami Marlins", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "MIA", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_phi", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87167,10 +69645,53 @@ "canonical_id": "game_mlb_2026_20260501_hou_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-01T23:10:00Z", + "date": "2026-05-01", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Houston Astros", + "home_team_abbrev": "BOS", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_hou", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260501_sf_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "7:10p", + "home_team": "Tampa Bay Rays", + "away_team": "San Francisco Giants", + "home_team_abbrev": "TB", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260502_sea_hou", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-01", + "time": "7p", + "home_team": "Houston Houston Dash", + "away_team": "Seattle Seattle Reign", + "home_team_abbrev": "HOU", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nwsl_hou", + "away_team_canonical_id": "team_nwsl_sea", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -87178,10 +69699,17 @@ "canonical_id": "game_mlb_2026_20260502_tor_min_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-02T00:10:00Z", + "date": "2026-05-01", + "time": "7:10p", + "home_team": "Minnesota Twins", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "MIN", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_tor", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87189,10 +69717,17 @@ "canonical_id": "game_mlb_2026_20260502_lad_stl_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-02T00:15:00Z", + "date": "2026-05-01", + "time": "7:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "STL", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_lad", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87200,10 +69735,17 @@ "canonical_id": "game_mlb_2026_20260502_atl_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-02T00:40:00Z", + "date": "2026-05-01", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Atlanta Braves", + "home_team_abbrev": "COL", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_atl", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87211,32 +69753,17 @@ "canonical_id": "game_mlb_2026_20260502_nym_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-02T01:38:00Z", + "date": "2026-05-01", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "New York Mets", + "home_team_abbrev": "LAA", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_nym", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260502_kc_sea", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-02T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260502_cle_oak_1", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-02T01:40:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87244,10 +69771,71 @@ "canonical_id": "game_mlb_2026_20260502_chw_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-02T01:40:00Z", + "date": "2026-05-01", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Chicago White Sox", + "home_team_abbrev": "SD", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_chw", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260502_cle_oak_1", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "OAK", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_cle", + "venue": "Sutter Health Park", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260502_kc_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-05-01", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Kansas City Royals", + "home_team_abbrev": "SEA", + "away_team_abbrev": "KC", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_kc", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260502_sj_tor", + "sport": "MLS", + "season": "2026", + "date": "2026-05-02", + "time": "1p", + "home_team": "Toronto Toronto FC", + "away_team": "San Jose San Jose Earthquakes", + "home_team_abbrev": "TOR", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_mls_tor", + "away_team_canonical_id": "team_mls_sj", + "venue": "BMO Field", + "stadium_canonical_id": "stadium_mls_bmo_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -87255,10 +69843,17 @@ "canonical_id": "game_mlb_2026_20260502_bal_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-02T17:35:00Z", + "date": "2026-05-02", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "NYY", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_bal", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87266,10 +69861,17 @@ "canonical_id": "game_mlb_2026_20260502_tor_min_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-02T18:10:00Z", + "date": "2026-05-02", + "time": "1:10p", + "home_team": "Minnesota Twins", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "MIN", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_tor", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87277,10 +69879,53 @@ "canonical_id": "game_mlb_2026_20260502_ari_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-02T18:20:00Z", + "date": "2026-05-02", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "CHC", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_ari", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260502_sea_skc", + "sport": "MLS", + "season": "2026", + "date": "2026-05-02", + "time": "1:30p", + "home_team": "Kansas City Sporting Kansas City", + "away_team": "Seattle Seattle Sounders", + "home_team_abbrev": "SKC", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mls_skc", + "away_team_canonical_id": "team_mls_sea", + "venue": "Children's Mercy Park", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260502_wsh_orl", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-02", + "time": "4p", + "home_team": "Orlando Orlando Pride", + "away_team": "Washington Washington Spirit", + "home_team_abbrev": "ORL", + "away_team_abbrev": "WSH", + "home_team_canonical_id": "team_nwsl_orl", + "away_team_canonical_id": "team_nwsl_wsh", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -87288,21 +69933,17 @@ "canonical_id": "game_mlb_2026_20260502_mil_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-02T20:05:00Z", + "date": "2026-05-02", + "time": "4:05p", + "home_team": "Washington Nationals", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "WSN", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_mil", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260502_cle_oak_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-02T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87310,10 +69951,35 @@ "canonical_id": "game_mlb_2026_20260502_cin_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-02T20:05:00Z", + "date": "2026-05-02", + "time": "4:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_cin", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260502_cle_oak_2", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "OAK", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_cle", + "venue": "Sutter Health Park", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87321,10 +69987,17 @@ "canonical_id": "game_mlb_2026_20260502_phi_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-02T20:10:00Z", + "date": "2026-05-02", + "time": "4:10p", + "home_team": "Miami Marlins", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "MIA", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_phi", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87332,10 +70005,35 @@ "canonical_id": "game_mlb_2026_20260502_hou_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-02T20:10:00Z", + "date": "2026-05-02", + "time": "4:10p", + "home_team": "Boston Red Sox", + "away_team": "Houston Astros", + "home_team_abbrev": "BOS", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_hou", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260502_por_slc", + "sport": "MLS", + "season": "2026", + "date": "2026-05-02", + "time": "2:30p", + "home_team": "Salt Lake Real Salt Lake", + "away_team": "Portland Portland Timbers", + "home_team_abbrev": "SLC", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_mls_slc", + "away_team_canonical_id": "team_mls_por", + "venue": "America First Field", + "stadium_canonical_id": "stadium_mls_america_first_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -87343,21 +70041,53 @@ "canonical_id": "game_mlb_2026_20260502_sf_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-02T22:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-05-02", + "time": "6:10p", + "home_team": "Tampa Bay Rays", + "away_team": "San Francisco Giants", + "home_team_abbrev": "TB", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_sf", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260502_tex_det", - "sport": "MLB", + "canonical_id": "game_nwsl_2026_20260502_kcc_ncc", + "sport": "NWSL", "season": "2026", - "game_datetime_utc": "2026-05-02T23:15:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_comerica_park", + "date": "2026-05-02", + "time": "6:30p", + "home_team": "North Carolina North Carolina Courage", + "away_team": "Kansas City Kansas City Current", + "home_team_abbrev": "NCC", + "away_team_abbrev": "KCC", + "home_team_canonical_id": "team_nwsl_ncc", + "away_team_canonical_id": "team_nwsl_kcc", + "venue": "WakeMed Soccer Park", + "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260502_orl_mia", + "sport": "MLS", + "season": "2026", + "date": "2026-05-02", + "time": "7p", + "home_team": "Miami Inter Miami", + "away_team": "Orlando Orlando City", + "home_team_abbrev": "MIA", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_mls_mia", + "away_team_canonical_id": "team_mls_orl", + "venue": "Miami Freedom Park", + "stadium_canonical_id": "stadium_mls_miami_freedom_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -87365,10 +70095,125 @@ "canonical_id": "game_mlb_2026_20260502_lad_stl_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-02T23:15:00Z", + "date": "2026-05-02", + "time": "6:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "STL", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_lad", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260502_tex_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-02", + "time": "7:15p", + "home_team": "Detroit Tigers", + "away_team": "Texas Rangers", + "home_team_abbrev": "DET", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Comerica Park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260502_min_clb", + "sport": "MLS", + "season": "2026", + "date": "2026-05-02", + "time": "7:30p", + "home_team": "Columbus Columbus Crew", + "away_team": "Minnesota Minnesota United", + "home_team_abbrev": "CLB", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mls_clb", + "away_team_canonical_id": "team_mls_min", + "venue": "Lower.com Field", + "stadium_canonical_id": "stadium_mls_lowercom_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260502_clt_ne", + "sport": "MLS", + "season": "2026", + "date": "2026-05-02", + "time": "7:30p", + "home_team": "New England New England Revolution", + "away_team": "Charlotte Charlotte FC", + "home_team_abbrev": "NE", + "away_team_abbrev": "CLT", + "home_team_canonical_id": "team_mls_ne", + "away_team_canonical_id": "team_mls_clt", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_mls_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260502_dal_ny", + "sport": "MLS", + "season": "2026", + "date": "2026-05-02", + "time": "7:30p", + "home_team": "New York New York Red Bulls", + "away_team": "Dallas FC Dallas", + "home_team_abbrev": "RB", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_mls_ny", + "away_team_canonical_id": "team_mls_dal", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_mls_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260502_nsh_phi", + "sport": "MLS", + "season": "2026", + "date": "2026-05-02", + "time": "7:30p", + "home_team": "Philadelphia Philadelphia Union", + "away_team": "Nashville Nashville SC", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_mls_phi", + "away_team_canonical_id": "team_mls_nsh", + "venue": "Subaru Park", + "stadium_canonical_id": "stadium_mls_subaru_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260502_mtl_atl", + "sport": "MLS", + "season": "2026", + "date": "2026-05-02", + "time": "7:30p", + "home_team": "Atlanta Atlanta United", + "away_team": "Montreal CF Montreal", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_mls_atl", + "away_team_canonical_id": "team_mls_mtl", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -87376,10 +70221,53 @@ "canonical_id": "game_mlb_2026_20260503_atl_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-03T00:10:00Z", + "date": "2026-05-02", + "time": "6:10p", + "home_team": "Colorado Rockies", + "away_team": "Atlanta Braves", + "home_team_abbrev": "COL", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_atl", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260503_col_hou", + "sport": "MLS", + "season": "2026", + "date": "2026-05-02", + "time": "7:30p", + "home_team": "Houston Houston Dynamo", + "away_team": "Colorado Colorado Rapids", + "home_team_abbrev": "HOU", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mls_hou", + "away_team_canonical_id": "team_mls_col", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_mls_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260503_cin_chi", + "sport": "MLS", + "season": "2026", + "date": "2026-05-02", + "time": "7:30p", + "home_team": "Chicago Chicago Fire", + "away_team": "Cincinnati FC Cincinnati", + "home_team_abbrev": "CHI", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mls_chi", + "away_team_canonical_id": "team_mls_cin", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_mls_soldier_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -87387,10 +70275,53 @@ "canonical_id": "game_mlb_2026_20260503_chw_sd_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-03T00:40:00Z", + "date": "2026-05-02", + "time": "5:40p", + "home_team": "San Diego Padres", + "away_team": "Chicago White Sox", + "home_team_abbrev": "SD", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_chw", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260503_uta_ang", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-02", + "time": "5:45p", + "home_team": "Los Angeles Angel City FC", + "away_team": "Utah Utah Royals", + "home_team_abbrev": "ANG", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nwsl_ang", + "away_team_canonical_id": "team_nwsl_uta", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_nwsl_bmo_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260503_lafc_sd", + "sport": "MLS", + "season": "2026", + "date": "2026-05-02", + "time": "6:30p", + "home_team": "San Diego San Diego FC", + "away_team": "Los Angeles Los Angeles FC", + "home_team_abbrev": "SD", + "away_team_abbrev": "LAFC", + "home_team_canonical_id": "team_mls_sd", + "away_team_canonical_id": "team_mls_lafc", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -87398,10 +70329,17 @@ "canonical_id": "game_mlb_2026_20260503_nym_laa_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-03T01:38:00Z", + "date": "2026-05-02", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "New York Mets", + "home_team_abbrev": "LAA", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_nym", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87409,10 +70347,35 @@ "canonical_id": "game_mlb_2026_20260503_kc_sea_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-03T01:40:00Z", + "date": "2026-05-02", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Kansas City Royals", + "home_team_abbrev": "SEA", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260503_van_lag", + "sport": "MLS", + "season": "2026", + "date": "2026-05-02", + "time": "7:30p", + "home_team": "Los Angeles LA Galaxy", + "away_team": "Vancouver Vancouver Whitecaps", + "home_team_abbrev": "LAG", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_mls_lag", + "away_team_canonical_id": "team_mls_van", + "venue": "Dignity Health Sports Park", + "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -87420,43 +70383,35 @@ "canonical_id": "game_mlb_2026_20260503_tor_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-03T16:45:00Z", + "date": "2026-05-03", + "time": "11:35a", + "home_team": "Minnesota Twins", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "MIN", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_tor", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260503_mil_wsn", - "sport": "MLB", + "canonical_id": "game_nwsl_2026_20260503_por_chi", + "sport": "NWSL", "season": "2026", - "game_datetime_utc": "2026-05-03T17:35:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260503_hou_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-03T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260503_cin_pit", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-03T17:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_pnc_park", + "date": "2026-05-03", + "time": "12p", + "home_team": "Chicago Chicago Red Stars", + "away_team": "Portland Portland Thorns", + "home_team_abbrev": "CHI", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nwsl_chi", + "away_team_canonical_id": "team_nwsl_por", + "venue": "Northwestern Medicine Field at Martin Stadium", + "stadium_canonical_id": "stadium_nwsl_northwestern_medicine_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -87464,21 +70419,71 @@ "canonical_id": "game_mlb_2026_20260503_bal_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-03T17:35:00Z", + "date": "2026-05-03", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "NYY", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_bal", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260503_sf_tbr", + "canonical_id": "game_mlb_2026_20260503_cin_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-03T17:40:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "date": "2026-05-03", + "time": "1:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_cin", + "venue": "PNC Park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260503_mil_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "1:35p", + "home_team": "Washington Nationals", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "WSN", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mil", + "venue": "Nationals Park", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260503_hou_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "1:35p", + "home_team": "Boston Red Sox", + "away_team": "Houston Astros", + "home_team_abbrev": "BOS", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_hou", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87486,10 +70491,35 @@ "canonical_id": "game_mlb_2026_20260503_phi_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-03T17:40:00Z", + "date": "2026-05-03", + "time": "1:40p", + "home_team": "Miami Marlins", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "MIA", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_phi", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260503_sf_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-03", + "time": "1:40p", + "home_team": "Tampa Bay Rays", + "away_team": "San Francisco Giants", + "home_team_abbrev": "TB", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87497,10 +70527,17 @@ "canonical_id": "game_mlb_2026_20260503_lad_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-03T18:15:00Z", + "date": "2026-05-03", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "STL", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_lad", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87508,10 +70545,35 @@ "canonical_id": "game_mlb_2026_20260503_ari_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-03T18:20:00Z", + "date": "2026-05-03", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "CHC", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_ari", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260503_den_bos", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-03", + "time": "3p", + "home_team": "Boston Boston Legacy FC", + "away_team": "Denver Denver Summit FC", + "home_team_abbrev": "BOS", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nwsl_bos", + "away_team_canonical_id": "team_nwsl_den", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_nwsl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -87519,10 +70581,17 @@ "canonical_id": "game_mlb_2026_20260503_atl_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-03T19:10:00Z", + "date": "2026-05-03", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Atlanta Braves", + "home_team_abbrev": "COL", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_atl", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87530,10 +70599,17 @@ "canonical_id": "game_mlb_2026_20260503_cle_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-03T20:05:00Z", + "date": "2026-05-03", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "OAK", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_cle", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87541,10 +70617,17 @@ "canonical_id": "game_mlb_2026_20260503_nym_laa_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-03T20:07:00Z", + "date": "2026-05-03", + "time": "1:07p", + "home_team": "Los Angeles Angels", + "away_team": "New York Mets", + "home_team_abbrev": "LAA", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_nym", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87552,10 +70635,17 @@ "canonical_id": "game_mlb_2026_20260503_kc_sea_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-03T20:10:00Z", + "date": "2026-05-03", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Kansas City Royals", + "home_team_abbrev": "SEA", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87563,10 +70653,89 @@ "canonical_id": "game_mlb_2026_20260503_chw_sd_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-03T20:10:00Z", + "date": "2026-05-03", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Chicago White Sox", + "home_team_abbrev": "SD", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_chw", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260503_dc_nyc", + "sport": "MLS", + "season": "2026", + "date": "2026-05-03", + "time": "4:30p", + "home_team": "New York New York City FC", + "away_team": "Washington D.C. United", + "home_team_abbrev": "NYC", + "away_team_abbrev": "DC", + "home_team_canonical_id": "team_mls_nyc", + "away_team_canonical_id": "team_mls_dc", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mls_citi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260503_rgn_njy", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-03", + "time": "5p", + "home_team": "New Jersey NJ/NY Gotham FC", + "away_team": "Louisville Racing Louisville", + "home_team_abbrev": "NJY", + "away_team_abbrev": "RGN", + "home_team_canonical_id": "team_nwsl_njy", + "away_team_canonical_id": "team_nwsl_rgn", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_nwsl_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260503_stl_aus", + "sport": "MLS", + "season": "2026", + "date": "2026-05-03", + "time": "6p", + "home_team": "Austin Austin FC", + "away_team": "St. Louis St. Louis City SC", + "home_team_abbrev": "AUS", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mls_aus", + "away_team_canonical_id": "team_mls_stl", + "venue": "Q2 Stadium", + "stadium_canonical_id": "stadium_mls_q2_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260503_bay_sdw", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-03", + "time": "4p", + "home_team": "San Diego San Diego Wave", + "away_team": "San Francisco Bay FC", + "home_team_abbrev": "SDW", + "away_team_abbrev": "BAY", + "home_team_canonical_id": "team_nwsl_sdw", + "away_team_canonical_id": "team_nwsl_bay", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -87574,21 +70743,17 @@ "canonical_id": "game_mlb_2026_20260503_tex_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-03T23:20:00Z", + "date": "2026-05-03", + "time": "7:20p", + "home_team": "Detroit Tigers", + "away_team": "Texas Rangers", + "home_team_abbrev": "DET", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_tex", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260504_tor_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-04T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87596,10 +70761,17 @@ "canonical_id": "game_mlb_2026_20260504_phi_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-04T22:40:00Z", + "date": "2026-05-04", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "MIA", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_phi", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87607,10 +70779,35 @@ "canonical_id": "game_mlb_2026_20260504_bos_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-04T22:40:00Z", + "date": "2026-05-04", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Boston Red Sox", + "home_team_abbrev": "DET", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_bos", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260504_tor_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-04", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "TB", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tor", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87618,10 +70815,17 @@ "canonical_id": "game_mlb_2026_20260504_bal_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-04T23:05:00Z", + "date": "2026-05-04", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "NYY", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_bal", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87629,10 +70833,17 @@ "canonical_id": "game_mlb_2026_20260504_cle_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-04T23:40:00Z", + "date": "2026-05-04", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "KC", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_cle", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87640,10 +70851,17 @@ "canonical_id": "game_mlb_2026_20260504_cin_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-04T23:40:00Z", + "date": "2026-05-04", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "CHC", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_cin", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87651,10 +70869,17 @@ "canonical_id": "game_mlb_2026_20260504_mil_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-04T23:45:00Z", + "date": "2026-05-04", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "STL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_mil", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87662,10 +70887,17 @@ "canonical_id": "game_mlb_2026_20260505_lad_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-05T00:10:00Z", + "date": "2026-05-04", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_lad", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87673,10 +70905,17 @@ "canonical_id": "game_mlb_2026_20260505_nym_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-05T00:40:00Z", + "date": "2026-05-04", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "New York Mets", + "home_team_abbrev": "COL", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_nym", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87684,10 +70923,17 @@ "canonical_id": "game_mlb_2026_20260505_chw_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-05T01:38:00Z", + "date": "2026-05-04", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Chicago White Sox", + "home_team_abbrev": "LAA", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_chw", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87695,10 +70941,17 @@ "canonical_id": "game_mlb_2026_20260505_atl_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-05T01:40:00Z", + "date": "2026-05-04", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Atlanta Braves", + "home_team_abbrev": "SEA", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87706,21 +70959,17 @@ "canonical_id": "game_mlb_2026_20260505_sd_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-05T01:45:00Z", + "date": "2026-05-04", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "San Diego Padres", + "home_team_abbrev": "SF", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_sd", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260505_tor_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-05T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87728,10 +70977,17 @@ "canonical_id": "game_mlb_2026_20260505_oak_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-05T22:40:00Z", + "date": "2026-05-05", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Oakland Athletics", + "home_team_abbrev": "PHI", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_oak", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87739,10 +70995,35 @@ "canonical_id": "game_mlb_2026_20260505_bos_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-05T22:40:00Z", + "date": "2026-05-05", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Boston Red Sox", + "home_team_abbrev": "DET", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_bos", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260505_tor_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "TB", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tor", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87750,10 +71031,17 @@ "canonical_id": "game_mlb_2026_20260505_bal_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-05T22:40:00Z", + "date": "2026-05-05", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "MIA", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_bal", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87761,10 +71049,17 @@ "canonical_id": "game_mlb_2026_20260505_min_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-05T22:45:00Z", + "date": "2026-05-05", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Minnesota Twins", + "home_team_abbrev": "WSN", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_min", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87772,21 +71067,17 @@ "canonical_id": "game_mlb_2026_20260505_tex_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-05T23:05:00Z", + "date": "2026-05-05", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Texas Rangers", + "home_team_abbrev": "NYY", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_tex", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260505_cle_kc", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-05T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87794,10 +71085,35 @@ "canonical_id": "game_mlb_2026_20260505_cin_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-05T23:40:00Z", + "date": "2026-05-05", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "CHC", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_cin", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260505_cle_kc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "KC", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_mlb_kc", + "away_team_canonical_id": "team_mlb_cle", + "venue": "Kauffman Stadium", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87805,10 +71121,17 @@ "canonical_id": "game_mlb_2026_20260505_mil_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-05T23:45:00Z", + "date": "2026-05-05", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "STL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_mil", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87816,10 +71139,17 @@ "canonical_id": "game_mlb_2026_20260506_lad_hou_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-06T00:10:00Z", + "date": "2026-05-05", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_lad", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87827,10 +71157,17 @@ "canonical_id": "game_mlb_2026_20260506_nym_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-06T00:40:00Z", + "date": "2026-05-05", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "New York Mets", + "home_team_abbrev": "COL", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_nym", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87838,21 +71175,17 @@ "canonical_id": "game_mlb_2026_20260506_chw_laa_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-06T01:38:00Z", + "date": "2026-05-05", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Chicago White Sox", + "home_team_abbrev": "LAA", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_chw", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260506_pit_ari", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-06T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87860,10 +71193,35 @@ "canonical_id": "game_mlb_2026_20260506_atl_sea_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-06T01:40:00Z", + "date": "2026-05-05", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Atlanta Braves", + "home_team_abbrev": "SEA", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260506_pit_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-05-05", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "ARI", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_pit", + "venue": "Chase Field", + "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87871,10 +71229,17 @@ "canonical_id": "game_mlb_2026_20260506_sd_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-06T01:45:00Z", + "date": "2026-05-05", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "San Diego Padres", + "home_team_abbrev": "SF", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_sd", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87882,10 +71247,17 @@ "canonical_id": "game_mlb_2026_20260506_tor_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-06T17:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-05-06", + "time": "1:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "TB", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_tor", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87893,10 +71265,17 @@ "canonical_id": "game_mlb_2026_20260506_mil_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-06T17:15:00Z", + "date": "2026-05-06", + "time": "12:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "STL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_mil", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87904,10 +71283,17 @@ "canonical_id": "game_mlb_2026_20260506_lad_hou_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-06T18:10:00Z", + "date": "2026-05-06", + "time": "1:10p", + "home_team": "Houston Astros", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_lad", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87915,10 +71301,17 @@ "canonical_id": "game_mlb_2026_20260506_nym_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-06T19:10:00Z", + "date": "2026-05-06", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "New York Mets", + "home_team_abbrev": "COL", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_nym", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87926,10 +71319,17 @@ "canonical_id": "game_mlb_2026_20260506_sd_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-06T19:45:00Z", + "date": "2026-05-06", + "time": "12:45p", + "home_team": "San Francisco Giants", + "away_team": "San Diego Padres", + "home_team_abbrev": "SF", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_sd", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87937,10 +71337,17 @@ "canonical_id": "game_mlb_2026_20260506_chw_laa_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-06T20:07:00Z", + "date": "2026-05-06", + "time": "1:07p", + "home_team": "Los Angeles Angels", + "away_team": "Chicago White Sox", + "home_team_abbrev": "LAA", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_chw", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87948,10 +71355,17 @@ "canonical_id": "game_mlb_2026_20260506_atl_sea_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-06T20:10:00Z", + "date": "2026-05-06", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Atlanta Braves", + "home_team_abbrev": "SEA", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87959,21 +71373,17 @@ "canonical_id": "game_mlb_2026_20260506_oak_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-06T22:40:00Z", + "date": "2026-05-06", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Oakland Athletics", + "home_team_abbrev": "PHI", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_oak", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260506_bos_det", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-06T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87981,10 +71391,35 @@ "canonical_id": "game_mlb_2026_20260506_bal_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-06T22:40:00Z", + "date": "2026-05-06", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "MIA", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_bal", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260506_bos_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Boston Red Sox", + "home_team_abbrev": "DET", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_bos", + "venue": "Comerica Park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -87992,10 +71427,17 @@ "canonical_id": "game_mlb_2026_20260506_min_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-06T22:45:00Z", + "date": "2026-05-06", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Minnesota Twins", + "home_team_abbrev": "WSN", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_min", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88003,21 +71445,35 @@ "canonical_id": "game_mlb_2026_20260506_tex_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-06T23:05:00Z", + "date": "2026-05-06", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Texas Rangers", + "home_team_abbrev": "NYY", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_tex", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260506_cle_kc", - "sport": "MLB", + "canonical_id": "game_mls_2026_20260506_lafc_nyc", + "sport": "MLS", "season": "2026", - "game_datetime_utc": "2026-05-06T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "date": "2026-05-06", + "time": "7:30p", + "home_team": "New York New York City FC", + "away_team": "Los Angeles Los Angeles FC", + "home_team_abbrev": "NYC", + "away_team_abbrev": "LAFC", + "home_team_canonical_id": "team_mls_nyc", + "away_team_canonical_id": "team_mls_lafc", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mls_citi_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88025,10 +71481,35 @@ "canonical_id": "game_mlb_2026_20260506_cin_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-06T23:40:00Z", + "date": "2026-05-06", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "CHC", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_cin", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260506_cle_kc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-06", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "KC", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_mlb_kc", + "away_team_canonical_id": "team_mlb_cle", + "venue": "Kauffman Stadium", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88036,10 +71517,35 @@ "canonical_id": "game_mlb_2026_20260507_pit_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-07T01:40:00Z", + "date": "2026-05-06", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "ARI", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_pit", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260507_hou_uta", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-06", + "time": "8p", + "home_team": "Utah Utah Royals", + "away_team": "Houston Houston Dash", + "home_team_abbrev": "UTA", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nwsl_uta", + "away_team_canonical_id": "team_nwsl_hou", + "venue": "America First Field", + "stadium_canonical_id": "stadium_nwsl_america_first_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88047,10 +71553,17 @@ "canonical_id": "game_mlb_2026_20260507_tex_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-07T16:35:00Z", + "date": "2026-05-07", + "time": "12:35p", + "home_team": "New York Yankees", + "away_team": "Texas Rangers", + "home_team_abbrev": "NYY", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_tex", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88058,10 +71571,17 @@ "canonical_id": "game_mlb_2026_20260507_min_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-07T17:05:00Z", + "date": "2026-05-07", + "time": "1:05p", + "home_team": "Washington Nationals", + "away_team": "Minnesota Twins", + "home_team_abbrev": "WSN", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_min", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88069,10 +71589,17 @@ "canonical_id": "game_mlb_2026_20260507_cle_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-07T18:10:00Z", + "date": "2026-05-07", + "time": "1:10p", + "home_team": "Kansas City Royals", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "KC", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_cle", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88080,10 +71607,17 @@ "canonical_id": "game_mlb_2026_20260507_cin_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-07T18:20:00Z", + "date": "2026-05-07", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "CHC", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_cin", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88091,21 +71625,17 @@ "canonical_id": "game_mlb_2026_20260507_pit_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-07T19:40:00Z", + "date": "2026-05-07", + "time": "12:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "ARI", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_pit", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260507_oak_phi", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-07T22:40:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88113,10 +71643,35 @@ "canonical_id": "game_mlb_2026_20260507_bal_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-07T22:40:00Z", + "date": "2026-05-07", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "MIA", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_bal", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260507_oak_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-05-07", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Oakland Athletics", + "home_team_abbrev": "PHI", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Citizens Bank Park", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88124,10 +71679,17 @@ "canonical_id": "game_mlb_2026_20260507_tbr_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-07T23:10:00Z", + "date": "2026-05-07", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88135,21 +71697,35 @@ "canonical_id": "game_mlb_2026_20260508_stl_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-08T02:10:00Z", + "date": "2026-05-07", + "time": "7:10p", + "home_team": "San Diego Padres", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "SD", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_stl", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260508_hou_cin", - "sport": "MLB", + "canonical_id": "game_nwsl_2026_20260508_por_rgn", + "sport": "NWSL", "season": "2026", - "game_datetime_utc": "2026-05-08T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "date": "2026-05-08", + "time": "6:30p", + "home_team": "Louisville Racing Louisville", + "away_team": "Portland Portland Thorns", + "home_team_abbrev": "RGN", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nwsl_rgn", + "away_team_canonical_id": "team_nwsl_por", + "venue": "Lynn Family Stadium", + "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88157,10 +71733,35 @@ "canonical_id": "game_mlb_2026_20260508_col_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-08T22:40:00Z", + "date": "2026-05-08", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Colorado Rockies", + "home_team_abbrev": "PHI", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_col", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260508_hou_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Houston Astros", + "home_team_abbrev": "CIN", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_hou", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88168,10 +71769,17 @@ "canonical_id": "game_mlb_2026_20260508_oak_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-08T23:05:00Z", + "date": "2026-05-08", + "time": "7:05p", + "home_team": "Baltimore Orioles", + "away_team": "Oakland Athletics", + "home_team_abbrev": "BAL", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_oak", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88179,32 +71787,17 @@ "canonical_id": "game_mlb_2026_20260508_laa_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-08T23:07:00Z", + "date": "2026-05-08", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "TOR", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_laa", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260508_wsn_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-08T23:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260508_tbr_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-08T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88212,32 +71805,71 @@ "canonical_id": "game_mlb_2026_20260508_min_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-08T23:10:00Z", + "date": "2026-05-08", + "time": "7:10p", + "home_team": "Cleveland Guardians", + "away_team": "Minnesota Twins", + "home_team_abbrev": "CLE", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_min", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260508_sea_chw", + "canonical_id": "game_mlb_2026_20260508_wsn_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-08T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "date": "2026-05-08", + "time": "7:10p", + "home_team": "Miami Marlins", + "away_team": "Washington Nationals", + "home_team_abbrev": "MIA", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260508_nyy_mil", + "canonical_id": "game_mlb_2026_20260508_tbr_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-08T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "date": "2026-05-08", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260508_con_ny", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-08", + "time": "7:30p", + "home_team": "New York Liberty", + "away_team": "Connecticut Sun", + "home_team_abbrev": "NY", + "away_team_abbrev": "CON", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_con", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88245,10 +71877,71 @@ "canonical_id": "game_mlb_2026_20260508_det_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-08T23:40:00Z", + "date": "2026-05-08", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Detroit Tigers", + "home_team_abbrev": "KC", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_det", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260508_sea_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Seattle Mariners", + "home_team_abbrev": "CHW", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_sea", + "venue": "Guaranteed Rate Field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260508_nyy_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "New York Yankees", + "home_team_abbrev": "MIL", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260509_ncc_orl", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-08", + "time": "8p", + "home_team": "Orlando Orlando Pride", + "away_team": "North Carolina North Carolina Courage", + "home_team_abbrev": "ORL", + "away_team_abbrev": "NCC", + "home_team_canonical_id": "team_nwsl_orl", + "away_team_canonical_id": "team_nwsl_ncc", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88256,21 +71949,17 @@ "canonical_id": "game_mlb_2026_20260509_chc_tex_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-09T00:05:00Z", + "date": "2026-05-08", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Chicago Cubs", + "home_team_abbrev": "TEX", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_chc", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260509_stl_sd_1", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-09T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88278,10 +71967,53 @@ "canonical_id": "game_mlb_2026_20260509_nym_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-09T01:40:00Z", + "date": "2026-05-08", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "New York Mets", + "home_team_abbrev": "ARI", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_nym", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260509_stl_sd_1", + "sport": "MLB", + "season": "2026", + "date": "2026-05-08", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "SD", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mlb_sd", + "away_team_canonical_id": "team_mlb_stl", + "venue": "Petco Park", + "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260509_gsv_sea", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-08", + "time": "7p", + "home_team": "Seattle Storm", + "away_team": "Golden State Valkyries", + "home_team_abbrev": "SEA", + "away_team_abbrev": "GSV", + "home_team_canonical_id": "team_wnba_sea", + "away_team_canonical_id": "team_wnba_gsv", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88289,10 +72021,17 @@ "canonical_id": "game_mlb_2026_20260509_atl_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-09T02:10:00Z", + "date": "2026-05-08", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Atlanta Braves", + "home_team_abbrev": "LAD", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_atl", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88300,10 +72039,71 @@ "canonical_id": "game_mlb_2026_20260509_pit_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-09T02:15:00Z", + "date": "2026-05-08", + "time": "7:15p", + "home_team": "San Francisco Giants", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "SF", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_pit", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260509_mia_tor", + "sport": "MLS", + "season": "2026", + "date": "2026-05-09", + "time": "1p", + "home_team": "Toronto Toronto FC", + "away_team": "Miami Inter Miami", + "home_team_abbrev": "TOR", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mls_tor", + "away_team_canonical_id": "team_mls_mia", + "venue": "BMO Field", + "stadium_canonical_id": "stadium_mls_bmo_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260509_dal_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-09", + "time": "1p", + "home_team": "Indiana Fever", + "away_team": "Dallas Wings", + "home_team_abbrev": "IND", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_dal", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260509_ny_chi", + "sport": "MLS", + "season": "2026", + "date": "2026-05-09", + "time": "1:30p", + "home_team": "Chicago Chicago Fire", + "away_team": "New York New York Red Bulls", + "home_team_abbrev": "CHI", + "away_team_abbrev": "RB", + "home_team_canonical_id": "team_mls_chi", + "away_team_canonical_id": "team_mls_ny", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_mls_soldier_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88311,10 +72111,35 @@ "canonical_id": "game_mlb_2026_20260509_laa_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-09T19:07:00Z", + "date": "2026-05-09", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "TOR", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_laa", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260509_phx_lv", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-09", + "time": "12:30p", + "home_team": "Las Vegas Aces", + "away_team": "Phoenix Mercury", + "home_team_abbrev": "LV", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_phx", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88322,32 +72147,17 @@ "canonical_id": "game_mlb_2026_20260509_oak_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-09T20:05:00Z", + "date": "2026-05-09", + "time": "4:05p", + "home_team": "Baltimore Orioles", + "away_team": "Oakland Athletics", + "home_team_abbrev": "BAL", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_oak", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260509_wsn_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-09T20:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260509_tbr_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-09T20:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88355,10 +72165,71 @@ "canonical_id": "game_mlb_2026_20260509_hou_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-09T20:10:00Z", + "date": "2026-05-09", + "time": "4:10p", + "home_team": "Cincinnati Reds", + "away_team": "Houston Astros", + "home_team_abbrev": "CIN", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_hou", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260509_tbr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "4:10p", + "home_team": "Boston Red Sox", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260509_wsn_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "4:10p", + "home_team": "Miami Marlins", + "away_team": "Washington Nationals", + "home_team_abbrev": "MIA", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260509_orl_mtl", + "sport": "MLS", + "season": "2026", + "date": "2026-05-09", + "time": "4:30p", + "home_team": "Montreal CF Montreal", + "away_team": "Orlando Orlando City", + "home_team_abbrev": "MTL", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_mls_mtl", + "away_team_canonical_id": "team_mls_orl", + "venue": "Stade Saputo", + "stadium_canonical_id": "stadium_mls_stade_saputo", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88366,10 +72237,17 @@ "canonical_id": "game_mlb_2026_20260509_col_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-09T22:05:00Z", + "date": "2026-05-09", + "time": "6:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Colorado Rockies", + "home_team_abbrev": "PHI", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_col", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88377,10 +72255,35 @@ "canonical_id": "game_mlb_2026_20260509_min_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-09T22:10:00Z", + "date": "2026-05-09", + "time": "6:10p", + "home_team": "Cleveland Guardians", + "away_team": "Minnesota Twins", + "home_team_abbrev": "CLE", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_min", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260509_bos_njy", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-09", + "time": "6:30p", + "home_team": "New Jersey NJ/NY Gotham FC", + "away_team": "Boston Boston Legacy FC", + "home_team_abbrev": "NJY", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nwsl_njy", + "away_team_canonical_id": "team_nwsl_bos", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_nwsl_red_bull_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88388,21 +72291,17 @@ "canonical_id": "game_mlb_2026_20260509_chc_tex_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-09T23:05:00Z", + "date": "2026-05-09", + "time": "6:05p", + "home_team": "Texas Rangers", + "away_team": "Chicago Cubs", + "home_team_abbrev": "TEX", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_chc", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260509_sea_chw", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-09T23:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88410,10 +72309,35 @@ "canonical_id": "game_mlb_2026_20260509_nyy_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-09T23:10:00Z", + "date": "2026-05-09", + "time": "6:10p", + "home_team": "Milwaukee Brewers", + "away_team": "New York Yankees", + "home_team_abbrev": "MIL", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_nyy", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260509_sea_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "6:10p", + "home_team": "Chicago White Sox", + "away_team": "Seattle Mariners", + "home_team_abbrev": "CHW", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_sea", + "venue": "Guaranteed Rate Field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88421,21 +72345,17 @@ "canonical_id": "game_mlb_2026_20260509_det_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-09T23:10:00Z", + "date": "2026-05-09", + "time": "6:10p", + "home_team": "Kansas City Royals", + "away_team": "Detroit Tigers", + "home_team_abbrev": "KC", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_det", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260509_stl_sd_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-09T23:15:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88443,10 +72363,161 @@ "canonical_id": "game_mlb_2026_20260509_nym_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-09T23:15:00Z", + "date": "2026-05-09", + "time": "4:15p", + "home_team": "Arizona Diamondbacks", + "away_team": "New York Mets", + "home_team_abbrev": "ARI", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_nym", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260509_stl_sd_2", + "sport": "MLB", + "season": "2026", + "date": "2026-05-09", + "time": "4:15p", + "home_team": "San Diego Padres", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "SD", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mlb_sd", + "away_team_canonical_id": "team_mlb_stl", + "venue": "Petco Park", + "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260509_phi_ne", + "sport": "MLS", + "season": "2026", + "date": "2026-05-09", + "time": "7:30p", + "home_team": "New England New England Revolution", + "away_team": "Philadelphia Philadelphia Union", + "home_team_abbrev": "NE", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mls_ne", + "away_team_canonical_id": "team_mls_phi", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_mls_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260509_cin_clt", + "sport": "MLS", + "season": "2026", + "date": "2026-05-09", + "time": "7:30p", + "home_team": "Charlotte Charlotte FC", + "away_team": "Cincinnati FC Cincinnati", + "home_team_abbrev": "CLT", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mls_clt", + "away_team_canonical_id": "team_mls_cin", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260509_lag_atl", + "sport": "MLS", + "season": "2026", + "date": "2026-05-09", + "time": "7:30p", + "home_team": "Atlanta Atlanta United", + "away_team": "Los Angeles LA Galaxy", + "home_team_abbrev": "ATL", + "away_team_abbrev": "LAG", + "home_team_canonical_id": "team_mls_atl", + "away_team_canonical_id": "team_mls_lag", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260510_den_hou", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-09", + "time": "7p", + "home_team": "Houston Houston Dash", + "away_team": "Denver Denver Summit FC", + "home_team_abbrev": "HOU", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nwsl_hou", + "away_team_canonical_id": "team_nwsl_den", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260510_slc_dal", + "sport": "MLS", + "season": "2026", + "date": "2026-05-09", + "time": "7:30p", + "home_team": "Dallas FC Dallas", + "away_team": "Salt Lake Real Salt Lake", + "home_team_abbrev": "DAL", + "away_team_abbrev": "SLC", + "home_team_canonical_id": "team_mls_dal", + "away_team_canonical_id": "team_mls_slc", + "venue": "Toyota Stadium", + "stadium_canonical_id": "stadium_mls_toyota_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260510_sdw_ang", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-09", + "time": "5:45p", + "home_team": "Los Angeles Angel City FC", + "away_team": "San Diego San Diego Wave", + "home_team_abbrev": "ANG", + "away_team_abbrev": "SDW", + "home_team_canonical_id": "team_nwsl_ang", + "away_team_canonical_id": "team_nwsl_sdw", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_nwsl_bmo_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260510_dc_nsh", + "sport": "MLS", + "season": "2026", + "date": "2026-05-09", + "time": "8p", + "home_team": "Nashville Nashville SC", + "away_team": "Washington D.C. United", + "home_team_abbrev": "NSH", + "away_team_abbrev": "DC", + "home_team_canonical_id": "team_mls_nsh", + "away_team_canonical_id": "team_mls_dc", + "venue": "GEODIS Park", + "stadium_canonical_id": "stadium_mls_geodis_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88454,10 +72525,17 @@ "canonical_id": "game_mlb_2026_20260510_pit_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-10T01:05:00Z", + "date": "2026-05-09", + "time": "6:05p", + "home_team": "San Francisco Giants", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "SF", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_pit", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88465,10 +72543,89 @@ "canonical_id": "game_mlb_2026_20260510_atl_lad_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-10T01:10:00Z", + "date": "2026-05-09", + "time": "6:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Atlanta Braves", + "home_team_abbrev": "LAD", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_atl", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260510_stl_col", + "sport": "MLS", + "season": "2026", + "date": "2026-05-09", + "time": "7:30p", + "home_team": "Colorado Colorado Rapids", + "away_team": "St. Louis St. Louis City SC", + "home_team_abbrev": "COL", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mls_col", + "away_team_canonical_id": "team_mls_stl", + "venue": "Dick's Sporting Goods Park", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260510_sd_sea", + "sport": "MLS", + "season": "2026", + "date": "2026-05-09", + "time": "7:30p", + "home_team": "Seattle Seattle Sounders", + "away_team": "San Diego San Diego FC", + "home_team_abbrev": "SEA", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mls_sea", + "away_team_canonical_id": "team_mls_sd", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_mls_lumen_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260510_skc_por", + "sport": "MLS", + "season": "2026", + "date": "2026-05-09", + "time": "7:30p", + "home_team": "Portland Portland Timbers", + "away_team": "Kansas City Sporting Kansas City", + "home_team_abbrev": "POR", + "away_team_abbrev": "SKC", + "home_team_canonical_id": "team_mls_por", + "away_team_canonical_id": "team_mls_skc", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_mls_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260510_van_sj", + "sport": "MLS", + "season": "2026", + "date": "2026-05-09", + "time": "7:30p", + "home_team": "San Jose San Jose Earthquakes", + "away_team": "Vancouver Vancouver Whitecaps", + "home_team_abbrev": "SJ", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_mls_sj", + "away_team_canonical_id": "team_mls_van", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_mls_paypal_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88476,21 +72633,53 @@ "canonical_id": "game_mlb_2026_20260510_wsn_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-10T16:15:00Z", + "date": "2026-05-10", + "time": "12:10p", + "home_team": "Miami Marlins", + "away_team": "Washington Nationals", + "home_team_abbrev": "MIA", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_wsn", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260510_tbr_bos", - "sport": "MLB", + "canonical_id": "game_nwsl_2026_20260510_chi_kcc", + "sport": "NWSL", "season": "2026", - "game_datetime_utc": "2026-05-10T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_fenway_park", + "date": "2026-05-10", + "time": "11:30a", + "home_team": "Kansas City Kansas City Current", + "away_team": "Chicago Chicago Red Stars", + "home_team_abbrev": "KCC", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nwsl_kcc", + "away_team_canonical_id": "team_nwsl_chi", + "venue": "CPKC Stadium", + "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260510_sea_con", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-10", + "time": "1p", + "home_team": "Connecticut Sun", + "away_team": "Seattle Storm", + "home_team_abbrev": "CON", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_wnba_con", + "away_team_canonical_id": "team_wnba_sea", + "venue": "Mohegan Sun Arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88498,10 +72687,35 @@ "canonical_id": "game_mlb_2026_20260510_oak_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-10T17:35:00Z", + "date": "2026-05-10", + "time": "1:35p", + "home_team": "Baltimore Orioles", + "away_team": "Oakland Athletics", + "home_team_abbrev": "BAL", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_oak", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260510_tbr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "1:35p", + "home_team": "Boston Red Sox", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88509,10 +72723,17 @@ "canonical_id": "game_mlb_2026_20260510_col_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-10T17:35:00Z", + "date": "2026-05-10", + "time": "1:35p", + "home_team": "Philadelphia Phillies", + "away_team": "Colorado Rockies", + "home_team_abbrev": "PHI", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_col", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88520,10 +72741,17 @@ "canonical_id": "game_mlb_2026_20260510_laa_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-10T17:37:00Z", + "date": "2026-05-10", + "time": "1:37p", + "home_team": "Toronto Blue Jays", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "TOR", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_laa", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88531,10 +72759,17 @@ "canonical_id": "game_mlb_2026_20260510_min_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-10T17:40:00Z", + "date": "2026-05-10", + "time": "1:40p", + "home_team": "Cleveland Guardians", + "away_team": "Minnesota Twins", + "home_team_abbrev": "CLE", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_min", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88542,21 +72777,17 @@ "canonical_id": "game_mlb_2026_20260510_hou_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-10T17:40:00Z", + "date": "2026-05-10", + "time": "1:40p", + "home_team": "Cincinnati Reds", + "away_team": "Houston Astros", + "home_team_abbrev": "CIN", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_hou", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260510_sea_chw", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-10T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88564,10 +72795,35 @@ "canonical_id": "game_mlb_2026_20260510_nyy_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-10T18:10:00Z", + "date": "2026-05-10", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "New York Yankees", + "home_team_abbrev": "MIL", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_nyy", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260510_sea_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Seattle Mariners", + "home_team_abbrev": "CHW", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_sea", + "venue": "Guaranteed Rate Field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88575,10 +72831,53 @@ "canonical_id": "game_mlb_2026_20260510_chc_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-10T18:35:00Z", + "date": "2026-05-10", + "time": "1:35p", + "home_team": "Texas Rangers", + "away_team": "Chicago Cubs", + "home_team_abbrev": "TEX", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_chc", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260510_ny_was", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-10", + "time": "3p", + "home_team": "Washington Mystics", + "away_team": "New York Liberty", + "home_team_abbrev": "WAS", + "away_team_abbrev": "NY", + "home_team_canonical_id": "team_wnba_was", + "away_team_canonical_id": "team_wnba_ny", + "venue": "Entertainment & Sports Arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260510_uta_bay", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-10", + "time": "1p", + "home_team": "San Francisco Bay FC", + "away_team": "Utah Utah Royals", + "home_team_abbrev": "BAY", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nwsl_bay", + "away_team_canonical_id": "team_nwsl_uta", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_nwsl_paypal_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88586,21 +72885,17 @@ "canonical_id": "game_mlb_2026_20260510_pit_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-10T20:05:00Z", + "date": "2026-05-10", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "SF", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_pit", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260510_stl_sd", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-10T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88608,10 +72903,17 @@ "canonical_id": "game_mlb_2026_20260510_nym_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-10T20:10:00Z", + "date": "2026-05-10", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "New York Mets", + "home_team_abbrev": "ARI", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_nym", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88619,10 +72921,125 @@ "canonical_id": "game_mlb_2026_20260510_atl_lad_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-10T20:10:00Z", + "date": "2026-05-10", + "time": "1:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Atlanta Braves", + "home_team_abbrev": "LAD", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_atl", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260510_stl_sd", + "sport": "MLB", + "season": "2026", + "date": "2026-05-10", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "SD", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mlb_sd", + "away_team_canonical_id": "team_mlb_stl", + "venue": "Petco Park", + "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260510_clb_nyc", + "sport": "MLS", + "season": "2026", + "date": "2026-05-10", + "time": "4:30p", + "home_team": "New York New York City FC", + "away_team": "Columbus Columbus Crew", + "home_team_abbrev": "NYC", + "away_team_abbrev": "CLB", + "home_team_canonical_id": "team_mls_nyc", + "away_team_canonical_id": "team_mls_clb", + "venue": "Yankee Stadium", + "stadium_canonical_id": "stadium_mls_yankee_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260510_lv_la", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-10", + "time": "3p", + "home_team": "Los Angeles Sparks", + "away_team": "Las Vegas Aces", + "home_team_abbrev": "LA", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_wnba_la", + "away_team_canonical_id": "team_wnba_lv", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260510_aus_min", + "sport": "MLS", + "season": "2026", + "date": "2026-05-10", + "time": "6p", + "home_team": "Minnesota Minnesota United", + "away_team": "Austin Austin FC", + "home_team_abbrev": "MIN", + "away_team_abbrev": "AUS", + "home_team_canonical_id": "team_mls_min", + "away_team_canonical_id": "team_mls_aus", + "venue": "Allianz Field", + "stadium_canonical_id": "stadium_mls_allianz_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260510_wsh_sea", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-10", + "time": "4p", + "home_team": "Seattle Seattle Reign", + "away_team": "Washington Washington Spirit", + "home_team_abbrev": "SEA", + "away_team_abbrev": "WSH", + "home_team_canonical_id": "team_nwsl_sea", + "away_team_canonical_id": "team_nwsl_wsh", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_nwsl_lumen_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260510_atl_min", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-10", + "time": "6p", + "home_team": "Minnesota Lynx", + "away_team": "Atlanta Dream", + "home_team_abbrev": "MIN", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_wnba_min", + "away_team_canonical_id": "team_wnba_atl", + "venue": "Target Center", + "stadium_canonical_id": "stadium_wnba_target_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88630,10 +73047,53 @@ "canonical_id": "game_mlb_2026_20260510_det_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-10T23:20:00Z", + "date": "2026-05-10", + "time": "6:20p", + "home_team": "Kansas City Royals", + "away_team": "Detroit Tigers", + "home_team_abbrev": "KC", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_det", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260511_phx_gsv", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-10", + "time": "5:30p", + "home_team": "Golden State Valkyries", + "away_team": "Phoenix Mercury", + "home_team_abbrev": "GSV", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_wnba_gsv", + "away_team_canonical_id": "team_wnba_phx", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_wnba_chase_center", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260511_hou_lafc", + "sport": "MLS", + "season": "2026", + "date": "2026-05-10", + "time": "6p", + "home_team": "Los Angeles Los Angeles FC", + "away_team": "Houston Houston Dynamo", + "home_team_abbrev": "LAFC", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mls_lafc", + "away_team_canonical_id": "team_mls_hou", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88641,10 +73101,17 @@ "canonical_id": "game_mlb_2026_20260511_laa_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-11T22:10:00Z", + "date": "2026-05-11", + "time": "6:10p", + "home_team": "Cleveland Guardians", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "CLE", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_laa", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88652,10 +73119,17 @@ "canonical_id": "game_mlb_2026_20260511_nyy_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-11T22:35:00Z", + "date": "2026-05-11", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "New York Yankees", + "home_team_abbrev": "BAL", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88663,10 +73137,17 @@ "canonical_id": "game_mlb_2026_20260511_tbr_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-11T23:07:00Z", + "date": "2026-05-11", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "TOR", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88674,10 +73155,17 @@ "canonical_id": "game_mlb_2026_20260512_ari_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-12T00:05:00Z", + "date": "2026-05-11", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "TEX", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_ari", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88685,10 +73173,17 @@ "canonical_id": "game_mlb_2026_20260512_sea_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-12T00:10:00Z", + "date": "2026-05-11", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Seattle Mariners", + "home_team_abbrev": "HOU", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_sea", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88696,10 +73191,17 @@ "canonical_id": "game_mlb_2026_20260512_sf_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-12T02:10:00Z", + "date": "2026-05-11", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "San Francisco Giants", + "home_team_abbrev": "LAD", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_sf", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88707,10 +73209,17 @@ "canonical_id": "game_mlb_2026_20260512_laa_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-12T22:10:00Z", + "date": "2026-05-12", + "time": "6:10p", + "home_team": "Cleveland Guardians", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "CLE", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_laa", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88718,10 +73227,17 @@ "canonical_id": "game_mlb_2026_20260512_nyy_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-12T22:35:00Z", + "date": "2026-05-12", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "New York Yankees", + "home_team_abbrev": "BAL", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88729,10 +73245,17 @@ "canonical_id": "game_mlb_2026_20260512_wsn_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-12T22:40:00Z", + "date": "2026-05-12", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Washington Nationals", + "home_team_abbrev": "CIN", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88740,10 +73263,17 @@ "canonical_id": "game_mlb_2026_20260512_col_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-12T22:40:00Z", + "date": "2026-05-12", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Colorado Rockies", + "home_team_abbrev": "PIT", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_col", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88751,10 +73281,17 @@ "canonical_id": "game_mlb_2026_20260512_phi_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-12T22:45:00Z", + "date": "2026-05-12", + "time": "6:45p", + "home_team": "Boston Red Sox", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "BOS", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_phi", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88762,10 +73299,17 @@ "canonical_id": "game_mlb_2026_20260512_tbr_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-12T23:07:00Z", + "date": "2026-05-12", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "TOR", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88773,10 +73317,17 @@ "canonical_id": "game_mlb_2026_20260512_det_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-12T23:10:00Z", + "date": "2026-05-12", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Detroit Tigers", + "home_team_abbrev": "NYM", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_det", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88784,10 +73335,17 @@ "canonical_id": "game_mlb_2026_20260512_chc_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-12T23:15:00Z", + "date": "2026-05-12", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Chicago Cubs", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_chc", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88795,21 +73353,17 @@ "canonical_id": "game_mlb_2026_20260512_sd_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-12T23:40:00Z", + "date": "2026-05-12", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "San Diego Padres", + "home_team_abbrev": "MIL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_sd", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260512_mia_min", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-12T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88817,10 +73371,71 @@ "canonical_id": "game_mlb_2026_20260512_kc_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-12T23:40:00Z", + "date": "2026-05-12", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Kansas City Royals", + "home_team_abbrev": "CHW", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_kc", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260512_mia_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-12", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Miami Marlins", + "home_team_abbrev": "MIN", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_mia", + "venue": "Target Field", + "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260513_orl_bos", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-12", + "time": "8p", + "home_team": "Boston Boston Legacy FC", + "away_team": "Orlando Orlando Pride", + "home_team_abbrev": "BOS", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nwsl_bos", + "away_team_canonical_id": "team_nwsl_orl", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_nwsl_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260513_atl_dal", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-12", + "time": "7p", + "home_team": "Dallas Wings", + "away_team": "Atlanta Dream", + "home_team_abbrev": "DAL", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_atl", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88828,10 +73443,17 @@ "canonical_id": "game_mlb_2026_20260513_ari_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-13T00:05:00Z", + "date": "2026-05-12", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "TEX", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_ari", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88839,10 +73461,17 @@ "canonical_id": "game_mlb_2026_20260513_sea_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-13T00:10:00Z", + "date": "2026-05-12", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Seattle Mariners", + "home_team_abbrev": "HOU", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_sea", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88850,10 +73479,35 @@ "canonical_id": "game_mlb_2026_20260513_stl_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-13T01:40:00Z", + "date": "2026-05-12", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "OAK", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_stl", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260513_min_phx", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-12", + "time": "10p", + "home_team": "Phoenix Mercury", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "PHX", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_phx", + "away_team_canonical_id": "team_wnba_min", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88861,10 +73515,17 @@ "canonical_id": "game_mlb_2026_20260513_sf_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-13T02:10:00Z", + "date": "2026-05-12", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "San Francisco Giants", + "home_team_abbrev": "LAD", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_sf", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88872,10 +73533,17 @@ "canonical_id": "game_mlb_2026_20260513_laa_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-13T17:10:00Z", + "date": "2026-05-13", + "time": "1:10p", + "home_team": "Cleveland Guardians", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "CLE", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_laa", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88883,10 +73551,17 @@ "canonical_id": "game_mlb_2026_20260513_nyy_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-13T22:35:00Z", + "date": "2026-05-13", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "New York Yankees", + "home_team_abbrev": "BAL", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88894,10 +73569,17 @@ "canonical_id": "game_mlb_2026_20260513_wsn_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-13T22:40:00Z", + "date": "2026-05-13", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Washington Nationals", + "home_team_abbrev": "CIN", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88905,10 +73587,17 @@ "canonical_id": "game_mlb_2026_20260513_col_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-13T22:40:00Z", + "date": "2026-05-13", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Colorado Rockies", + "home_team_abbrev": "PIT", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_col", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88916,10 +73605,35 @@ "canonical_id": "game_mlb_2026_20260513_phi_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-13T22:45:00Z", + "date": "2026-05-13", + "time": "6:45p", + "home_team": "Boston Red Sox", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "BOS", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_phi", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260513_nyc_clt", + "sport": "MLS", + "season": "2026", + "date": "2026-05-13", + "time": "7p", + "home_team": "Charlotte Charlotte FC", + "away_team": "New York New York City FC", + "home_team_abbrev": "CLT", + "away_team_abbrev": "NYC", + "home_team_canonical_id": "team_mls_clt", + "away_team_canonical_id": "team_mls_nyc", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88927,10 +73641,17 @@ "canonical_id": "game_mlb_2026_20260513_tbr_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-13T23:07:00Z", + "date": "2026-05-13", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "TOR", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88938,10 +73659,17 @@ "canonical_id": "game_mlb_2026_20260513_det_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-13T23:10:00Z", + "date": "2026-05-13", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Detroit Tigers", + "home_team_abbrev": "NYM", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_det", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88949,10 +73677,125 @@ "canonical_id": "game_mlb_2026_20260513_chc_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-13T23:15:00Z", + "date": "2026-05-13", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Chicago Cubs", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_chc", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260513_nsh_ne", + "sport": "MLS", + "season": "2026", + "date": "2026-05-13", + "time": "7:30p", + "home_team": "New England New England Revolution", + "away_team": "Nashville Nashville SC", + "home_team_abbrev": "NE", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_mls_ne", + "away_team_canonical_id": "team_mls_nsh", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_mls_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260513_clb_ny", + "sport": "MLS", + "season": "2026", + "date": "2026-05-13", + "time": "7:30p", + "home_team": "New York New York Red Bulls", + "away_team": "Columbus Columbus Crew", + "home_team_abbrev": "RB", + "away_team_abbrev": "CLB", + "home_team_canonical_id": "team_mls_ny", + "away_team_canonical_id": "team_mls_clb", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_mls_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260513_phi_orl", + "sport": "MLS", + "season": "2026", + "date": "2026-05-13", + "time": "7:30p", + "home_team": "Orlando Orlando City", + "away_team": "Philadelphia Philadelphia Union", + "home_team_abbrev": "ORL", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mls_orl", + "away_team_canonical_id": "team_mls_phi", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260513_por_mtl", + "sport": "MLS", + "season": "2026", + "date": "2026-05-13", + "time": "7:30p", + "home_team": "Montreal CF Montreal", + "away_team": "Portland Portland Timbers", + "home_team_abbrev": "MTL", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_mls_mtl", + "away_team_canonical_id": "team_mls_por", + "venue": "Stade Saputo", + "stadium_canonical_id": "stadium_mls_stade_saputo", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260513_chi_dc", + "sport": "MLS", + "season": "2026", + "date": "2026-05-13", + "time": "7:30p", + "home_team": "Washington D.C. United", + "away_team": "Chicago Chicago Fire", + "home_team_abbrev": "DC", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_mls_dc", + "away_team_canonical_id": "team_mls_chi", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_mls_audi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260513_mia_cin", + "sport": "MLS", + "season": "2026", + "date": "2026-05-13", + "time": "7:30p", + "home_team": "Cincinnati FC Cincinnati", + "away_team": "Miami Inter Miami", + "home_team_abbrev": "CIN", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mls_cin", + "away_team_canonical_id": "team_mls_mia", + "venue": "TQL Stadium", + "stadium_canonical_id": "stadium_mls_tql_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88960,10 +73803,17 @@ "canonical_id": "game_mlb_2026_20260513_sd_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-13T23:40:00Z", + "date": "2026-05-13", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "San Diego Padres", + "home_team_abbrev": "MIL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_sd", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88971,10 +73821,17 @@ "canonical_id": "game_mlb_2026_20260513_mia_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-13T23:40:00Z", + "date": "2026-05-13", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Miami Marlins", + "home_team_abbrev": "MIN", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_mia", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -88982,10 +73839,35 @@ "canonical_id": "game_mlb_2026_20260513_kc_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-13T23:40:00Z", + "date": "2026-05-13", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Kansas City Royals", + "home_team_abbrev": "CHW", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_kc", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260514_lv_con", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-13", + "time": "8p", + "home_team": "Connecticut Sun", + "away_team": "Las Vegas Aces", + "home_team_abbrev": "CON", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_wnba_con", + "away_team_canonical_id": "team_wnba_lv", + "venue": "Mohegan Sun Arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -88993,10 +73875,17 @@ "canonical_id": "game_mlb_2026_20260514_ari_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-14T00:05:00Z", + "date": "2026-05-13", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "TEX", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_ari", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89004,10 +73893,143 @@ "canonical_id": "game_mlb_2026_20260514_sea_hou_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-14T00:10:00Z", + "date": "2026-05-13", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Seattle Mariners", + "home_team_abbrev": "HOU", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_sea", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260514_van_dal", + "sport": "MLS", + "season": "2026", + "date": "2026-05-13", + "time": "7:30p", + "home_team": "Dallas FC Dallas", + "away_team": "Vancouver Vancouver Whitecaps", + "home_team_abbrev": "DAL", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_mls_dal", + "away_team_canonical_id": "team_mls_van", + "venue": "Toyota Stadium", + "stadium_canonical_id": "stadium_mls_toyota_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260514_lafc_stl", + "sport": "MLS", + "season": "2026", + "date": "2026-05-13", + "time": "7:30p", + "home_team": "St. Louis St. Louis City SC", + "away_team": "Los Angeles Los Angeles FC", + "home_team_abbrev": "STL", + "away_team_abbrev": "LAFC", + "home_team_canonical_id": "team_mls_stl", + "away_team_canonical_id": "team_mls_lafc", + "venue": "CITYPARK", + "stadium_canonical_id": "stadium_mls_citypark", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260514_lag_skc", + "sport": "MLS", + "season": "2026", + "date": "2026-05-13", + "time": "7:30p", + "home_team": "Kansas City Sporting Kansas City", + "away_team": "Los Angeles LA Galaxy", + "home_team_abbrev": "SKC", + "away_team_abbrev": "LAG", + "home_team_canonical_id": "team_mls_skc", + "away_team_canonical_id": "team_mls_lag", + "venue": "Children's Mercy Park", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260514_col_min", + "sport": "MLS", + "season": "2026", + "date": "2026-05-13", + "time": "7:30p", + "home_team": "Minnesota Minnesota United", + "away_team": "Colorado Colorado Rapids", + "home_team_abbrev": "MIN", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mls_min", + "away_team_canonical_id": "team_mls_col", + "venue": "Allianz Field", + "stadium_canonical_id": "stadium_mls_allianz_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260514_hou_slc", + "sport": "MLS", + "season": "2026", + "date": "2026-05-13", + "time": "7:30p", + "home_team": "Salt Lake Real Salt Lake", + "away_team": "Houston Houston Dynamo", + "home_team_abbrev": "SLC", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mls_slc", + "away_team_canonical_id": "team_mls_hou", + "venue": "America First Field", + "stadium_canonical_id": "stadium_mls_america_first_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260514_sj_sea", + "sport": "MLS", + "season": "2026", + "date": "2026-05-13", + "time": "6:30p", + "home_team": "Seattle Seattle Sounders", + "away_team": "San Jose San Jose Earthquakes", + "home_team_abbrev": "SEA", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_mls_sea", + "away_team_canonical_id": "team_mls_sj", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_mls_lumen_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260514_aus_sd", + "sport": "MLS", + "season": "2026", + "date": "2026-05-13", + "time": "6:30p", + "home_team": "San Diego San Diego FC", + "away_team": "Austin Austin FC", + "home_team_abbrev": "SD", + "away_team_abbrev": "AUS", + "home_team_canonical_id": "team_mls_sd", + "away_team_canonical_id": "team_mls_aus", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -89015,10 +74037,53 @@ "canonical_id": "game_mlb_2026_20260514_stl_oak_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-14T01:40:00Z", + "date": "2026-05-13", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "OAK", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_stl", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260514_ind_la", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-13", + "time": "7p", + "home_team": "Los Angeles Sparks", + "away_team": "Indiana Fever", + "home_team_abbrev": "LA", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_wnba_la", + "away_team_canonical_id": "team_wnba_ind", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260514_chi_gsv", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-13", + "time": "7p", + "home_team": "Golden State Valkyries", + "away_team": "Chicago Sky", + "home_team_abbrev": "GSV", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_gsv", + "away_team_canonical_id": "team_wnba_chi", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_wnba_chase_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -89026,10 +74091,17 @@ "canonical_id": "game_mlb_2026_20260514_sf_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-14T02:10:00Z", + "date": "2026-05-13", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "San Francisco Giants", + "home_team_abbrev": "LAD", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_sf", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89037,10 +74109,17 @@ "canonical_id": "game_mlb_2026_20260514_col_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-14T16:35:00Z", + "date": "2026-05-14", + "time": "12:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "Colorado Rockies", + "home_team_abbrev": "PIT", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_col", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89048,10 +74127,17 @@ "canonical_id": "game_mlb_2026_20260514_wsn_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-14T16:40:00Z", + "date": "2026-05-14", + "time": "12:40p", + "home_team": "Cincinnati Reds", + "away_team": "Washington Nationals", + "home_team_abbrev": "CIN", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89059,10 +74145,17 @@ "canonical_id": "game_mlb_2026_20260514_det_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-14T17:10:00Z", + "date": "2026-05-14", + "time": "1:10p", + "home_team": "New York Mets", + "away_team": "Detroit Tigers", + "home_team_abbrev": "NYM", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_det", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89070,10 +74163,17 @@ "canonical_id": "game_mlb_2026_20260514_sd_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-14T17:40:00Z", + "date": "2026-05-14", + "time": "12:40p", + "home_team": "Milwaukee Brewers", + "away_team": "San Diego Padres", + "home_team_abbrev": "MIL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_sd", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89081,10 +74181,17 @@ "canonical_id": "game_mlb_2026_20260514_mia_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-14T17:40:00Z", + "date": "2026-05-14", + "time": "12:40p", + "home_team": "Minnesota Twins", + "away_team": "Miami Marlins", + "home_team_abbrev": "MIN", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_mia", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89092,10 +74199,17 @@ "canonical_id": "game_mlb_2026_20260514_sea_hou_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-14T18:10:00Z", + "date": "2026-05-14", + "time": "1:10p", + "home_team": "Houston Astros", + "away_team": "Seattle Mariners", + "home_team_abbrev": "HOU", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_sea", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89103,10 +74217,17 @@ "canonical_id": "game_mlb_2026_20260514_stl_oak_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-14T19:05:00Z", + "date": "2026-05-14", + "time": "12:05p", + "home_team": "Oakland Athletics", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "OAK", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_stl", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89114,10 +74235,17 @@ "canonical_id": "game_mlb_2026_20260514_phi_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-14T22:45:00Z", + "date": "2026-05-14", + "time": "6:45p", + "home_team": "Boston Red Sox", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "BOS", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_phi", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89125,10 +74253,17 @@ "canonical_id": "game_mlb_2026_20260514_chc_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-14T23:15:00Z", + "date": "2026-05-14", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Chicago Cubs", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_chc", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89136,10 +74271,35 @@ "canonical_id": "game_mlb_2026_20260514_kc_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-14T23:40:00Z", + "date": "2026-05-14", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Kansas City Royals", + "home_team_abbrev": "CHW", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_kc", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260515_min_dal", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-14", + "time": "7p", + "home_team": "Dallas Wings", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "DAL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_min", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -89147,10 +74307,17 @@ "canonical_id": "game_mlb_2026_20260515_sf_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-15T02:10:00Z", + "date": "2026-05-14", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "San Francisco Giants", + "home_team_abbrev": "LAD", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_sf", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89158,10 +74325,17 @@ "canonical_id": "game_mlb_2026_20260515_tor_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-15T22:40:00Z", + "date": "2026-05-15", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "DET", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_tor", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89169,10 +74343,17 @@ "canonical_id": "game_mlb_2026_20260515_phi_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-15T22:40:00Z", + "date": "2026-05-15", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "PIT", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_phi", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89180,21 +74361,17 @@ "canonical_id": "game_mlb_2026_20260515_bal_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-15T22:45:00Z", + "date": "2026-05-15", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "WSN", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_bal", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260515_nyy_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-15T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89202,10 +74379,17 @@ "canonical_id": "game_mlb_2026_20260515_mia_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-15T23:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-05-15", + "time": "7:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Miami Marlins", + "home_team_abbrev": "TB", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_mia", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89213,10 +74397,35 @@ "canonical_id": "game_mlb_2026_20260515_cin_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-15T23:10:00Z", + "date": "2026-05-15", + "time": "7:10p", + "home_team": "Cleveland Guardians", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_cin", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260515_nyy_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "New York Yankees", + "home_team_abbrev": "NYM", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89224,10 +74433,53 @@ "canonical_id": "game_mlb_2026_20260515_bos_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-15T23:15:00Z", + "date": "2026-05-15", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Boston Red Sox", + "home_team_abbrev": "ATL", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_bos", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260515_lv_con", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-15", + "time": "7:30p", + "home_team": "Connecticut Sun", + "away_team": "Las Vegas Aces", + "home_team_abbrev": "CON", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_wnba_con", + "away_team_canonical_id": "team_wnba_lv", + "venue": "Mohegan Sun Arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260515_was_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-15", + "time": "7:30p", + "home_team": "Indiana Fever", + "away_team": "Washington Mystics", + "home_team_abbrev": "IND", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_was", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -89235,21 +74487,35 @@ "canonical_id": "game_mlb_2026_20260515_chc_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-15T23:40:00Z", + "date": "2026-05-15", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Chicago Cubs", + "home_team_abbrev": "CHW", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_chc", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260516_tex_hou_1", - "sport": "MLB", + "canonical_id": "game_nwsl_2026_20260516_hou_kcc", + "sport": "NWSL", "season": "2026", - "game_datetime_utc": "2026-05-16T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "date": "2026-05-15", + "time": "7p", + "home_team": "Kansas City Kansas City Current", + "away_team": "Houston Houston Dash", + "home_team_abbrev": "KCC", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nwsl_kcc", + "away_team_canonical_id": "team_nwsl_hou", + "venue": "CPKC Stadium", + "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -89257,10 +74523,35 @@ "canonical_id": "game_mlb_2026_20260516_mil_min_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-16T00:10:00Z", + "date": "2026-05-15", + "time": "7:10p", + "home_team": "Minnesota Twins", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_mil", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260516_tex_hou_1", + "sport": "MLB", + "season": "2026", + "date": "2026-05-15", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Texas Rangers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Minute Maid Park", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89268,10 +74559,17 @@ "canonical_id": "game_mlb_2026_20260516_kc_stl_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-16T00:15:00Z", + "date": "2026-05-15", + "time": "7:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Kansas City Royals", + "home_team_abbrev": "STL", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_kc", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89279,10 +74577,17 @@ "canonical_id": "game_mlb_2026_20260516_ari_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-16T00:40:00Z", + "date": "2026-05-15", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "COL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_ari", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89290,10 +74595,17 @@ "canonical_id": "game_mlb_2026_20260516_lad_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-16T01:38:00Z", + "date": "2026-05-15", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "LAA", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_lad", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89301,10 +74613,17 @@ "canonical_id": "game_mlb_2026_20260516_sf_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-16T01:40:00Z", + "date": "2026-05-15", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "San Francisco Giants", + "home_team_abbrev": "OAK", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_sf", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89312,10 +74631,89 @@ "canonical_id": "game_mlb_2026_20260516_sd_sea_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-16T01:40:00Z", + "date": "2026-05-15", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "San Diego Padres", + "home_team_abbrev": "SEA", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260516_njy_sea", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-15", + "time": "7p", + "home_team": "Seattle Seattle Reign", + "away_team": "New Jersey NJ/NY Gotham FC", + "home_team_abbrev": "SEA", + "away_team_abbrev": "NJY", + "home_team_canonical_id": "team_nwsl_sea", + "away_team_canonical_id": "team_nwsl_njy", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_nwsl_lumen_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260516_wsh_sdw", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-15", + "time": "7p", + "home_team": "San Diego San Diego Wave", + "away_team": "Washington Washington Spirit", + "home_team_abbrev": "SDW", + "away_team_abbrev": "WSH", + "home_team_canonical_id": "team_nwsl_sdw", + "away_team_canonical_id": "team_nwsl_wsh", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260516_bos_bay", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-15", + "time": "7p", + "home_team": "San Francisco Bay FC", + "away_team": "Boston Boston Legacy FC", + "home_team_abbrev": "BAY", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nwsl_bay", + "away_team_canonical_id": "team_nwsl_bos", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_nwsl_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260516_chi_phx", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-15", + "time": "10p", + "home_team": "Phoenix Mercury", + "away_team": "Chicago Sky", + "home_team_abbrev": "PHX", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_phx", + "away_team_canonical_id": "team_wnba_chi", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -89323,10 +74721,17 @@ "canonical_id": "game_mlb_2026_20260516_tor_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-16T17:10:00Z", + "date": "2026-05-16", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "DET", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_tor", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89334,10 +74739,17 @@ "canonical_id": "game_mlb_2026_20260516_kc_stl_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-16T18:15:00Z", + "date": "2026-05-16", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Kansas City Royals", + "home_team_abbrev": "STL", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_kc", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89345,21 +74757,17 @@ "canonical_id": "game_mlb_2026_20260516_ari_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-16T19:10:00Z", + "date": "2026-05-16", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "COL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_ari", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260516_phi_pit", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-16T20:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89367,10 +74775,35 @@ "canonical_id": "game_mlb_2026_20260516_bal_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-16T20:05:00Z", + "date": "2026-05-16", + "time": "4:05p", + "home_team": "Washington Nationals", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "WSN", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_bal", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260516_phi_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "4:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "PIT", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_phi", + "venue": "PNC Park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89378,10 +74811,35 @@ "canonical_id": "game_mlb_2026_20260516_mia_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-16T20:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-05-16", + "time": "4:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Miami Marlins", + "home_team_abbrev": "TB", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_mia", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260516_chi_mtl", + "sport": "MLS", + "season": "2026", + "date": "2026-05-16", + "time": "4:30p", + "home_team": "Montreal CF Montreal", + "away_team": "Chicago Chicago Fire", + "home_team_abbrev": "MTL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_mls_mtl", + "away_team_canonical_id": "team_mls_chi", + "venue": "Stade Saputo", + "stadium_canonical_id": "stadium_mls_stade_saputo", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -89389,21 +74847,35 @@ "canonical_id": "game_mlb_2026_20260516_cin_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-16T22:10:00Z", + "date": "2026-05-16", + "time": "6:10p", + "home_team": "Cleveland Guardians", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_cin", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260516_tex_hou_2", - "sport": "MLB", + "canonical_id": "game_nwsl_2026_20260516_chi_ncc", + "sport": "NWSL", "season": "2026", - "game_datetime_utc": "2026-05-16T23:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "date": "2026-05-16", + "time": "6:30p", + "home_team": "North Carolina North Carolina Courage", + "away_team": "Chicago Chicago Red Stars", + "home_team_abbrev": "NCC", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nwsl_ncc", + "away_team_canonical_id": "team_nwsl_chi", + "venue": "WakeMed Soccer Park", + "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -89411,10 +74883,17 @@ "canonical_id": "game_mlb_2026_20260516_mil_min_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-16T23:10:00Z", + "date": "2026-05-16", + "time": "6:10p", + "home_team": "Minnesota Twins", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_mil", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89422,32 +74901,35 @@ "canonical_id": "game_mlb_2026_20260516_chc_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-16T23:10:00Z", + "date": "2026-05-16", + "time": "6:10p", + "home_team": "Chicago White Sox", + "away_team": "Chicago Cubs", + "home_team_abbrev": "CHW", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_chc", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260516_sd_sea_2", + "canonical_id": "game_mlb_2026_20260516_tex_hou_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-16T23:15:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260516_nyy_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-16T23:15:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_citi_field", + "date": "2026-05-16", + "time": "6:10p", + "home_team": "Houston Astros", + "away_team": "Texas Rangers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Minute Maid Park", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89455,10 +74937,251 @@ "canonical_id": "game_mlb_2026_20260516_bos_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-16T23:15:00Z", + "date": "2026-05-16", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Boston Red Sox", + "home_team_abbrev": "ATL", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_bos", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260516_sd_sea_2", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "4:15p", + "home_team": "Seattle Mariners", + "away_team": "San Diego Padres", + "home_team_abbrev": "SEA", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_sd", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260516_nyy_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-16", + "time": "7:15p", + "home_team": "New York Mets", + "away_team": "New York Yankees", + "home_team_abbrev": "NYM", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260516_tor_clt", + "sport": "MLS", + "season": "2026", + "date": "2026-05-16", + "time": "7:30p", + "home_team": "Charlotte Charlotte FC", + "away_team": "Toronto Toronto FC", + "home_team_abbrev": "CLT", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mls_clt", + "away_team_canonical_id": "team_mls_tor", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260516_stl_dc", + "sport": "MLS", + "season": "2026", + "date": "2026-05-16", + "time": "7:30p", + "home_team": "Washington D.C. United", + "away_team": "St. Louis St. Louis City SC", + "home_team_abbrev": "DC", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mls_dc", + "away_team_canonical_id": "team_mls_stl", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_mls_audi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260516_min_ne", + "sport": "MLS", + "season": "2026", + "date": "2026-05-16", + "time": "7:30p", + "home_team": "New England New England Revolution", + "away_team": "Minnesota Minnesota United", + "home_team_abbrev": "NE", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mls_ne", + "away_team_canonical_id": "team_mls_min", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_mls_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260516_nyc_ny", + "sport": "MLS", + "season": "2026", + "date": "2026-05-16", + "time": "7:30p", + "home_team": "New York New York Red Bulls", + "away_team": "New York New York City FC", + "home_team_abbrev": "RB", + "away_team_abbrev": "NYC", + "home_team_canonical_id": "team_mls_ny", + "away_team_canonical_id": "team_mls_nyc", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_mls_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260516_atl_orl", + "sport": "MLS", + "season": "2026", + "date": "2026-05-16", + "time": "7:30p", + "home_team": "Orlando Orlando City", + "away_team": "Atlanta Atlanta United", + "home_team_abbrev": "ORL", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mls_orl", + "away_team_canonical_id": "team_mls_atl", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260516_clb_phi", + "sport": "MLS", + "season": "2026", + "date": "2026-05-16", + "time": "7:30p", + "home_team": "Philadelphia Philadelphia Union", + "away_team": "Columbus Columbus Crew", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CLB", + "home_team_canonical_id": "team_mls_phi", + "away_team_canonical_id": "team_mls_clb", + "venue": "Subaru Park", + "stadium_canonical_id": "stadium_mls_subaru_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260517_skc_aus", + "sport": "MLS", + "season": "2026", + "date": "2026-05-16", + "time": "7:30p", + "home_team": "Austin Austin FC", + "away_team": "Kansas City Sporting Kansas City", + "home_team_abbrev": "AUS", + "away_team_abbrev": "SKC", + "home_team_canonical_id": "team_mls_aus", + "away_team_canonical_id": "team_mls_skc", + "venue": "Q2 Stadium", + "stadium_canonical_id": "stadium_mls_q2_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260517_van_hou", + "sport": "MLS", + "season": "2026", + "date": "2026-05-16", + "time": "7:30p", + "home_team": "Houston Houston Dynamo", + "away_team": "Vancouver Vancouver Whitecaps", + "home_team_abbrev": "HOU", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_mls_hou", + "away_team_canonical_id": "team_mls_van", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_mls_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260517_orl_den", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-16", + "time": "6:45p", + "home_team": "Denver Denver Summit FC", + "away_team": "Orlando Orlando Pride", + "home_team_abbrev": "DEN", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nwsl_den", + "away_team_canonical_id": "team_nwsl_orl", + "venue": "Centennial Stadium", + "stadium_canonical_id": "stadium_nwsl_centennial_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260517_lag_sea", + "sport": "MLS", + "season": "2026", + "date": "2026-05-16", + "time": "6p", + "home_team": "Seattle Seattle Sounders", + "away_team": "Los Angeles LA Galaxy", + "home_team_abbrev": "SEA", + "away_team_abbrev": "LAG", + "home_team_canonical_id": "team_mls_sea", + "away_team_canonical_id": "team_mls_lag", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_mls_lumen_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260517_col_slc", + "sport": "MLS", + "season": "2026", + "date": "2026-05-16", + "time": "7:30p", + "home_team": "Salt Lake Real Salt Lake", + "away_team": "Colorado Colorado Rapids", + "home_team_abbrev": "SLC", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mls_slc", + "away_team_canonical_id": "team_mls_col", + "venue": "America First Field", + "stadium_canonical_id": "stadium_mls_america_first_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -89466,10 +75189,17 @@ "canonical_id": "game_mlb_2026_20260517_lad_laa_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-17T01:38:00Z", + "date": "2026-05-16", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "LAA", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_lad", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89477,10 +75207,53 @@ "canonical_id": "game_mlb_2026_20260517_sf_oak_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-17T01:40:00Z", + "date": "2026-05-16", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "San Francisco Giants", + "home_team_abbrev": "OAK", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_sf", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260517_dal_sj", + "sport": "MLS", + "season": "2026", + "date": "2026-05-16", + "time": "7:30p", + "home_team": "San Jose San Jose Earthquakes", + "away_team": "Dallas FC Dallas", + "home_team_abbrev": "SJ", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_mls_sj", + "away_team_canonical_id": "team_mls_dal", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_mls_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260517_cin_sd", + "sport": "MLS", + "season": "2026", + "date": "2026-05-16", + "time": "7:30p", + "home_team": "San Diego San Diego FC", + "away_team": "Cincinnati FC Cincinnati", + "home_team_abbrev": "SD", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mls_sd", + "away_team_canonical_id": "team_mls_cin", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -89488,10 +75261,35 @@ "canonical_id": "game_mlb_2026_20260517_mia_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-17T16:15:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-05-17", + "time": "12:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Miami Marlins", + "home_team_abbrev": "TB", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_mia", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260517_chi_min", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-17", + "time": "12:30p", + "home_team": "Minnesota Lynx", + "away_team": "Chicago Sky", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_min", + "away_team_canonical_id": "team_wnba_chi", + "venue": "Target Center", + "stadium_canonical_id": "stadium_wnba_target_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -89499,21 +75297,17 @@ "canonical_id": "game_mlb_2026_20260517_phi_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-17T17:35:00Z", + "date": "2026-05-17", + "time": "1:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "PIT", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_phi", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260517_bos_atl", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-17T17:35:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89521,10 +75315,35 @@ "canonical_id": "game_mlb_2026_20260517_bal_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-17T17:35:00Z", + "date": "2026-05-17", + "time": "1:35p", + "home_team": "Washington Nationals", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "WSN", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_bal", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260517_bos_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "1:35p", + "home_team": "Atlanta Braves", + "away_team": "Boston Red Sox", + "home_team_abbrev": "ATL", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_bos", + "venue": "Truist Park", + "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89532,21 +75351,17 @@ "canonical_id": "game_mlb_2026_20260517_tor_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-17T17:40:00Z", + "date": "2026-05-17", + "time": "1:40p", + "home_team": "Detroit Tigers", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "DET", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_tor", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260517_nyy_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-17T17:40:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89554,32 +75369,35 @@ "canonical_id": "game_mlb_2026_20260517_cin_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-17T17:40:00Z", + "date": "2026-05-17", + "time": "1:40p", + "home_team": "Cleveland Guardians", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_cin", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260517_tex_hou", + "canonical_id": "game_mlb_2026_20260517_nyy_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-17T18:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260517_mil_min", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-17T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_target_field", + "date": "2026-05-17", + "time": "1:40p", + "home_team": "New York Mets", + "away_team": "New York Yankees", + "home_team_abbrev": "NYM", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89587,10 +75405,53 @@ "canonical_id": "game_mlb_2026_20260517_chc_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-17T18:10:00Z", + "date": "2026-05-17", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Chicago Cubs", + "home_team_abbrev": "CHW", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_chc", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260517_tex_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "1:10p", + "home_team": "Houston Astros", + "away_team": "Texas Rangers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Minute Maid Park", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260517_mil_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-17", + "time": "1:10p", + "home_team": "Minnesota Twins", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_mil", + "venue": "Target Field", + "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89598,10 +75459,35 @@ "canonical_id": "game_mlb_2026_20260517_kc_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-17T18:15:00Z", + "date": "2026-05-17", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Kansas City Royals", + "home_team_abbrev": "STL", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_kc", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260517_lv_atl", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-17", + "time": "3p", + "home_team": "Atlanta Dream", + "away_team": "Las Vegas Aces", + "home_team_abbrev": "ATL", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_wnba_atl", + "away_team_canonical_id": "team_wnba_lv", + "venue": "Gateway Center Arena", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -89609,10 +75495,17 @@ "canonical_id": "game_mlb_2026_20260517_ari_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-17T19:10:00Z", + "date": "2026-05-17", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "COL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_ari", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89620,10 +75513,17 @@ "canonical_id": "game_mlb_2026_20260517_sf_oak_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-17T20:05:00Z", + "date": "2026-05-17", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "San Francisco Giants", + "home_team_abbrev": "OAK", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_sf", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89631,10 +75531,71 @@ "canonical_id": "game_mlb_2026_20260517_lad_laa_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-17T20:07:00Z", + "date": "2026-05-17", + "time": "1:07p", + "home_team": "Los Angeles Angels", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "LAA", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_lad", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260517_por_mia", + "sport": "MLS", + "season": "2026", + "date": "2026-05-17", + "time": "6p", + "home_team": "Miami Inter Miami", + "away_team": "Portland Portland Timbers", + "home_team_abbrev": "MIA", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_mls_mia", + "away_team_canonical_id": "team_mls_por", + "venue": "Miami Freedom Park", + "stadium_canonical_id": "stadium_mls_miami_freedom_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260517_ang_por", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-17", + "time": "3p", + "home_team": "Portland Portland Thorns", + "away_team": "Los Angeles Angel City FC", + "home_team_abbrev": "POR", + "away_team_abbrev": "ANG", + "home_team_canonical_id": "team_nwsl_por", + "away_team_canonical_id": "team_nwsl_ang", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_nwsl_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260517_sea_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-17", + "time": "6p", + "home_team": "Indiana Fever", + "away_team": "Seattle Storm", + "home_team_abbrev": "IND", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_sea", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -89642,21 +75603,53 @@ "canonical_id": "game_mlb_2026_20260517_sd_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-17T23:20:00Z", + "date": "2026-05-17", + "time": "4:20p", + "home_team": "Seattle Mariners", + "away_team": "San Diego Padres", + "home_team_abbrev": "SEA", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260518_cle_det", - "sport": "MLB", + "canonical_id": "game_mls_2026_20260518_lafc_nsh", + "sport": "MLS", "season": "2026", - "game_datetime_utc": "2026-05-18T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_comerica_park", + "date": "2026-05-17", + "time": "7p", + "home_team": "Nashville Nashville SC", + "away_team": "Los Angeles Los Angeles FC", + "home_team_abbrev": "NSH", + "away_team_abbrev": "LAFC", + "home_team_canonical_id": "team_mls_nsh", + "away_team_canonical_id": "team_mls_lafc", + "venue": "GEODIS Park", + "stadium_canonical_id": "stadium_mls_geodis_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260518_rgn_uta", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-17", + "time": "6p", + "home_team": "Utah Utah Royals", + "away_team": "Louisville Racing Louisville", + "home_team_abbrev": "UTA", + "away_team_abbrev": "RGN", + "home_team_canonical_id": "team_nwsl_uta", + "away_team_canonical_id": "team_nwsl_rgn", + "venue": "America First Field", + "stadium_canonical_id": "stadium_nwsl_america_first_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -89664,10 +75657,17 @@ "canonical_id": "game_mlb_2026_20260518_cin_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-18T22:40:00Z", + "date": "2026-05-18", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_cin", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89675,10 +75675,35 @@ "canonical_id": "game_mlb_2026_20260518_bal_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-18T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-05-18", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "TB", + "away_team_abbrev": "BAL", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_bal", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260518_cle_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "DET", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_cle", + "venue": "Comerica Park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89686,10 +75711,17 @@ "canonical_id": "game_mlb_2026_20260518_atl_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-18T22:40:00Z", + "date": "2026-05-18", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Atlanta Braves", + "home_team_abbrev": "MIA", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_atl", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89697,10 +75729,17 @@ "canonical_id": "game_mlb_2026_20260518_nym_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-18T22:45:00Z", + "date": "2026-05-18", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "New York Mets", + "home_team_abbrev": "WSN", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_nym", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89708,10 +75747,17 @@ "canonical_id": "game_mlb_2026_20260518_tor_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-18T23:05:00Z", + "date": "2026-05-18", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "NYY", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_tor", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89719,21 +75765,17 @@ "canonical_id": "game_mlb_2026_20260518_mil_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-18T23:40:00Z", + "date": "2026-05-18", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "CHC", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_mil", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260518_hou_min", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-18T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89741,10 +75783,53 @@ "canonical_id": "game_mlb_2026_20260518_bos_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-18T23:40:00Z", + "date": "2026-05-18", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Boston Red Sox", + "home_team_abbrev": "KC", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_bos", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260518_hou_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-18", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Houston Astros", + "home_team_abbrev": "MIN", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_hou", + "venue": "Target Field", + "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260519_was_dal", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-18", + "time": "7p", + "home_team": "Dallas Wings", + "away_team": "Washington Mystics", + "home_team_abbrev": "DAL", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_was", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -89752,10 +75837,17 @@ "canonical_id": "game_mlb_2026_20260519_tex_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-19T00:40:00Z", + "date": "2026-05-18", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Texas Rangers", + "home_team_abbrev": "COL", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_tex", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89763,10 +75855,17 @@ "canonical_id": "game_mlb_2026_20260519_oak_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-19T01:38:00Z", + "date": "2026-05-18", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Oakland Athletics", + "home_team_abbrev": "LAA", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_oak", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89774,10 +75873,17 @@ "canonical_id": "game_mlb_2026_20260519_sf_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-19T01:40:00Z", + "date": "2026-05-18", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "San Francisco Giants", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_sf", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89785,10 +75891,17 @@ "canonical_id": "game_mlb_2026_20260519_lad_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-19T01:40:00Z", + "date": "2026-05-18", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "SD", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_lad", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89796,10 +75909,17 @@ "canonical_id": "game_mlb_2026_20260519_chw_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-19T01:40:00Z", + "date": "2026-05-18", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Chicago White Sox", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89807,21 +75927,17 @@ "canonical_id": "game_mlb_2026_20260519_atl_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-19T20:10:00Z", + "date": "2026-05-19", + "time": "4:10p", + "home_team": "Miami Marlins", + "away_team": "Atlanta Braves", + "home_team_abbrev": "MIA", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_atl", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260519_cle_det", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-19T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89829,10 +75945,35 @@ "canonical_id": "game_mlb_2026_20260519_cin_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-19T22:40:00Z", + "date": "2026-05-19", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_cin", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260519_cle_det", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "DET", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_cle", + "venue": "Comerica Park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89840,10 +75981,17 @@ "canonical_id": "game_mlb_2026_20260519_bal_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-19T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-05-19", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "TB", + "away_team_abbrev": "BAL", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_bal", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89851,10 +75999,17 @@ "canonical_id": "game_mlb_2026_20260519_nym_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-19T22:45:00Z", + "date": "2026-05-19", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "New York Mets", + "home_team_abbrev": "WSN", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_nym", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89862,10 +76017,17 @@ "canonical_id": "game_mlb_2026_20260519_tor_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-19T23:05:00Z", + "date": "2026-05-19", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "NYY", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_tor", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89873,21 +76035,17 @@ "canonical_id": "game_mlb_2026_20260519_mil_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-19T23:40:00Z", + "date": "2026-05-19", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "CHC", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_mil", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260519_hou_min", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-19T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89895,10 +76053,35 @@ "canonical_id": "game_mlb_2026_20260519_bos_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-19T23:40:00Z", + "date": "2026-05-19", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Boston Red Sox", + "home_team_abbrev": "KC", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_bos", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260519_hou_min", + "sport": "MLB", + "season": "2026", + "date": "2026-05-19", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Houston Astros", + "home_team_abbrev": "MIN", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_hou", + "venue": "Target Field", + "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89906,10 +76089,17 @@ "canonical_id": "game_mlb_2026_20260519_pit_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-19T23:45:00Z", + "date": "2026-05-19", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "STL", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_pit", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89917,10 +76107,17 @@ "canonical_id": "game_mlb_2026_20260520_tex_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-20T00:40:00Z", + "date": "2026-05-19", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Texas Rangers", + "home_team_abbrev": "COL", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_tex", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89928,10 +76125,17 @@ "canonical_id": "game_mlb_2026_20260520_oak_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-20T01:38:00Z", + "date": "2026-05-19", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Oakland Athletics", + "home_team_abbrev": "LAA", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_oak", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89939,10 +76143,17 @@ "canonical_id": "game_mlb_2026_20260520_sf_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-20T01:40:00Z", + "date": "2026-05-19", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "San Francisco Giants", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_sf", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89950,10 +76161,17 @@ "canonical_id": "game_mlb_2026_20260520_lad_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-20T01:40:00Z", + "date": "2026-05-19", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "SD", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_lad", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89961,10 +76179,17 @@ "canonical_id": "game_mlb_2026_20260520_chw_sea_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-20T01:40:00Z", + "date": "2026-05-19", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Chicago White Sox", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89972,10 +76197,17 @@ "canonical_id": "game_mlb_2026_20260520_cin_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-20T17:05:00Z", + "date": "2026-05-20", + "time": "1:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_cin", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89983,10 +76215,17 @@ "canonical_id": "game_mlb_2026_20260520_bal_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-20T17:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-05-20", + "time": "1:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "TB", + "away_team_abbrev": "BAL", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_bal", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -89994,10 +76233,17 @@ "canonical_id": "game_mlb_2026_20260520_hou_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-20T17:40:00Z", + "date": "2026-05-20", + "time": "12:40p", + "home_team": "Minnesota Twins", + "away_team": "Houston Astros", + "home_team_abbrev": "MIN", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_hou", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90005,10 +76251,17 @@ "canonical_id": "game_mlb_2026_20260520_tex_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-20T19:10:00Z", + "date": "2026-05-20", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Texas Rangers", + "home_team_abbrev": "COL", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_tex", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90016,10 +76269,17 @@ "canonical_id": "game_mlb_2026_20260520_sf_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-20T19:40:00Z", + "date": "2026-05-20", + "time": "12:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "San Francisco Giants", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_sf", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90027,10 +76287,17 @@ "canonical_id": "game_mlb_2026_20260520_chw_sea_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-20T20:10:00Z", + "date": "2026-05-20", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Chicago White Sox", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90038,10 +76305,17 @@ "canonical_id": "game_mlb_2026_20260520_cle_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-20T22:40:00Z", + "date": "2026-05-20", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "DET", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_cle", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90049,10 +76323,17 @@ "canonical_id": "game_mlb_2026_20260520_atl_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-20T22:40:00Z", + "date": "2026-05-20", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Atlanta Braves", + "home_team_abbrev": "MIA", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_atl", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90060,10 +76341,17 @@ "canonical_id": "game_mlb_2026_20260520_nym_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-20T22:45:00Z", + "date": "2026-05-20", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "New York Mets", + "home_team_abbrev": "WSN", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_nym", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90071,21 +76359,17 @@ "canonical_id": "game_mlb_2026_20260520_tor_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-20T23:05:00Z", + "date": "2026-05-20", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "NYY", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_tor", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260520_mil_chc", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-20T23:40:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90093,10 +76377,35 @@ "canonical_id": "game_mlb_2026_20260520_bos_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-20T23:40:00Z", + "date": "2026-05-20", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Boston Red Sox", + "home_team_abbrev": "KC", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_bos", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260520_mil_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-20", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "CHC", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mil", + "venue": "Wrigley Field", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90104,10 +76413,35 @@ "canonical_id": "game_mlb_2026_20260520_pit_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-20T23:45:00Z", + "date": "2026-05-20", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "STL", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_pit", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260521_sdw_hou", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-20", + "time": "7p", + "home_team": "Houston Houston Dash", + "away_team": "San Diego San Diego Wave", + "home_team_abbrev": "HOU", + "away_team_abbrev": "SDW", + "home_team_canonical_id": "team_nwsl_hou", + "away_team_canonical_id": "team_nwsl_sdw", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -90115,10 +76449,35 @@ "canonical_id": "game_mlb_2026_20260521_lad_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-21T00:40:00Z", + "date": "2026-05-20", + "time": "5:40p", + "home_team": "San Diego Padres", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "SD", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_lad", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260521_dal_chi", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-20", + "time": "8p", + "home_team": "Chicago Sky", + "away_team": "Dallas Wings", + "home_team_abbrev": "CHI", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_wnba_chi", + "away_team_canonical_id": "team_wnba_dal", + "venue": "Wintrust Arena", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -90126,10 +76485,71 @@ "canonical_id": "game_mlb_2026_20260521_oak_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-21T01:38:00Z", + "date": "2026-05-20", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Oakland Athletics", + "home_team_abbrev": "LAA", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_oak", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260521_kcc_ang", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-20", + "time": "7p", + "home_team": "Los Angeles Angel City FC", + "away_team": "Kansas City Kansas City Current", + "home_team_abbrev": "ANG", + "away_team_abbrev": "KCC", + "home_team_canonical_id": "team_nwsl_ang", + "away_team_canonical_id": "team_nwsl_kcc", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_nwsl_bmo_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260521_bay_por", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-20", + "time": "7p", + "home_team": "Portland Portland Thorns", + "away_team": "San Francisco Bay FC", + "home_team_abbrev": "POR", + "away_team_abbrev": "BAY", + "home_team_canonical_id": "team_nwsl_por", + "away_team_canonical_id": "team_nwsl_bay", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_nwsl_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260521_con_sea", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-20", + "time": "7p", + "home_team": "Seattle Storm", + "away_team": "Connecticut Sun", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CON", + "home_team_canonical_id": "team_wnba_sea", + "away_team_canonical_id": "team_wnba_con", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -90137,10 +76557,17 @@ "canonical_id": "game_mlb_2026_20260521_cle_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-21T17:10:00Z", + "date": "2026-05-21", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "DET", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_cle", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90148,10 +76575,17 @@ "canonical_id": "game_mlb_2026_20260521_pit_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-21T17:15:00Z", + "date": "2026-05-21", + "time": "12:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "STL", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_pit", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90159,10 +76593,17 @@ "canonical_id": "game_mlb_2026_20260521_nym_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-21T20:05:00Z", + "date": "2026-05-21", + "time": "4:05p", + "home_team": "Washington Nationals", + "away_team": "New York Mets", + "home_team_abbrev": "WSN", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_nym", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90170,10 +76611,17 @@ "canonical_id": "game_mlb_2026_20260521_atl_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-21T22:40:00Z", + "date": "2026-05-21", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Atlanta Braves", + "home_team_abbrev": "MIA", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_atl", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90181,10 +76629,35 @@ "canonical_id": "game_mlb_2026_20260521_tor_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-21T23:05:00Z", + "date": "2026-05-21", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "NYY", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_tor", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260522_gsv_ny", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-21", + "time": "8p", + "home_team": "New York Liberty", + "away_team": "Golden State Valkyries", + "home_team_abbrev": "NY", + "away_team_abbrev": "GSV", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_gsv", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -90192,10 +76665,17 @@ "canonical_id": "game_mlb_2026_20260522_oak_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-22T01:38:00Z", + "date": "2026-05-21", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Oakland Athletics", + "home_team_abbrev": "LAA", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_oak", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90203,10 +76683,35 @@ "canonical_id": "game_mlb_2026_20260522_col_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-22T01:40:00Z", + "date": "2026-05-21", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Colorado Rockies", + "home_team_abbrev": "ARI", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_col", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260522_la_phx", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-21", + "time": "10p", + "home_team": "Phoenix Mercury", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "PHX", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_phx", + "away_team_canonical_id": "team_wnba_la", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -90214,10 +76719,17 @@ "canonical_id": "game_mlb_2026_20260522_hou_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-22T18:20:00Z", + "date": "2026-05-22", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Houston Astros", + "home_team_abbrev": "CHC", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_hou", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90225,10 +76737,17 @@ "canonical_id": "game_mlb_2026_20260522_stl_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-22T22:40:00Z", + "date": "2026-05-22", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "CIN", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_stl", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90236,21 +76755,17 @@ "canonical_id": "game_mlb_2026_20260522_cle_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-22T22:40:00Z", + "date": "2026-05-22", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_cle", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260522_tbr_nyy", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-22T23:05:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90258,10 +76773,35 @@ "canonical_id": "game_mlb_2026_20260522_det_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-22T23:05:00Z", + "date": "2026-05-22", + "time": "7:05p", + "home_team": "Baltimore Orioles", + "away_team": "Detroit Tigers", + "home_team_abbrev": "BAL", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_det", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260522_tbr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "NYY", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Yankee Stadium", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90269,21 +76809,17 @@ "canonical_id": "game_mlb_2026_20260522_pit_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-22T23:07:00Z", + "date": "2026-05-22", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "TOR", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_pit", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260522_nym_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-22T23:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90291,10 +76827,35 @@ "canonical_id": "game_mlb_2026_20260522_min_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-22T23:10:00Z", + "date": "2026-05-22", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Minnesota Twins", + "home_team_abbrev": "BOS", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_min", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260522_nym_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "7:10p", + "home_team": "Miami Marlins", + "away_team": "New York Mets", + "home_team_abbrev": "MIA", + "away_team_abbrev": "NYM", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_nym", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90302,21 +76863,53 @@ "canonical_id": "game_mlb_2026_20260522_wsn_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-22T23:15:00Z", + "date": "2026-05-22", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Washington Nationals", + "home_team_abbrev": "ATL", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260522_sea_kc", - "sport": "MLB", + "canonical_id": "game_wnba_2026_20260522_dal_atl", + "sport": "WNBA", "season": "2026", - "game_datetime_utc": "2026-05-22T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "date": "2026-05-22", + "time": "7:30p", + "home_team": "Atlanta Dream", + "away_team": "Dallas Wings", + "home_team_abbrev": "ATL", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_wnba_atl", + "away_team_canonical_id": "team_wnba_dal", + "venue": "Gateway Center Arena", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260522_gsv_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-22", + "time": "7:30p", + "home_team": "Indiana Fever", + "away_team": "Golden State Valkyries", + "home_team_abbrev": "IND", + "away_team_abbrev": "GSV", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_gsv", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -90324,10 +76917,53 @@ "canonical_id": "game_mlb_2026_20260522_lad_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-22T23:40:00Z", + "date": "2026-05-22", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "MIL", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_lad", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260522_sea_kc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-22", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Seattle Mariners", + "home_team_abbrev": "KC", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_kc", + "away_team_canonical_id": "team_mlb_sea", + "venue": "Kauffman Stadium", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260523_sea_bos", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-22", + "time": "8p", + "home_team": "Boston Boston Legacy FC", + "away_team": "Seattle Seattle Reign", + "home_team_abbrev": "BOS", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nwsl_bos", + "away_team_canonical_id": "team_nwsl_sea", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_nwsl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -90335,10 +76971,17 @@ "canonical_id": "game_mlb_2026_20260523_tex_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-23T01:38:00Z", + "date": "2026-05-22", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Texas Rangers", + "home_team_abbrev": "LAA", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_tex", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90346,10 +76989,17 @@ "canonical_id": "game_mlb_2026_20260523_oak_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-23T01:40:00Z", + "date": "2026-05-22", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Oakland Athletics", + "home_team_abbrev": "SD", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_oak", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90357,10 +77007,35 @@ "canonical_id": "game_mlb_2026_20260523_col_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-23T01:40:00Z", + "date": "2026-05-22", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Colorado Rockies", + "home_team_abbrev": "ARI", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_col", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260523_con_sea", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-22", + "time": "7p", + "home_team": "Seattle Storm", + "away_team": "Connecticut Sun", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CON", + "home_team_canonical_id": "team_wnba_sea", + "away_team_canonical_id": "team_wnba_con", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -90368,10 +77043,35 @@ "canonical_id": "game_mlb_2026_20260523_chw_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-23T02:15:00Z", + "date": "2026-05-22", + "time": "7:15p", + "home_team": "San Francisco Giants", + "away_team": "Chicago White Sox", + "home_team_abbrev": "SF", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_chw", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260523_min_chi", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-23", + "time": "12p", + "home_team": "Chicago Sky", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "CHI", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_chi", + "away_team_canonical_id": "team_wnba_min", + "venue": "Wintrust Arena", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -90379,10 +77079,17 @@ "canonical_id": "game_mlb_2026_20260523_tbr_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-23T17:35:00Z", + "date": "2026-05-23", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "NYY", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90390,10 +77097,35 @@ "canonical_id": "game_mlb_2026_20260523_hou_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-23T18:20:00Z", + "date": "2026-05-23", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Houston Astros", + "home_team_abbrev": "CHC", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_hou", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260523_aus_stl", + "sport": "MLS", + "season": "2026", + "date": "2026-05-23", + "time": "1:30p", + "home_team": "St. Louis St. Louis City SC", + "away_team": "Austin Austin FC", + "home_team_abbrev": "STL", + "away_team_abbrev": "AUS", + "home_team_canonical_id": "team_mls_stl", + "away_team_canonical_id": "team_mls_aus", + "venue": "CITYPARK", + "stadium_canonical_id": "stadium_mls_citypark", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -90401,10 +77133,35 @@ "canonical_id": "game_mlb_2026_20260523_pit_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-23T19:07:00Z", + "date": "2026-05-23", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "TOR", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_pit", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260523_ncc_rgn", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-23", + "time": "4p", + "home_team": "Louisville Racing Louisville", + "away_team": "North Carolina North Carolina Courage", + "home_team_abbrev": "RGN", + "away_team_abbrev": "NCC", + "home_team_canonical_id": "team_nwsl_rgn", + "away_team_canonical_id": "team_nwsl_ncc", + "venue": "Lynn Family Stadium", + "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -90412,10 +77169,17 @@ "canonical_id": "game_mlb_2026_20260523_det_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-23T20:05:00Z", + "date": "2026-05-23", + "time": "4:05p", + "home_team": "Baltimore Orioles", + "away_team": "Detroit Tigers", + "home_team_abbrev": "BAL", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_det", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90423,10 +77187,17 @@ "canonical_id": "game_mlb_2026_20260523_cle_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-23T20:05:00Z", + "date": "2026-05-23", + "time": "4:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_cle", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90434,32 +77205,17 @@ "canonical_id": "game_mlb_2026_20260523_chw_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-23T20:05:00Z", + "date": "2026-05-23", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Chicago White Sox", + "home_team_abbrev": "SF", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_chw", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260523_wsn_atl", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-23T20:10:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260523_sea_kc", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-23T20:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90467,10 +77223,35 @@ "canonical_id": "game_mlb_2026_20260523_nym_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-23T20:10:00Z", + "date": "2026-05-23", + "time": "4:10p", + "home_team": "Miami Marlins", + "away_team": "New York Mets", + "home_team_abbrev": "MIA", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_nym", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260523_sea_kc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "3:10p", + "home_team": "Kansas City Royals", + "away_team": "Seattle Mariners", + "home_team_abbrev": "KC", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_kc", + "away_team_canonical_id": "team_mlb_sea", + "venue": "Kauffman Stadium", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90478,10 +77259,53 @@ "canonical_id": "game_mlb_2026_20260523_min_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-23T20:10:00Z", + "date": "2026-05-23", + "time": "4:10p", + "home_team": "Boston Red Sox", + "away_team": "Minnesota Twins", + "home_team_abbrev": "BOS", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_min", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260523_wsn_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-23", + "time": "4:10p", + "home_team": "Atlanta Braves", + "away_team": "Washington Nationals", + "home_team_abbrev": "ATL", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "Truist Park", + "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260523_den_uta", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-23", + "time": "4:30p", + "home_team": "Utah Utah Royals", + "away_team": "Denver Denver Summit FC", + "home_team_abbrev": "UTA", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nwsl_uta", + "away_team_canonical_id": "team_nwsl_den", + "venue": "America First Field", + "stadium_canonical_id": "stadium_nwsl_america_first_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -90489,10 +77313,17 @@ "canonical_id": "game_mlb_2026_20260523_stl_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-23T23:15:00Z", + "date": "2026-05-23", + "time": "7:15p", + "home_team": "Cincinnati Reds", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "CIN", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_stl", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90500,10 +77331,233 @@ "canonical_id": "game_mlb_2026_20260523_lad_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-23T23:15:00Z", + "date": "2026-05-23", + "time": "6:15p", + "home_team": "Milwaukee Brewers", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "MIL", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_lad", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260523_orl_cin", + "sport": "MLS", + "season": "2026", + "date": "2026-05-23", + "time": "7:30p", + "home_team": "Cincinnati FC Cincinnati", + "away_team": "Orlando Orlando City", + "home_team_abbrev": "CIN", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_mls_cin", + "away_team_canonical_id": "team_mls_orl", + "venue": "TQL Stadium", + "stadium_canonical_id": "stadium_mls_tql_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260523_mtl_dc", + "sport": "MLS", + "season": "2026", + "date": "2026-05-23", + "time": "7:30p", + "home_team": "Washington D.C. United", + "away_team": "Montreal CF Montreal", + "home_team_abbrev": "DC", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_mls_dc", + "away_team_canonical_id": "team_mls_mtl", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_mls_audi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260523_ne_clt", + "sport": "MLS", + "season": "2026", + "date": "2026-05-23", + "time": "7:30p", + "home_team": "Charlotte Charlotte FC", + "away_team": "New England New England Revolution", + "home_team_abbrev": "CLT", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_mls_clt", + "away_team_canonical_id": "team_mls_ne", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260524_la_lv", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-23", + "time": "5p", + "home_team": "Las Vegas Aces", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "LV", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_la", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260524_nyc_nsh", + "sport": "MLS", + "season": "2026", + "date": "2026-05-23", + "time": "7:30p", + "home_team": "Nashville Nashville SC", + "away_team": "New York New York City FC", + "home_team_abbrev": "NSH", + "away_team_abbrev": "NYC", + "home_team_canonical_id": "team_mls_nsh", + "away_team_canonical_id": "team_mls_nyc", + "venue": "GEODIS Park", + "stadium_canonical_id": "stadium_mls_geodis_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260524_tor_chi", + "sport": "MLS", + "season": "2026", + "date": "2026-05-23", + "time": "7:30p", + "home_team": "Chicago Chicago Fire", + "away_team": "Toronto Toronto FC", + "home_team_abbrev": "CHI", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mls_chi", + "away_team_canonical_id": "team_mls_tor", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_mls_soldier_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260524_slc_min", + "sport": "MLS", + "season": "2026", + "date": "2026-05-23", + "time": "7:30p", + "home_team": "Minnesota Minnesota United", + "away_team": "Salt Lake Real Salt Lake", + "home_team_abbrev": "MIN", + "away_team_abbrev": "SLC", + "home_team_canonical_id": "team_mls_min", + "away_team_canonical_id": "team_mls_slc", + "venue": "Allianz Field", + "stadium_canonical_id": "stadium_mls_allianz_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260524_ny_skc", + "sport": "MLS", + "season": "2026", + "date": "2026-05-23", + "time": "7:30p", + "home_team": "Kansas City Sporting Kansas City", + "away_team": "New York New York Red Bulls", + "home_team_abbrev": "SKC", + "away_team_abbrev": "RB", + "home_team_canonical_id": "team_mls_skc", + "away_team_canonical_id": "team_mls_ny", + "venue": "Children's Mercy Park", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260524_ang_hou", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-23", + "time": "7:45p", + "home_team": "Houston Houston Dash", + "away_team": "Los Angeles Angel City FC", + "home_team_abbrev": "HOU", + "away_team_abbrev": "ANG", + "home_team_canonical_id": "team_nwsl_hou", + "away_team_canonical_id": "team_nwsl_ang", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260524_van_sd", + "sport": "MLS", + "season": "2026", + "date": "2026-05-23", + "time": "6:30p", + "home_team": "San Diego San Diego FC", + "away_team": "Vancouver Vancouver Whitecaps", + "home_team_abbrev": "SD", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_mls_sd", + "away_team_canonical_id": "team_mls_van", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260524_dal_col", + "sport": "MLS", + "season": "2026", + "date": "2026-05-23", + "time": "7:30p", + "home_team": "Colorado Colorado Rapids", + "away_team": "Dallas FC Dallas", + "home_team_abbrev": "COL", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_mls_col", + "away_team_canonical_id": "team_mls_dal", + "venue": "Dick's Sporting Goods Park", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260524_sj_por", + "sport": "MLS", + "season": "2026", + "date": "2026-05-23", + "time": "6:30p", + "home_team": "Portland Portland Timbers", + "away_team": "San Jose San Jose Earthquakes", + "home_team_abbrev": "POR", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_mls_por", + "away_team_canonical_id": "team_mls_sj", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_mls_providence_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -90511,10 +77565,17 @@ "canonical_id": "game_mlb_2026_20260524_oak_sd_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-24T01:40:00Z", + "date": "2026-05-23", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Oakland Athletics", + "home_team_abbrev": "SD", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_oak", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90522,10 +77583,17 @@ "canonical_id": "game_mlb_2026_20260524_tex_laa_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-24T02:05:00Z", + "date": "2026-05-23", + "time": "7:05p", + "home_team": "Los Angeles Angels", + "away_team": "Texas Rangers", + "home_team_abbrev": "LAA", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_tex", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90533,10 +77601,35 @@ "canonical_id": "game_mlb_2026_20260524_col_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-24T02:10:00Z", + "date": "2026-05-23", + "time": "7:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Colorado Rockies", + "home_team_abbrev": "ARI", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_col", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260524_hou_lag", + "sport": "MLS", + "season": "2026", + "date": "2026-05-23", + "time": "7:30p", + "home_team": "Los Angeles LA Galaxy", + "away_team": "Houston Houston Dynamo", + "home_team_abbrev": "LAG", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mls_lag", + "away_team_canonical_id": "team_mls_hou", + "venue": "Dignity Health Sports Park", + "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -90544,43 +77637,35 @@ "canonical_id": "game_mlb_2026_20260524_pit_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-24T16:15:00Z", + "date": "2026-05-24", + "time": "12:10p", + "home_team": "Toronto Blue Jays", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "TOR", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_pit", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260524_tbr_nyy", - "sport": "MLB", + "canonical_id": "game_nwsl_2026_20260524_por_kcc", + "sport": "NWSL", "season": "2026", - "game_datetime_utc": "2026-05-24T17:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260524_min_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-24T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260524_det_bal", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-24T17:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "date": "2026-05-24", + "time": "12p", + "home_team": "Kansas City Kansas City Current", + "away_team": "Portland Portland Thorns", + "home_team_abbrev": "KCC", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nwsl_kcc", + "away_team_canonical_id": "team_nwsl_por", + "venue": "CPKC Stadium", + "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -90588,21 +77673,71 @@ "canonical_id": "game_mlb_2026_20260524_cle_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-24T17:35:00Z", + "date": "2026-05-24", + "time": "1:35p", + "home_team": "Philadelphia Phillies", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_cle", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260524_stl_cin", + "canonical_id": "game_mlb_2026_20260524_det_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-24T17:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "date": "2026-05-24", + "time": "1:35p", + "home_team": "Baltimore Orioles", + "away_team": "Detroit Tigers", + "home_team_abbrev": "BAL", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_det", + "venue": "Oriole Park at Camden Yards", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260524_min_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "1:35p", + "home_team": "Boston Red Sox", + "away_team": "Minnesota Twins", + "home_team_abbrev": "BOS", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_min", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260524_tbr_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "NYY", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Yankee Stadium", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90610,21 +77745,35 @@ "canonical_id": "game_mlb_2026_20260524_nym_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-24T17:40:00Z", + "date": "2026-05-24", + "time": "1:40p", + "home_team": "Miami Marlins", + "away_team": "New York Mets", + "home_team_abbrev": "MIA", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_nym", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260524_sea_kc", + "canonical_id": "game_mlb_2026_20260524_stl_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-24T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "date": "2026-05-24", + "time": "1:40p", + "home_team": "Cincinnati Reds", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "CIN", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_stl", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90632,10 +77781,35 @@ "canonical_id": "game_mlb_2026_20260524_lad_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-24T18:10:00Z", + "date": "2026-05-24", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "MIL", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_lad", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260524_sea_kc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "1:10p", + "home_team": "Kansas City Royals", + "away_team": "Seattle Mariners", + "home_team_abbrev": "KC", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_kc", + "away_team_canonical_id": "team_mlb_sea", + "venue": "Kauffman Stadium", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90643,10 +77817,53 @@ "canonical_id": "game_mlb_2026_20260524_hou_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-24T18:20:00Z", + "date": "2026-05-24", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Houston Astros", + "home_team_abbrev": "CHC", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_hou", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260524_phx_atl", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-24", + "time": "3p", + "home_team": "Atlanta Dream", + "away_team": "Phoenix Mercury", + "home_team_abbrev": "ATL", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_wnba_atl", + "away_team_canonical_id": "team_wnba_phx", + "venue": "Gateway Center Arena", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260524_dal_ny", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-24", + "time": "3:30p", + "home_team": "New York Liberty", + "away_team": "Dallas Wings", + "home_team_abbrev": "NY", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_dal", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -90654,32 +77871,17 @@ "canonical_id": "game_mlb_2026_20260524_chw_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-24T20:05:00Z", + "date": "2026-05-24", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Chicago White Sox", + "home_team_abbrev": "SF", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_chw", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260524_wsn_atl", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-24T20:10:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260524_oak_sd_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-24T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90687,10 +77889,143 @@ "canonical_id": "game_mlb_2026_20260524_col_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-24T20:10:00Z", + "date": "2026-05-24", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Colorado Rockies", + "home_team_abbrev": "ARI", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_col", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260524_wsn_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "4:10p", + "home_team": "Atlanta Braves", + "away_team": "Washington Nationals", + "home_team_abbrev": "ATL", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "Truist Park", + "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260524_oak_sd_2", + "sport": "MLB", + "season": "2026", + "date": "2026-05-24", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Oakland Athletics", + "home_team_abbrev": "SD", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_sd", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Petco Park", + "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260524_atl_clb", + "sport": "MLS", + "season": "2026", + "date": "2026-05-24", + "time": "5p", + "home_team": "Columbus Columbus Crew", + "away_team": "Atlanta Atlanta United", + "home_team_abbrev": "CLB", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mls_clb", + "away_team_canonical_id": "team_mls_atl", + "venue": "Lower.com Field", + "stadium_canonical_id": "stadium_mls_lowercom_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260524_chi_bay", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-24", + "time": "2p", + "home_team": "San Francisco Bay FC", + "away_team": "Chicago Chicago Red Stars", + "home_team_abbrev": "BAY", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nwsl_bay", + "away_team_canonical_id": "team_nwsl_chi", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_nwsl_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260524_was_sea", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-24", + "time": "3p", + "home_team": "Seattle Storm", + "away_team": "Washington Mystics", + "home_team_abbrev": "SEA", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_wnba_sea", + "away_team_canonical_id": "team_wnba_was", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260524_phi_mia", + "sport": "MLS", + "season": "2026", + "date": "2026-05-24", + "time": "7p", + "home_team": "Miami Inter Miami", + "away_team": "Philadelphia Philadelphia Union", + "home_team_abbrev": "MIA", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mls_mia", + "away_team_canonical_id": "team_mls_phi", + "venue": "Miami Freedom Park", + "stadium_canonical_id": "stadium_mls_miami_freedom_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260524_orl_sdw", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-24", + "time": "4p", + "home_team": "San Diego San Diego Wave", + "away_team": "Orlando Orlando Pride", + "home_team_abbrev": "SDW", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nwsl_sdw", + "away_team_canonical_id": "team_nwsl_orl", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -90698,10 +78033,35 @@ "canonical_id": "game_mlb_2026_20260524_tex_laa_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-24T23:20:00Z", + "date": "2026-05-24", + "time": "4:20p", + "home_team": "Los Angeles Angels", + "away_team": "Texas Rangers", + "home_team_abbrev": "LAA", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_tex", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260525_sea_lafc", + "sport": "MLS", + "season": "2026", + "date": "2026-05-24", + "time": "6p", + "home_team": "Los Angeles Los Angeles FC", + "away_team": "Seattle Seattle Sounders", + "home_team_abbrev": "LAFC", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mls_lafc", + "away_team_canonical_id": "team_mls_sea", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -90709,10 +78069,17 @@ "canonical_id": "game_mlb_2026_20260525_tbr_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-25T17:35:00Z", + "date": "2026-05-25", + "time": "1:35p", + "home_team": "Baltimore Orioles", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "BAL", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90720,10 +78087,17 @@ "canonical_id": "game_mlb_2026_20260525_stl_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-25T18:10:00Z", + "date": "2026-05-25", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "MIL", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_stl", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90731,10 +78105,17 @@ "canonical_id": "game_mlb_2026_20260525_min_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-25T18:10:00Z", + "date": "2026-05-25", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Minnesota Twins", + "home_team_abbrev": "CHW", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_min", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90742,10 +78123,17 @@ "canonical_id": "game_mlb_2026_20260525_nyy_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-25T19:40:00Z", + "date": "2026-05-25", + "time": "2:40p", + "home_team": "Kansas City Royals", + "away_team": "New York Yankees", + "home_team_abbrev": "KC", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90753,10 +78141,17 @@ "canonical_id": "game_mlb_2026_20260525_cin_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-25T20:10:00Z", + "date": "2026-05-25", + "time": "4:10p", + "home_team": "New York Mets", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "NYM", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_cin", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90764,10 +78159,17 @@ "canonical_id": "game_mlb_2026_20260525_ari_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-25T21:05:00Z", + "date": "2026-05-25", + "time": "2:05p", + "home_team": "San Francisco Giants", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "SF", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_ari", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90775,10 +78177,17 @@ "canonical_id": "game_mlb_2026_20260525_wsn_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-25T22:10:00Z", + "date": "2026-05-25", + "time": "6:10p", + "home_team": "Cleveland Guardians", + "away_team": "Washington Nationals", + "home_team_abbrev": "CLE", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90786,10 +78195,17 @@ "canonical_id": "game_mlb_2026_20260525_phi_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-25T22:40:00Z", + "date": "2026-05-25", + "time": "3:40p", + "home_team": "San Diego Padres", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "SD", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_phi", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90797,10 +78213,17 @@ "canonical_id": "game_mlb_2026_20260525_chc_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-25T22:40:00Z", + "date": "2026-05-25", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Chicago Cubs", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_chc", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90808,10 +78231,17 @@ "canonical_id": "game_mlb_2026_20260525_hou_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-25T23:05:00Z", + "date": "2026-05-25", + "time": "6:05p", + "home_team": "Texas Rangers", + "away_team": "Houston Astros", + "home_team_abbrev": "TEX", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_hou", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90819,10 +78249,17 @@ "canonical_id": "game_mlb_2026_20260525_mia_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-25T23:07:00Z", + "date": "2026-05-25", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Miami Marlins", + "home_team_abbrev": "TOR", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_mia", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90830,10 +78267,17 @@ "canonical_id": "game_mlb_2026_20260526_col_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-26T01:10:00Z", + "date": "2026-05-25", + "time": "6:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Colorado Rockies", + "home_team_abbrev": "LAD", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_col", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90841,10 +78285,35 @@ "canonical_id": "game_mlb_2026_20260526_sea_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-26T01:40:00Z", + "date": "2026-05-25", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Seattle Mariners", + "home_team_abbrev": "OAK", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_sea", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260526_con_gsv", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-25", + "time": "7p", + "home_team": "Golden State Valkyries", + "away_team": "Connecticut Sun", + "home_team_abbrev": "GSV", + "away_team_abbrev": "CON", + "home_team_canonical_id": "team_wnba_gsv", + "away_team_canonical_id": "team_wnba_con", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_wnba_chase_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -90852,10 +78321,17 @@ "canonical_id": "game_mlb_2026_20260526_wsn_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-26T22:10:00Z", + "date": "2026-05-26", + "time": "6:10p", + "home_team": "Cleveland Guardians", + "away_team": "Washington Nationals", + "home_team_abbrev": "CLE", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90863,10 +78339,17 @@ "canonical_id": "game_mlb_2026_20260526_tbr_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-26T22:35:00Z", + "date": "2026-05-26", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "BAL", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90874,10 +78357,17 @@ "canonical_id": "game_mlb_2026_20260526_laa_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-26T22:40:00Z", + "date": "2026-05-26", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "DET", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_laa", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90885,10 +78375,17 @@ "canonical_id": "game_mlb_2026_20260526_chc_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-26T22:40:00Z", + "date": "2026-05-26", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Chicago Cubs", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_chc", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90896,10 +78393,17 @@ "canonical_id": "game_mlb_2026_20260526_atl_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-26T22:45:00Z", + "date": "2026-05-26", + "time": "6:45p", + "home_team": "Boston Red Sox", + "away_team": "Atlanta Braves", + "home_team_abbrev": "BOS", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_atl", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90907,10 +78411,17 @@ "canonical_id": "game_mlb_2026_20260526_mia_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-26T23:07:00Z", + "date": "2026-05-26", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Miami Marlins", + "home_team_abbrev": "TOR", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_mia", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90918,32 +78429,17 @@ "canonical_id": "game_mlb_2026_20260526_cin_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-26T23:10:00Z", + "date": "2026-05-26", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "NYM", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_cin", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260526_stl_mil", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-26T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260526_nyy_kc", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-26T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90951,10 +78447,53 @@ "canonical_id": "game_mlb_2026_20260526_min_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-26T23:40:00Z", + "date": "2026-05-26", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Minnesota Twins", + "home_team_abbrev": "CHW", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_min", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260526_nyy_kc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "New York Yankees", + "home_team_abbrev": "KC", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_kc", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Kauffman Stadium", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260526_stl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-05-26", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "MIL", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_stl", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90962,10 +78501,17 @@ "canonical_id": "game_mlb_2026_20260527_hou_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-27T00:05:00Z", + "date": "2026-05-26", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Houston Astros", + "home_team_abbrev": "TEX", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_hou", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90973,10 +78519,17 @@ "canonical_id": "game_mlb_2026_20260527_sea_oak_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-27T01:40:00Z", + "date": "2026-05-26", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Seattle Mariners", + "home_team_abbrev": "OAK", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_sea", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90984,10 +78537,17 @@ "canonical_id": "game_mlb_2026_20260527_phi_sd_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-27T01:40:00Z", + "date": "2026-05-26", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "SD", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_phi", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -90995,10 +78555,17 @@ "canonical_id": "game_mlb_2026_20260527_ari_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-27T01:45:00Z", + "date": "2026-05-26", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "SF", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_ari", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91006,10 +78573,17 @@ "canonical_id": "game_mlb_2026_20260527_col_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-27T02:10:00Z", + "date": "2026-05-26", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Colorado Rockies", + "home_team_abbrev": "LAD", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_col", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91017,10 +78591,17 @@ "canonical_id": "game_mlb_2026_20260527_mia_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-27T17:07:00Z", + "date": "2026-05-27", + "time": "1:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Miami Marlins", + "home_team_abbrev": "TOR", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_mia", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91028,10 +78609,17 @@ "canonical_id": "game_mlb_2026_20260527_wsn_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-27T17:10:00Z", + "date": "2026-05-27", + "time": "1:10p", + "home_team": "Cleveland Guardians", + "away_team": "Washington Nationals", + "home_team_abbrev": "CLE", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91039,10 +78627,17 @@ "canonical_id": "game_mlb_2026_20260527_stl_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-27T17:40:00Z", + "date": "2026-05-27", + "time": "12:40p", + "home_team": "Milwaukee Brewers", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "MIL", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_stl", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91050,10 +78645,17 @@ "canonical_id": "game_mlb_2026_20260527_sea_oak_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-27T19:05:00Z", + "date": "2026-05-27", + "time": "12:05p", + "home_team": "Oakland Athletics", + "away_team": "Seattle Mariners", + "home_team_abbrev": "OAK", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_sea", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91061,10 +78663,17 @@ "canonical_id": "game_mlb_2026_20260527_ari_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-27T19:45:00Z", + "date": "2026-05-27", + "time": "12:45p", + "home_team": "San Francisco Giants", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "SF", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_ari", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91072,10 +78681,17 @@ "canonical_id": "game_mlb_2026_20260527_phi_sd_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-27T20:10:00Z", + "date": "2026-05-27", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "SD", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_phi", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91083,10 +78699,17 @@ "canonical_id": "game_mlb_2026_20260527_tbr_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-27T22:35:00Z", + "date": "2026-05-27", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "BAL", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91094,10 +78717,17 @@ "canonical_id": "game_mlb_2026_20260527_laa_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-27T22:40:00Z", + "date": "2026-05-27", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "DET", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_laa", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91105,10 +78735,17 @@ "canonical_id": "game_mlb_2026_20260527_chc_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-27T22:40:00Z", + "date": "2026-05-27", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Chicago Cubs", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_chc", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91116,10 +78753,35 @@ "canonical_id": "game_mlb_2026_20260527_atl_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-27T22:45:00Z", + "date": "2026-05-27", + "time": "6:45p", + "home_team": "Boston Red Sox", + "away_team": "Atlanta Braves", + "home_team_abbrev": "BOS", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_atl", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260527_phx_ny", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-27", + "time": "7p", + "home_team": "New York Liberty", + "away_team": "Phoenix Mercury", + "home_team_abbrev": "NY", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_phx", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -91127,21 +78789,17 @@ "canonical_id": "game_mlb_2026_20260527_cin_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-27T23:10:00Z", + "date": "2026-05-27", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "NYM", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_cin", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260527_nyy_kc", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-27T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91149,10 +78807,35 @@ "canonical_id": "game_mlb_2026_20260527_min_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-27T23:40:00Z", + "date": "2026-05-27", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Minnesota Twins", + "home_team_abbrev": "CHW", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_min", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260527_nyy_kc", + "sport": "MLB", + "season": "2026", + "date": "2026-05-27", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "New York Yankees", + "home_team_abbrev": "KC", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_kc", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Kauffman Stadium", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91160,10 +78843,53 @@ "canonical_id": "game_mlb_2026_20260528_hou_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-28T00:05:00Z", + "date": "2026-05-27", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Houston Astros", + "home_team_abbrev": "TEX", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_hou", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260528_atl_min", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-27", + "time": "8p", + "home_team": "Minnesota Lynx", + "away_team": "Atlanta Dream", + "home_team_abbrev": "MIN", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_wnba_min", + "away_team_canonical_id": "team_wnba_atl", + "venue": "Target Center", + "stadium_canonical_id": "stadium_wnba_target_center", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260528_was_sea", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-27", + "time": "7p", + "home_team": "Seattle Storm", + "away_team": "Washington Mystics", + "home_team_abbrev": "SEA", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_wnba_sea", + "away_team_canonical_id": "team_wnba_was", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -91171,10 +78897,17 @@ "canonical_id": "game_mlb_2026_20260528_col_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-28T02:10:00Z", + "date": "2026-05-27", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Colorado Rockies", + "home_team_abbrev": "LAD", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_col", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91182,10 +78915,17 @@ "canonical_id": "game_mlb_2026_20260528_laa_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-28T17:10:00Z", + "date": "2026-05-28", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "DET", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_laa", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91193,10 +78933,17 @@ "canonical_id": "game_mlb_2026_20260528_min_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-28T18:10:00Z", + "date": "2026-05-28", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Minnesota Twins", + "home_team_abbrev": "CHW", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_min", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91204,10 +78951,17 @@ "canonical_id": "game_mlb_2026_20260528_atl_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-28T20:10:00Z", + "date": "2026-05-28", + "time": "4:10p", + "home_team": "Boston Red Sox", + "away_team": "Atlanta Braves", + "home_team_abbrev": "BOS", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_atl", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91215,10 +78969,17 @@ "canonical_id": "game_mlb_2026_20260528_tor_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-28T22:35:00Z", + "date": "2026-05-28", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "BAL", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_tor", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91226,10 +78987,35 @@ "canonical_id": "game_mlb_2026_20260528_chc_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-28T22:40:00Z", + "date": "2026-05-28", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Chicago Cubs", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_chc", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260529_lv_dal", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-28", + "time": "7p", + "home_team": "Dallas Wings", + "away_team": "Las Vegas Aces", + "home_team_abbrev": "DAL", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_lv", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -91237,10 +79023,35 @@ "canonical_id": "game_mlb_2026_20260529_hou_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-29T00:05:00Z", + "date": "2026-05-28", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Houston Astros", + "home_team_abbrev": "TEX", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_hou", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260529_ind_gsv", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-28", + "time": "7p", + "home_team": "Golden State Valkyries", + "away_team": "Indiana Fever", + "home_team_abbrev": "GSV", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_wnba_gsv", + "away_team_canonical_id": "team_wnba_ind", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_wnba_chase_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -91248,10 +79059,17 @@ "canonical_id": "game_mlb_2026_20260529_min_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-29T22:40:00Z", + "date": "2026-05-29", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Minnesota Twins", + "home_team_abbrev": "PIT", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_min", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91259,10 +79077,17 @@ "canonical_id": "game_mlb_2026_20260529_atl_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-29T22:40:00Z", + "date": "2026-05-29", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Atlanta Braves", + "home_team_abbrev": "CIN", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_atl", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91270,10 +79095,35 @@ "canonical_id": "game_mlb_2026_20260529_sd_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-29T22:45:00Z", + "date": "2026-05-29", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "San Diego Padres", + "home_team_abbrev": "WSN", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_sd", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260529_bay_orl", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-29", + "time": "7p", + "home_team": "Orlando Orlando Pride", + "away_team": "San Francisco Bay FC", + "home_team_abbrev": "ORL", + "away_team_abbrev": "BAY", + "home_team_canonical_id": "team_nwsl_orl", + "away_team_canonical_id": "team_nwsl_bay", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -91281,32 +79131,17 @@ "canonical_id": "game_mlb_2026_20260529_tor_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-29T23:05:00Z", + "date": "2026-05-29", + "time": "7:05p", + "home_team": "Baltimore Orioles", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "BAL", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_tor", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260529_mia_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-29T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260529_laa_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-29T23:10:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91314,10 +79149,107 @@ "canonical_id": "game_mlb_2026_20260529_bos_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-29T23:10:00Z", + "date": "2026-05-29", + "time": "7:10p", + "home_team": "Cleveland Guardians", + "away_team": "Boston Red Sox", + "home_team_abbrev": "CLE", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_bos", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260529_laa_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "7:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "TB", + "away_team_abbrev": "LAA", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_laa", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260529_mia_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Miami Marlins", + "home_team_abbrev": "NYM", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mia", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260529_phx_ny", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-29", + "time": "7:30p", + "home_team": "New York Liberty", + "away_team": "Phoenix Mercury", + "home_team_abbrev": "NY", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_phx", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260529_min_chi", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-29", + "time": "6:30p", + "home_team": "Chicago Sky", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "CHI", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_chi", + "away_team_canonical_id": "team_wnba_min", + "venue": "Wintrust Arena", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260529_la_was", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-29", + "time": "7:30p", + "home_team": "Washington Mystics", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "WAS", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_was", + "away_team_canonical_id": "team_wnba_la", + "venue": "Entertainment & Sports Arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -91325,10 +79257,35 @@ "canonical_id": "game_mlb_2026_20260529_det_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-29T23:40:00Z", + "date": "2026-05-29", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Detroit Tigers", + "home_team_abbrev": "CHW", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_det", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260530_den_rgn", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-29", + "time": "8p", + "home_team": "Louisville Racing Louisville", + "away_team": "Denver Denver Summit FC", + "home_team_abbrev": "RGN", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nwsl_rgn", + "away_team_canonical_id": "team_nwsl_den", + "venue": "Lynn Family Stadium", + "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -91336,10 +79293,17 @@ "canonical_id": "game_mlb_2026_20260530_kc_tex_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-30T00:05:00Z", + "date": "2026-05-29", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Kansas City Royals", + "home_team_abbrev": "TEX", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_kc", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91347,10 +79311,17 @@ "canonical_id": "game_mlb_2026_20260530_mil_hou_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-30T00:10:00Z", + "date": "2026-05-29", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_mil", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91358,10 +79329,17 @@ "canonical_id": "game_mlb_2026_20260530_chc_stl_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-30T00:15:00Z", + "date": "2026-05-29", + "time": "7:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Chicago Cubs", + "home_team_abbrev": "STL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_chc", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91369,10 +79347,17 @@ "canonical_id": "game_mlb_2026_20260530_sf_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-30T00:40:00Z", + "date": "2026-05-29", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "San Francisco Giants", + "home_team_abbrev": "COL", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_sf", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91380,21 +79365,17 @@ "canonical_id": "game_mlb_2026_20260530_nyy_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-30T01:40:00Z", + "date": "2026-05-29", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "New York Yankees", + "home_team_abbrev": "OAK", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260530_phi_lad", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-30T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91402,10 +79383,53 @@ "canonical_id": "game_mlb_2026_20260530_ari_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-30T02:10:00Z", + "date": "2026-05-29", + "time": "7:10p", + "home_team": "Seattle Mariners", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "SEA", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260530_phi_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-05-29", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "LAD", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_phi", + "venue": "Dodger Stadium", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260530_bos_kcc", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-30", + "time": "12:30p", + "home_team": "Kansas City Kansas City Current", + "away_team": "Boston Boston Legacy FC", + "home_team_abbrev": "KCC", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nwsl_kcc", + "away_team_canonical_id": "team_nwsl_bos", + "venue": "CPKC Stadium", + "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -91413,32 +79437,35 @@ "canonical_id": "game_mlb_2026_20260530_det_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-30T18:10:00Z", + "date": "2026-05-30", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Detroit Tigers", + "home_team_abbrev": "CHW", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_det", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260530_tor_bal", - "sport": "MLB", + "canonical_id": "game_nwsl_2026_20260530_uta_por", + "sport": "NWSL", "season": "2026", - "game_datetime_utc": "2026-05-30T20:05:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260530_sd_wsn", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-30T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_nationals_park", + "date": "2026-05-30", + "time": "1p", + "home_team": "Portland Portland Thorns", + "away_team": "Utah Utah Royals", + "home_team_abbrev": "POR", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nwsl_por", + "away_team_canonical_id": "team_nwsl_uta", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_nwsl_providence_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -91446,10 +79473,35 @@ "canonical_id": "game_mlb_2026_20260530_min_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-30T20:05:00Z", + "date": "2026-05-30", + "time": "4:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "Minnesota Twins", + "home_team_abbrev": "PIT", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_min", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260530_sd_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "4:05p", + "home_team": "Washington Nationals", + "away_team": "San Diego Padres", + "home_team_abbrev": "WSN", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sd", + "venue": "Nationals Park", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91457,43 +79509,35 @@ "canonical_id": "game_mlb_2026_20260530_kc_tex_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-30T20:05:00Z", + "date": "2026-05-30", + "time": "3:05p", + "home_team": "Texas Rangers", + "away_team": "Kansas City Royals", + "home_team_abbrev": "TEX", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_kc", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260530_mil_hou_2", + "canonical_id": "game_mlb_2026_20260530_tor_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-30T20:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260530_mia_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-30T20:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260530_laa_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-30T20:10:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "date": "2026-05-30", + "time": "4:05p", + "home_team": "Baltimore Orioles", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "BAL", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tor", + "venue": "Oriole Park at Camden Yards", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91501,21 +79545,107 @@ "canonical_id": "game_mlb_2026_20260530_bos_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-30T20:10:00Z", + "date": "2026-05-30", + "time": "4:10p", + "home_team": "Cleveland Guardians", + "away_team": "Boston Red Sox", + "home_team_abbrev": "CLE", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_bos", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260530_chc_stl_2", + "canonical_id": "game_mlb_2026_20260530_mil_hou_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-30T23:15:00Z", - "home_team_canonical_id": "team_mlb_stl", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_busch_stadium", + "date": "2026-05-30", + "time": "3:10p", + "home_team": "Houston Astros", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_mil", + "venue": "Minute Maid Park", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260530_mia_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "4:10p", + "home_team": "New York Mets", + "away_team": "Miami Marlins", + "home_team_abbrev": "NYM", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mia", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260530_laa_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "4:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "TB", + "away_team_abbrev": "LAA", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_laa", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260530_la_con", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-30", + "time": "6p", + "home_team": "Connecticut Sun", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "CON", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_con", + "away_team_canonical_id": "team_wnba_la", + "venue": "Mohegan Sun Arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260530_sea_wsh", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-30", + "time": "6:30p", + "home_team": "Washington Washington Spirit", + "away_team": "Seattle Seattle Reign", + "home_team_abbrev": "WSH", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nwsl_wsh", + "away_team_canonical_id": "team_nwsl_sea", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_nwsl_audi_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -91523,10 +79653,35 @@ "canonical_id": "game_mlb_2026_20260530_atl_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-30T23:15:00Z", + "date": "2026-05-30", + "time": "7:15p", + "home_team": "Cincinnati Reds", + "away_team": "Atlanta Braves", + "home_team_abbrev": "CIN", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_atl", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260530_chc_stl_2", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "6:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Chicago Cubs", + "home_team_abbrev": "STL", + "away_team_abbrev": "CHC", + "home_team_canonical_id": "team_mlb_stl", + "away_team_canonical_id": "team_mlb_chc", + "venue": "Busch Stadium", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91534,10 +79689,17 @@ "canonical_id": "game_mlb_2026_20260531_sf_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-31T01:10:00Z", + "date": "2026-05-30", + "time": "7:10p", + "home_team": "Colorado Rockies", + "away_team": "San Francisco Giants", + "home_team_abbrev": "COL", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_sf", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91545,21 +79707,17 @@ "canonical_id": "game_mlb_2026_20260531_nyy_oak_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-31T02:05:00Z", + "date": "2026-05-30", + "time": "7:05p", + "home_team": "Oakland Athletics", + "away_team": "New York Yankees", + "home_team_abbrev": "OAK", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260531_phi_lad_1", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-31T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91567,10 +79725,35 @@ "canonical_id": "game_mlb_2026_20260531_ari_sea_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-31T02:10:00Z", + "date": "2026-05-30", + "time": "7:10p", + "home_team": "Seattle Mariners", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "SEA", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260531_phi_lad_1", + "sport": "MLB", + "season": "2026", + "date": "2026-05-30", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "LAD", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_phi", + "venue": "Dodger Stadium", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91578,10 +79761,35 @@ "canonical_id": "game_mlb_2026_20260531_tor_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-31T16:15:00Z", + "date": "2026-05-31", + "time": "12:10p", + "home_team": "Baltimore Orioles", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "BAL", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_tor", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260531_sdw_chi", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-31", + "time": "12p", + "home_team": "Chicago Chicago Red Stars", + "away_team": "San Diego San Diego Wave", + "home_team_abbrev": "CHI", + "away_team_abbrev": "SDW", + "home_team_canonical_id": "team_nwsl_chi", + "away_team_canonical_id": "team_nwsl_sdw", + "venue": "Northwestern Medicine Field at Martin Stadium", + "stadium_canonical_id": "stadium_nwsl_northwestern_medicine_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -91589,10 +79797,17 @@ "canonical_id": "game_mlb_2026_20260531_sd_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-31T17:35:00Z", + "date": "2026-05-31", + "time": "1:35p", + "home_team": "Washington Nationals", + "away_team": "San Diego Padres", + "home_team_abbrev": "WSN", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_sd", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91600,32 +79815,17 @@ "canonical_id": "game_mlb_2026_20260531_min_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-31T17:35:00Z", + "date": "2026-05-31", + "time": "1:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "Minnesota Twins", + "home_team_abbrev": "PIT", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_min", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260531_mia_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-31T17:40:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260531_laa_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-31T17:40:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91633,10 +79833,17 @@ "canonical_id": "game_mlb_2026_20260531_bos_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-31T17:40:00Z", + "date": "2026-05-31", + "time": "1:40p", + "home_team": "Cleveland Guardians", + "away_team": "Boston Red Sox", + "home_team_abbrev": "CLE", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_bos", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91644,10 +79851,53 @@ "canonical_id": "game_mlb_2026_20260531_atl_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-31T17:40:00Z", + "date": "2026-05-31", + "time": "1:40p", + "home_team": "Cincinnati Reds", + "away_team": "Atlanta Braves", + "home_team_abbrev": "CIN", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_atl", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260531_mia_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "1:40p", + "home_team": "New York Mets", + "away_team": "Miami Marlins", + "home_team_abbrev": "NYM", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mia", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260531_laa_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "1:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "TB", + "away_team_abbrev": "LAA", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_laa", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91655,10 +79905,17 @@ "canonical_id": "game_mlb_2026_20260531_mil_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-31T18:10:00Z", + "date": "2026-05-31", + "time": "1:10p", + "home_team": "Houston Astros", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_mil", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91666,10 +79923,17 @@ "canonical_id": "game_mlb_2026_20260531_det_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-31T18:10:00Z", + "date": "2026-05-31", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Detroit Tigers", + "home_team_abbrev": "CHW", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_det", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91677,10 +79941,35 @@ "canonical_id": "game_mlb_2026_20260531_kc_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-31T18:35:00Z", + "date": "2026-05-31", + "time": "1:35p", + "home_team": "Texas Rangers", + "away_team": "Kansas City Royals", + "home_team_abbrev": "TEX", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_kc", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260531_hou_njy", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-31", + "time": "3p", + "home_team": "New Jersey NJ/NY Gotham FC", + "away_team": "Houston Houston Dash", + "home_team_abbrev": "NJY", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nwsl_njy", + "away_team_canonical_id": "team_nwsl_hou", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_nwsl_red_bull_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -91688,10 +79977,35 @@ "canonical_id": "game_mlb_2026_20260531_sf_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-31T19:10:00Z", + "date": "2026-05-31", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "San Francisco Giants", + "home_team_abbrev": "COL", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_sf", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260531_lv_gsv", + "sport": "WNBA", + "season": "2026", + "date": "2026-05-31", + "time": "12:30p", + "home_team": "Golden State Valkyries", + "away_team": "Las Vegas Aces", + "home_team_abbrev": "GSV", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_wnba_gsv", + "away_team_canonical_id": "team_wnba_lv", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_wnba_chase_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -91699,21 +80013,17 @@ "canonical_id": "game_mlb_2026_20260531_nyy_oak_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-31T20:05:00Z", + "date": "2026-05-31", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "New York Yankees", + "home_team_abbrev": "OAK", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260531_phi_lad_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-05-31T20:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91721,10 +80031,53 @@ "canonical_id": "game_mlb_2026_20260531_ari_sea_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-31T20:10:00Z", + "date": "2026-05-31", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "SEA", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_ari", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260531_phi_lad_2", + "sport": "MLB", + "season": "2026", + "date": "2026-05-31", + "time": "1:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "LAD", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_phi", + "venue": "Dodger Stadium", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260531_ncc_ang", + "sport": "NWSL", + "season": "2026", + "date": "2026-05-31", + "time": "4p", + "home_team": "Los Angeles Angel City FC", + "away_team": "North Carolina North Carolina Courage", + "home_team_abbrev": "ANG", + "away_team_abbrev": "NCC", + "home_team_canonical_id": "team_nwsl_ang", + "away_team_canonical_id": "team_nwsl_ncc", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_nwsl_bmo_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -91732,10 +80085,17 @@ "canonical_id": "game_mlb_2026_20260531_chc_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-05-31T23:20:00Z", + "date": "2026-05-31", + "time": "6:20p", + "home_team": "St. Louis Cardinals", + "away_team": "Chicago Cubs", + "home_team_abbrev": "STL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_chc", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91743,10 +80103,17 @@ "canonical_id": "game_mlb_2026_20260601_det_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-01T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-06-01", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Detroit Tigers", + "home_team_abbrev": "TB", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_det", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91754,10 +80121,17 @@ "canonical_id": "game_mlb_2026_20260601_mia_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-01T22:45:00Z", + "date": "2026-06-01", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Miami Marlins", + "home_team_abbrev": "WSN", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_mia", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91765,21 +80139,17 @@ "canonical_id": "game_mlb_2026_20260601_kc_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-01T23:10:00Z", + "date": "2026-06-01", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "Kansas City Royals", + "home_team_abbrev": "CIN", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_kc", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260601_sf_mil", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-01T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91787,10 +80157,35 @@ "canonical_id": "game_mlb_2026_20260601_chw_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-01T23:40:00Z", + "date": "2026-06-01", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Chicago White Sox", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_chw", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260601_sf_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-01", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "San Francisco Giants", + "home_team_abbrev": "MIL", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sf", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91798,10 +80193,35 @@ "canonical_id": "game_mlb_2026_20260601_tex_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-01T23:45:00Z", + "date": "2026-06-01", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Texas Rangers", + "home_team_abbrev": "STL", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_tex", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260602_sea_dal", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-01", + "time": "7p", + "home_team": "Dallas Wings", + "away_team": "Seattle Storm", + "home_team_abbrev": "DAL", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_sea", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -91809,10 +80229,17 @@ "canonical_id": "game_mlb_2026_20260602_col_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-02T01:38:00Z", + "date": "2026-06-01", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Colorado Rockies", + "home_team_abbrev": "LAA", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_col", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91820,10 +80247,17 @@ "canonical_id": "game_mlb_2026_20260602_nym_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-02T01:40:00Z", + "date": "2026-06-01", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "New York Mets", + "home_team_abbrev": "SEA", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91831,10 +80265,35 @@ "canonical_id": "game_mlb_2026_20260602_lad_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-02T01:40:00Z", + "date": "2026-06-01", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_lad", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260602_min_phx", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-01", + "time": "10p", + "home_team": "Phoenix Mercury", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "PHX", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_phx", + "away_team_canonical_id": "team_wnba_min", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -91842,10 +80301,17 @@ "canonical_id": "game_mlb_2026_20260602_sd_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-02T22:40:00Z", + "date": "2026-06-02", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "San Diego Padres", + "home_team_abbrev": "PHI", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_sd", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91853,21 +80319,17 @@ "canonical_id": "game_mlb_2026_20260602_det_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-02T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-06-02", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Detroit Tigers", + "home_team_abbrev": "TB", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_det", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260602_mia_wsn", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-02T22:45:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91875,10 +80337,35 @@ "canonical_id": "game_mlb_2026_20260602_bal_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-02T22:45:00Z", + "date": "2026-06-02", + "time": "6:45p", + "home_team": "Boston Red Sox", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "BOS", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_bal", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260602_mia_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Miami Marlins", + "home_team_abbrev": "WSN", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_mia", + "venue": "Nationals Park", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91886,10 +80373,17 @@ "canonical_id": "game_mlb_2026_20260602_cle_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-02T23:05:00Z", + "date": "2026-06-02", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "NYY", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_cle", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91897,10 +80391,17 @@ "canonical_id": "game_mlb_2026_20260602_kc_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-02T23:10:00Z", + "date": "2026-06-02", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "Kansas City Royals", + "home_team_abbrev": "CIN", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_kc", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91908,21 +80409,35 @@ "canonical_id": "game_mlb_2026_20260602_tor_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-02T23:15:00Z", + "date": "2026-06-02", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "ATL", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_tor", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260602_sf_mil", - "sport": "MLB", + "canonical_id": "game_wnba_2026_20260602_con_atl", + "sport": "WNBA", "season": "2026", - "game_datetime_utc": "2026-06-02T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "date": "2026-06-02", + "time": "7:30p", + "home_team": "Atlanta Dream", + "away_team": "Connecticut Sun", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CON", + "home_team_canonical_id": "team_wnba_atl", + "away_team_canonical_id": "team_wnba_con", + "venue": "Gateway Center Arena", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -91930,10 +80445,35 @@ "canonical_id": "game_mlb_2026_20260602_chw_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-02T23:40:00Z", + "date": "2026-06-02", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Chicago White Sox", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_chw", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260602_sf_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "San Francisco Giants", + "home_team_abbrev": "MIL", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sf", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91941,10 +80481,35 @@ "canonical_id": "game_mlb_2026_20260602_tex_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-02T23:45:00Z", + "date": "2026-06-02", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Texas Rangers", + "home_team_abbrev": "STL", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_tex", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260603_chi_was", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-02", + "time": "8p", + "home_team": "Washington Mystics", + "away_team": "Chicago Sky", + "home_team_abbrev": "WAS", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_was", + "away_team_canonical_id": "team_wnba_chi", + "venue": "Entertainment & Sports Arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -91952,10 +80517,17 @@ "canonical_id": "game_mlb_2026_20260603_oak_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-03T00:05:00Z", + "date": "2026-06-02", + "time": "7:05p", + "home_team": "Chicago Cubs", + "away_team": "Oakland Athletics", + "home_team_abbrev": "CHC", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_oak", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91963,10 +80535,17 @@ "canonical_id": "game_mlb_2026_20260603_pit_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-03T00:10:00Z", + "date": "2026-06-02", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "HOU", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_pit", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91974,21 +80553,17 @@ "canonical_id": "game_mlb_2026_20260603_col_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-03T01:38:00Z", + "date": "2026-06-02", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Colorado Rockies", + "home_team_abbrev": "LAA", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_col", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260603_nym_sea_1", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-03T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -91996,10 +80571,53 @@ "canonical_id": "game_mlb_2026_20260603_lad_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-03T01:40:00Z", + "date": "2026-06-02", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_lad", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260603_nym_sea_1", + "sport": "MLB", + "season": "2026", + "date": "2026-06-02", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "New York Mets", + "home_team_abbrev": "SEA", + "away_team_abbrev": "NYM", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_nym", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260603_lv_la", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-02", + "time": "7p", + "home_team": "Los Angeles Sparks", + "away_team": "Las Vegas Aces", + "home_team_abbrev": "LA", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_wnba_la", + "away_team_canonical_id": "team_wnba_lv", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -92007,10 +80625,17 @@ "canonical_id": "game_mlb_2026_20260603_mia_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-03T17:05:00Z", + "date": "2026-06-03", + "time": "1:05p", + "home_team": "Washington Nationals", + "away_team": "Miami Marlins", + "home_team_abbrev": "WSN", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_mia", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92018,10 +80643,17 @@ "canonical_id": "game_mlb_2026_20260603_det_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-03T17:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-06-03", + "time": "1:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Detroit Tigers", + "home_team_abbrev": "TB", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_det", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92029,10 +80661,17 @@ "canonical_id": "game_mlb_2026_20260603_chw_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-03T17:40:00Z", + "date": "2026-06-03", + "time": "12:40p", + "home_team": "Minnesota Twins", + "away_team": "Chicago White Sox", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_chw", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92040,10 +80679,17 @@ "canonical_id": "game_mlb_2026_20260603_nym_sea_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-03T19:40:00Z", + "date": "2026-06-03", + "time": "12:40p", + "home_team": "Seattle Mariners", + "away_team": "New York Mets", + "home_team_abbrev": "SEA", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92051,10 +80697,17 @@ "canonical_id": "game_mlb_2026_20260603_sd_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-03T22:40:00Z", + "date": "2026-06-03", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "San Diego Padres", + "home_team_abbrev": "PHI", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_sd", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92062,10 +80715,17 @@ "canonical_id": "game_mlb_2026_20260603_bal_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-03T22:45:00Z", + "date": "2026-06-03", + "time": "6:45p", + "home_team": "Boston Red Sox", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "BOS", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_bal", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92073,10 +80733,17 @@ "canonical_id": "game_mlb_2026_20260603_cle_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-03T23:05:00Z", + "date": "2026-06-03", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "NYY", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_cle", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92084,10 +80751,17 @@ "canonical_id": "game_mlb_2026_20260603_kc_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-03T23:10:00Z", + "date": "2026-06-03", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "Kansas City Royals", + "home_team_abbrev": "CIN", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_kc", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92095,10 +80769,17 @@ "canonical_id": "game_mlb_2026_20260603_tor_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-03T23:15:00Z", + "date": "2026-06-03", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "ATL", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_tor", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92106,10 +80787,17 @@ "canonical_id": "game_mlb_2026_20260603_sf_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-03T23:40:00Z", + "date": "2026-06-03", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "San Francisco Giants", + "home_team_abbrev": "MIL", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_sf", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92117,10 +80805,17 @@ "canonical_id": "game_mlb_2026_20260603_tex_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-03T23:45:00Z", + "date": "2026-06-03", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Texas Rangers", + "home_team_abbrev": "STL", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_tex", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92128,10 +80823,17 @@ "canonical_id": "game_mlb_2026_20260604_oak_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-04T00:05:00Z", + "date": "2026-06-03", + "time": "7:05p", + "home_team": "Chicago Cubs", + "away_team": "Oakland Athletics", + "home_team_abbrev": "CHC", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_oak", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92139,10 +80841,17 @@ "canonical_id": "game_mlb_2026_20260604_pit_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-04T00:10:00Z", + "date": "2026-06-03", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "HOU", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_pit", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92150,10 +80859,17 @@ "canonical_id": "game_mlb_2026_20260604_col_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-04T01:38:00Z", + "date": "2026-06-03", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Colorado Rockies", + "home_team_abbrev": "LAA", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_col", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92161,10 +80877,35 @@ "canonical_id": "game_mlb_2026_20260604_lad_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-04T01:40:00Z", + "date": "2026-06-03", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_lad", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260604_phx_sea", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-03", + "time": "7p", + "home_team": "Seattle Storm", + "away_team": "Phoenix Mercury", + "home_team_abbrev": "SEA", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_wnba_sea", + "away_team_canonical_id": "team_wnba_phx", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -92172,10 +80913,17 @@ "canonical_id": "game_mlb_2026_20260604_sd_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-04T17:05:00Z", + "date": "2026-06-04", + "time": "1:05p", + "home_team": "Philadelphia Phillies", + "away_team": "San Diego Padres", + "home_team_abbrev": "PHI", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_sd", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92183,10 +80931,17 @@ "canonical_id": "game_mlb_2026_20260604_cle_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-04T17:35:00Z", + "date": "2026-06-04", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "NYY", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_cle", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92194,10 +80949,17 @@ "canonical_id": "game_mlb_2026_20260604_bal_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-04T17:35:00Z", + "date": "2026-06-04", + "time": "1:35p", + "home_team": "Boston Red Sox", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "BOS", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_bal", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92205,10 +80967,35 @@ "canonical_id": "game_mlb_2026_20260604_sf_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-04T18:10:00Z", + "date": "2026-06-04", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "San Francisco Giants", + "home_team_abbrev": "MIL", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_sf", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260604_atl_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-04", + "time": "7p", + "home_team": "Indiana Fever", + "away_team": "Atlanta Dream", + "home_team_abbrev": "IND", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_atl", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -92216,10 +81003,17 @@ "canonical_id": "game_mlb_2026_20260604_tor_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-04T23:15:00Z", + "date": "2026-06-04", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "ATL", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_tor", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92227,10 +81021,17 @@ "canonical_id": "game_mlb_2026_20260604_kc_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-04T23:40:00Z", + "date": "2026-06-04", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Kansas City Royals", + "home_team_abbrev": "MIN", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_kc", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92238,10 +81039,17 @@ "canonical_id": "game_mlb_2026_20260605_oak_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-05T00:05:00Z", + "date": "2026-06-04", + "time": "7:05p", + "home_team": "Chicago Cubs", + "away_team": "Oakland Athletics", + "home_team_abbrev": "CHC", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_oak", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92249,10 +81057,35 @@ "canonical_id": "game_mlb_2026_20260605_pit_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-05T00:10:00Z", + "date": "2026-06-04", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "HOU", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_pit", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260605_gsv_min", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-04", + "time": "8p", + "home_team": "Minnesota Lynx", + "away_team": "Golden State Valkyries", + "home_team_abbrev": "MIN", + "away_team_abbrev": "GSV", + "home_team_canonical_id": "team_wnba_min", + "away_team_canonical_id": "team_wnba_gsv", + "venue": "Target Center", + "stadium_canonical_id": "stadium_wnba_target_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -92260,10 +81093,17 @@ "canonical_id": "game_mlb_2026_20260605_lad_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-05T01:40:00Z", + "date": "2026-06-04", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_lad", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92271,10 +81111,17 @@ "canonical_id": "game_mlb_2026_20260605_sf_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-05T18:20:00Z", + "date": "2026-06-05", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "San Francisco Giants", + "home_team_abbrev": "CHC", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_sf", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92282,10 +81129,17 @@ "canonical_id": "game_mlb_2026_20260605_sea_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-05T22:40:00Z", + "date": "2026-06-05", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Seattle Mariners", + "home_team_abbrev": "DET", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_sea", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92293,10 +81147,17 @@ "canonical_id": "game_mlb_2026_20260605_chw_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-05T22:40:00Z", + "date": "2026-06-05", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Chicago White Sox", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_chw", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92304,10 +81165,17 @@ "canonical_id": "game_mlb_2026_20260605_bos_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-05T23:05:00Z", + "date": "2026-06-05", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Boston Red Sox", + "home_team_abbrev": "NYY", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_bos", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92315,10 +81183,17 @@ "canonical_id": "game_mlb_2026_20260605_bal_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-05T23:07:00Z", + "date": "2026-06-05", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_bal", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92326,10 +81201,17 @@ "canonical_id": "game_mlb_2026_20260605_tbr_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-05T23:10:00Z", + "date": "2026-06-05", + "time": "7:10p", + "home_team": "Miami Marlins", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "MIA", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92337,10 +81219,35 @@ "canonical_id": "game_mlb_2026_20260605_pit_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-05T23:15:00Z", + "date": "2026-06-05", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "ATL", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_pit", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260605_con_chi", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-05", + "time": "6:30p", + "home_team": "Chicago Sky", + "away_team": "Connecticut Sun", + "home_team_abbrev": "CHI", + "away_team_abbrev": "CON", + "home_team_canonical_id": "team_wnba_chi", + "away_team_canonical_id": "team_wnba_con", + "venue": "Wintrust Arena", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -92348,10 +81255,17 @@ "canonical_id": "game_mlb_2026_20260606_cle_tex_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-06T00:05:00Z", + "date": "2026-06-05", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "TEX", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_cle", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92359,10 +81273,17 @@ "canonical_id": "game_mlb_2026_20260606_oak_hou_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-06T00:10:00Z", + "date": "2026-06-05", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Oakland Athletics", + "home_team_abbrev": "HOU", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_oak", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92370,10 +81291,17 @@ "canonical_id": "game_mlb_2026_20260606_kc_min_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-06T00:10:00Z", + "date": "2026-06-05", + "time": "7:10p", + "home_team": "Minnesota Twins", + "away_team": "Kansas City Royals", + "home_team_abbrev": "MIN", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_kc", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92381,10 +81309,17 @@ "canonical_id": "game_mlb_2026_20260606_cin_stl_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-06T00:15:00Z", + "date": "2026-06-05", + "time": "7:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "STL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_cin", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92392,10 +81327,17 @@ "canonical_id": "game_mlb_2026_20260606_mil_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-06T00:40:00Z", + "date": "2026-06-05", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "COL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_mil", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92403,10 +81345,17 @@ "canonical_id": "game_mlb_2026_20260606_wsn_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-06T01:40:00Z", + "date": "2026-06-05", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Washington Nationals", + "home_team_abbrev": "ARI", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92414,10 +81363,35 @@ "canonical_id": "game_mlb_2026_20260606_nym_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-06T01:40:00Z", + "date": "2026-06-05", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "New York Mets", + "home_team_abbrev": "SD", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_nym", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260606_dal_la", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-05", + "time": "7p", + "home_team": "Los Angeles Sparks", + "away_team": "Dallas Wings", + "home_team_abbrev": "LA", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_wnba_la", + "away_team_canonical_id": "team_wnba_dal", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -92425,10 +81399,35 @@ "canonical_id": "game_mlb_2026_20260606_laa_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-06T02:10:00Z", + "date": "2026-06-05", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "LAD", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_laa", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260606_sea_min", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-06", + "time": "12p", + "home_team": "Minnesota Lynx", + "away_team": "Seattle Storm", + "home_team_abbrev": "MIN", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_wnba_min", + "away_team_canonical_id": "team_wnba_sea", + "venue": "Target Center", + "stadium_canonical_id": "stadium_wnba_target_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -92436,10 +81435,17 @@ "canonical_id": "game_mlb_2026_20260606_sea_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-06T17:10:00Z", + "date": "2026-06-06", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Seattle Mariners", + "home_team_abbrev": "DET", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_sea", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92447,10 +81453,17 @@ "canonical_id": "game_mlb_2026_20260606_kc_min_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-06T18:10:00Z", + "date": "2026-06-06", + "time": "1:10p", + "home_team": "Minnesota Twins", + "away_team": "Kansas City Royals", + "home_team_abbrev": "MIN", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_kc", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92458,10 +81471,17 @@ "canonical_id": "game_mlb_2026_20260606_cin_stl_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-06T18:15:00Z", + "date": "2026-06-06", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "STL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_cin", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92469,10 +81489,35 @@ "canonical_id": "game_mlb_2026_20260606_sf_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-06T18:20:00Z", + "date": "2026-06-06", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "San Francisco Giants", + "home_team_abbrev": "CHC", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_sf", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260606_gsv_lv", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-06", + "time": "12p", + "home_team": "Las Vegas Aces", + "away_team": "Golden State Valkyries", + "home_team_abbrev": "LV", + "away_team_abbrev": "GSV", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_gsv", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -92480,10 +81525,17 @@ "canonical_id": "game_mlb_2026_20260606_bal_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-06T19:07:00Z", + "date": "2026-06-06", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_bal", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92491,10 +81543,17 @@ "canonical_id": "game_mlb_2026_20260606_chw_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-06T20:05:00Z", + "date": "2026-06-06", + "time": "4:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Chicago White Sox", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_chw", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92502,32 +81561,17 @@ "canonical_id": "game_mlb_2026_20260606_wsn_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-06T20:10:00Z", + "date": "2026-06-06", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Washington Nationals", + "home_team_abbrev": "ARI", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260606_tbr_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-06T20:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260606_pit_atl", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-06T20:10:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92535,21 +81579,71 @@ "canonical_id": "game_mlb_2026_20260606_oak_hou_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-06T20:10:00Z", + "date": "2026-06-06", + "time": "3:10p", + "home_team": "Houston Astros", + "away_team": "Oakland Athletics", + "home_team_abbrev": "HOU", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_oak", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260606_cle_tex_2", + "canonical_id": "game_mlb_2026_20260606_tbr_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-06T23:35:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_globe_life_field", + "date": "2026-06-06", + "time": "4:10p", + "home_team": "Miami Marlins", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "MIA", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260606_pit_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "4:10p", + "home_team": "Atlanta Braves", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "ATL", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_pit", + "venue": "Truist Park", + "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260606_was_atl", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-06", + "time": "6p", + "home_team": "Atlanta Dream", + "away_team": "Washington Mystics", + "home_team_abbrev": "ATL", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_wnba_atl", + "away_team_canonical_id": "team_wnba_was", + "venue": "Gateway Center Arena", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -92557,10 +81651,53 @@ "canonical_id": "game_mlb_2026_20260606_bos_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-06T23:35:00Z", + "date": "2026-06-06", + "time": "7:35p", + "home_team": "New York Yankees", + "away_team": "Boston Red Sox", + "home_team_abbrev": "NYY", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_bos", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260606_cle_tex_2", + "sport": "MLB", + "season": "2026", + "date": "2026-06-06", + "time": "6:35p", + "home_team": "Texas Rangers", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "TEX", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_cle", + "venue": "Globe Life Field", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260607_ind_ny", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-06", + "time": "8p", + "home_team": "New York Liberty", + "away_team": "Indiana Fever", + "home_team_abbrev": "NY", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_ind", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -92568,21 +81705,17 @@ "canonical_id": "game_mlb_2026_20260607_mil_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-07T01:10:00Z", + "date": "2026-06-06", + "time": "7:10p", + "home_team": "Colorado Rockies", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "COL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_mil", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260607_nym_sd_1", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-07T02:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92590,32 +81723,35 @@ "canonical_id": "game_mlb_2026_20260607_laa_lad_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-07T02:10:00Z", + "date": "2026-06-06", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "LAD", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_laa", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260607_pit_atl", + "canonical_id": "game_mlb_2026_20260607_nym_sd_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-07T17:35:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260607_chw_phi", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-07T17:35:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "date": "2026-06-06", + "time": "7:10p", + "home_team": "San Diego Padres", + "away_team": "New York Mets", + "home_team_abbrev": "SD", + "away_team_abbrev": "NYM", + "home_team_canonical_id": "team_mlb_sd", + "away_team_canonical_id": "team_mlb_nym", + "venue": "Petco Park", + "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92623,10 +81759,53 @@ "canonical_id": "game_mlb_2026_20260607_bos_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-07T17:35:00Z", + "date": "2026-06-07", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Boston Red Sox", + "home_team_abbrev": "NYY", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_bos", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260607_pit_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "1:35p", + "home_team": "Atlanta Braves", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "ATL", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_pit", + "venue": "Truist Park", + "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260607_chw_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-07", + "time": "1:35p", + "home_team": "Philadelphia Phillies", + "away_team": "Chicago White Sox", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CHW", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_chw", + "venue": "Citizens Bank Park", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92634,10 +81813,17 @@ "canonical_id": "game_mlb_2026_20260607_bal_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-07T17:37:00Z", + "date": "2026-06-07", + "time": "1:37p", + "home_team": "Toronto Blue Jays", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_bal", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92645,10 +81831,17 @@ "canonical_id": "game_mlb_2026_20260607_tbr_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-07T17:40:00Z", + "date": "2026-06-07", + "time": "1:40p", + "home_team": "Miami Marlins", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "MIA", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92656,10 +81849,17 @@ "canonical_id": "game_mlb_2026_20260607_sea_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-07T17:40:00Z", + "date": "2026-06-07", + "time": "1:40p", + "home_team": "Detroit Tigers", + "away_team": "Seattle Mariners", + "home_team_abbrev": "DET", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_sea", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92667,10 +81867,17 @@ "canonical_id": "game_mlb_2026_20260607_oak_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-07T18:10:00Z", + "date": "2026-06-07", + "time": "1:10p", + "home_team": "Houston Astros", + "away_team": "Oakland Athletics", + "home_team_abbrev": "HOU", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_oak", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92678,10 +81885,17 @@ "canonical_id": "game_mlb_2026_20260607_kc_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-07T18:10:00Z", + "date": "2026-06-07", + "time": "1:10p", + "home_team": "Minnesota Twins", + "away_team": "Kansas City Royals", + "home_team_abbrev": "MIN", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_kc", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92689,10 +81903,17 @@ "canonical_id": "game_mlb_2026_20260607_cin_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-07T18:15:00Z", + "date": "2026-06-07", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "STL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_cin", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92700,10 +81921,17 @@ "canonical_id": "game_mlb_2026_20260607_cle_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-07T18:35:00Z", + "date": "2026-06-07", + "time": "1:35p", + "home_team": "Texas Rangers", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "TEX", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_cle", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92711,10 +81939,17 @@ "canonical_id": "game_mlb_2026_20260607_mil_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-07T19:10:00Z", + "date": "2026-06-07", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "COL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_mil", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92722,10 +81957,17 @@ "canonical_id": "game_mlb_2026_20260607_wsn_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-07T19:15:00Z", + "date": "2026-06-07", + "time": "12:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Washington Nationals", + "home_team_abbrev": "ARI", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92733,10 +81975,17 @@ "canonical_id": "game_mlb_2026_20260607_nym_sd_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-07T20:10:00Z", + "date": "2026-06-07", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "New York Mets", + "home_team_abbrev": "SD", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_nym", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92744,10 +81993,17 @@ "canonical_id": "game_mlb_2026_20260607_laa_lad_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-07T20:10:00Z", + "date": "2026-06-07", + "time": "1:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "LAD", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_laa", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92755,10 +82011,17 @@ "canonical_id": "game_mlb_2026_20260608_sf_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-08T00:20:00Z", + "date": "2026-06-07", + "time": "7:20p", + "home_team": "Chicago Cubs", + "away_team": "San Francisco Giants", + "home_team_abbrev": "CHC", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_sf", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92766,21 +82029,17 @@ "canonical_id": "game_mlb_2026_20260608_sea_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-08T22:35:00Z", + "date": "2026-06-08", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Seattle Mariners", + "home_team_abbrev": "BAL", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_sea", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260608_nyy_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-08T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92788,10 +82047,53 @@ "canonical_id": "game_mlb_2026_20260608_bos_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-08T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-06-08", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Boston Red Sox", + "home_team_abbrev": "TB", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_bos", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260608_nyy_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-08", + "time": "6:40p", + "home_team": "Cleveland Guardians", + "away_team": "New York Yankees", + "home_team_abbrev": "CLE", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260608_ny_con", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-08", + "time": "7p", + "home_team": "Connecticut Sun", + "away_team": "New York Liberty", + "home_team_abbrev": "CON", + "away_team_abbrev": "NY", + "home_team_canonical_id": "team_wnba_con", + "away_team_canonical_id": "team_wnba_ny", + "venue": "Mohegan Sun Arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -92799,10 +82101,35 @@ "canonical_id": "game_mlb_2026_20260608_phi_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-08T23:07:00Z", + "date": "2026-06-08", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "TOR", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_phi", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260609_ind_was", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-08", + "time": "8p", + "home_team": "Washington Mystics", + "away_team": "Indiana Fever", + "home_team_abbrev": "WAS", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_wnba_was", + "away_team_canonical_id": "team_wnba_ind", + "venue": "Entertainment & Sports Arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -92810,10 +82137,17 @@ "canonical_id": "game_mlb_2026_20260609_hou_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-09T01:38:00Z", + "date": "2026-06-08", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Houston Astros", + "home_team_abbrev": "LAA", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_hou", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92821,10 +82155,17 @@ "canonical_id": "game_mlb_2026_20260609_cin_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-09T01:40:00Z", + "date": "2026-06-08", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "SD", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_cin", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92832,10 +82173,35 @@ "canonical_id": "game_mlb_2026_20260609_wsn_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-09T01:45:00Z", + "date": "2026-06-08", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Washington Nationals", + "home_team_abbrev": "SF", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260609_sea_lv", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-08", + "time": "7p", + "home_team": "Las Vegas Aces", + "away_team": "Seattle Storm", + "home_team_abbrev": "LV", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_sea", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -92843,10 +82209,17 @@ "canonical_id": "game_mlb_2026_20260609_mil_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-09T02:05:00Z", + "date": "2026-06-08", + "time": "7:05p", + "home_team": "Oakland Athletics", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "OAK", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_mil", + "venue": "Las Vegas Ballpark", "stadium_canonical_id": "stadium_mlb_las_vegas_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92854,10 +82227,17 @@ "canonical_id": "game_mlb_2026_20260609_sea_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-09T22:35:00Z", + "date": "2026-06-09", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Seattle Mariners", + "home_team_abbrev": "BAL", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_sea", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92865,10 +82245,17 @@ "canonical_id": "game_mlb_2026_20260609_nyy_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-09T22:40:00Z", + "date": "2026-06-09", + "time": "6:40p", + "home_team": "Cleveland Guardians", + "away_team": "New York Yankees", + "home_team_abbrev": "CLE", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92876,21 +82263,17 @@ "canonical_id": "game_mlb_2026_20260609_min_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-09T22:40:00Z", + "date": "2026-06-09", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Minnesota Twins", + "home_team_abbrev": "DET", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_min", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260609_lad_pit", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-09T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92898,10 +82281,35 @@ "canonical_id": "game_mlb_2026_20260609_bos_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-09T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-06-09", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Boston Red Sox", + "home_team_abbrev": "TB", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_bos", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260609_lad_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "LAD", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_lad", + "venue": "PNC Park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92909,10 +82317,17 @@ "canonical_id": "game_mlb_2026_20260609_ari_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-09T22:40:00Z", + "date": "2026-06-09", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "MIA", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_ari", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92920,10 +82335,17 @@ "canonical_id": "game_mlb_2026_20260609_phi_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-09T23:07:00Z", + "date": "2026-06-09", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "TOR", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_phi", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92931,21 +82353,17 @@ "canonical_id": "game_mlb_2026_20260609_stl_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-09T23:10:00Z", + "date": "2026-06-09", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "NYM", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_stl", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260609_tex_kc", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-09T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92953,10 +82371,71 @@ "canonical_id": "game_mlb_2026_20260609_atl_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-09T23:40:00Z", + "date": "2026-06-09", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Atlanta Braves", + "home_team_abbrev": "CHW", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_atl", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260609_tex_kc", + "sport": "MLB", + "season": "2026", + "date": "2026-06-09", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Texas Rangers", + "home_team_abbrev": "KC", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_kc", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Kauffman Stadium", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260610_atl_chi", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-09", + "time": "7p", + "home_team": "Chicago Sky", + "away_team": "Atlanta Dream", + "home_team_abbrev": "CHI", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_wnba_chi", + "away_team_canonical_id": "team_wnba_atl", + "venue": "Wintrust Arena", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260610_dal_min", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-09", + "time": "7p", + "home_team": "Minnesota Lynx", + "away_team": "Dallas Wings", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_wnba_min", + "away_team_canonical_id": "team_wnba_dal", + "venue": "Target Center", + "stadium_canonical_id": "stadium_wnba_target_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -92964,10 +82443,17 @@ "canonical_id": "game_mlb_2026_20260610_chc_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-10T00:40:00Z", + "date": "2026-06-09", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Chicago Cubs", + "home_team_abbrev": "COL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_chc", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92975,10 +82461,17 @@ "canonical_id": "game_mlb_2026_20260610_hou_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-10T01:38:00Z", + "date": "2026-06-09", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Houston Astros", + "home_team_abbrev": "LAA", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_hou", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92986,10 +82479,17 @@ "canonical_id": "game_mlb_2026_20260610_cin_sd_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-10T01:40:00Z", + "date": "2026-06-09", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "SD", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_cin", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -92997,10 +82497,35 @@ "canonical_id": "game_mlb_2026_20260610_wsn_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-10T01:45:00Z", + "date": "2026-06-09", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Washington Nationals", + "home_team_abbrev": "SF", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260610_phx_gsv", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-09", + "time": "7p", + "home_team": "Golden State Valkyries", + "away_team": "Phoenix Mercury", + "home_team_abbrev": "GSV", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_wnba_gsv", + "away_team_canonical_id": "team_wnba_phx", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_wnba_chase_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -93008,10 +82533,17 @@ "canonical_id": "game_mlb_2026_20260610_mil_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-10T02:05:00Z", + "date": "2026-06-09", + "time": "7:05p", + "home_team": "Oakland Athletics", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "OAK", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_mil", + "venue": "Las Vegas Ballpark", "stadium_canonical_id": "stadium_mlb_las_vegas_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93019,10 +82551,17 @@ "canonical_id": "game_mlb_2026_20260610_nyy_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-10T17:10:00Z", + "date": "2026-06-10", + "time": "1:10p", + "home_team": "Cleveland Guardians", + "away_team": "New York Yankees", + "home_team_abbrev": "CLE", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93030,10 +82569,17 @@ "canonical_id": "game_mlb_2026_20260610_bos_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-10T17:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-06-10", + "time": "1:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Boston Red Sox", + "home_team_abbrev": "TB", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_bos", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93041,10 +82587,17 @@ "canonical_id": "game_mlb_2026_20260610_wsn_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-10T19:45:00Z", + "date": "2026-06-10", + "time": "12:45p", + "home_team": "San Francisco Giants", + "away_team": "Washington Nationals", + "home_team_abbrev": "SF", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93052,10 +82605,17 @@ "canonical_id": "game_mlb_2026_20260610_cin_sd_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-10T20:10:00Z", + "date": "2026-06-10", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "SD", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_cin", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93063,21 +82623,17 @@ "canonical_id": "game_mlb_2026_20260610_sea_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-10T22:35:00Z", + "date": "2026-06-10", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Seattle Mariners", + "home_team_abbrev": "BAL", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_sea", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260610_min_det", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-10T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93085,10 +82641,35 @@ "canonical_id": "game_mlb_2026_20260610_lad_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-10T22:40:00Z", + "date": "2026-06-10", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_lad", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260610_min_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-10", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Minnesota Twins", + "home_team_abbrev": "DET", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_min", + "venue": "Comerica Park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93096,10 +82677,17 @@ "canonical_id": "game_mlb_2026_20260610_ari_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-10T22:40:00Z", + "date": "2026-06-10", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "MIA", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_ari", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93107,10 +82695,17 @@ "canonical_id": "game_mlb_2026_20260610_phi_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-10T23:07:00Z", + "date": "2026-06-10", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "TOR", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_phi", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93118,10 +82713,17 @@ "canonical_id": "game_mlb_2026_20260610_stl_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-10T23:10:00Z", + "date": "2026-06-10", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "NYM", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_stl", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93129,10 +82731,17 @@ "canonical_id": "game_mlb_2026_20260610_tex_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-10T23:40:00Z", + "date": "2026-06-10", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Texas Rangers", + "home_team_abbrev": "KC", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_tex", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93140,10 +82749,17 @@ "canonical_id": "game_mlb_2026_20260610_atl_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-10T23:40:00Z", + "date": "2026-06-10", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Atlanta Braves", + "home_team_abbrev": "CHW", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_atl", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93151,10 +82767,17 @@ "canonical_id": "game_mlb_2026_20260611_chc_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-11T00:40:00Z", + "date": "2026-06-10", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Chicago Cubs", + "home_team_abbrev": "COL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_chc", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93162,10 +82785,17 @@ "canonical_id": "game_mlb_2026_20260611_mil_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-11T01:05:00Z", + "date": "2026-06-10", + "time": "6:05p", + "home_team": "Oakland Athletics", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "OAK", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_mil", + "venue": "Las Vegas Ballpark", "stadium_canonical_id": "stadium_mlb_las_vegas_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93173,10 +82803,35 @@ "canonical_id": "game_mlb_2026_20260611_hou_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-11T01:38:00Z", + "date": "2026-06-10", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Houston Astros", + "home_team_abbrev": "LAA", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_hou", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260611_la_sea", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-10", + "time": "7p", + "home_team": "Seattle Storm", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "SEA", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_sea", + "away_team_canonical_id": "team_wnba_la", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -93184,10 +82839,17 @@ "canonical_id": "game_mlb_2026_20260611_stl_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-11T17:10:00Z", + "date": "2026-06-11", + "time": "1:10p", + "home_team": "New York Mets", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "NYM", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_stl", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93195,10 +82857,17 @@ "canonical_id": "game_mlb_2026_20260611_min_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-11T17:10:00Z", + "date": "2026-06-11", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Minnesota Twins", + "home_team_abbrev": "DET", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_min", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93206,10 +82875,17 @@ "canonical_id": "game_mlb_2026_20260611_ari_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-11T17:10:00Z", + "date": "2026-06-11", + "time": "1:10p", + "home_team": "Miami Marlins", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "MIA", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_ari", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93217,10 +82893,17 @@ "canonical_id": "game_mlb_2026_20260611_tex_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-11T18:10:00Z", + "date": "2026-06-11", + "time": "1:10p", + "home_team": "Kansas City Royals", + "away_team": "Texas Rangers", + "home_team_abbrev": "KC", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_tex", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93228,10 +82911,17 @@ "canonical_id": "game_mlb_2026_20260611_chc_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-11T19:10:00Z", + "date": "2026-06-11", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Chicago Cubs", + "home_team_abbrev": "COL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_chc", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93239,10 +82929,35 @@ "canonical_id": "game_mlb_2026_20260611_lad_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-11T22:40:00Z", + "date": "2026-06-11", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_lad", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260611_chi_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-11", + "time": "7p", + "home_team": "Indiana Fever", + "away_team": "Chicago Sky", + "home_team_abbrev": "IND", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_chi", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -93250,10 +82965,35 @@ "canonical_id": "game_mlb_2026_20260611_sea_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-11T23:05:00Z", + "date": "2026-06-11", + "time": "7:05p", + "home_team": "Baltimore Orioles", + "away_team": "Seattle Mariners", + "home_team_abbrev": "BAL", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_sea", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260611_ny_atl", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-11", + "time": "7:30p", + "home_team": "Atlanta Dream", + "away_team": "New York Liberty", + "home_team_abbrev": "ATL", + "away_team_abbrev": "NY", + "home_team_canonical_id": "team_wnba_atl", + "away_team_canonical_id": "team_wnba_ny", + "venue": "Gateway Center Arena", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -93261,10 +83001,35 @@ "canonical_id": "game_mlb_2026_20260611_atl_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-11T23:40:00Z", + "date": "2026-06-11", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Atlanta Braves", + "home_team_abbrev": "CHW", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_atl", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260612_phx_dal", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-11", + "time": "8p", + "home_team": "Dallas Wings", + "away_team": "Phoenix Mercury", + "home_team_abbrev": "DAL", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_phx", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -93272,10 +83037,17 @@ "canonical_id": "game_mlb_2026_20260612_mia_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-12T22:40:00Z", + "date": "2026-06-12", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Miami Marlins", + "home_team_abbrev": "PIT", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_mia", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93283,10 +83055,17 @@ "canonical_id": "game_mlb_2026_20260612_sea_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-12T22:45:00Z", + "date": "2026-06-12", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Seattle Mariners", + "home_team_abbrev": "WSN", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_sea", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93294,32 +83073,17 @@ "canonical_id": "game_mlb_2026_20260612_sd_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-12T23:05:00Z", + "date": "2026-06-12", + "time": "7:05p", + "home_team": "Baltimore Orioles", + "away_team": "San Diego Padres", + "home_team_abbrev": "BAL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_sd", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260612_tex_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-12T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260612_det_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-12T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93327,10 +83091,17 @@ "canonical_id": "game_mlb_2026_20260612_atl_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-12T23:10:00Z", + "date": "2026-06-12", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Atlanta Braves", + "home_team_abbrev": "NYM", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_atl", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93338,10 +83109,53 @@ "canonical_id": "game_mlb_2026_20260612_ari_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-12T23:10:00Z", + "date": "2026-06-12", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "CIN", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_ari", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260612_det_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "7:10p", + "home_team": "Cleveland Guardians", + "away_team": "Detroit Tigers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_det", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260612_tex_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Texas Rangers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93349,21 +83163,17 @@ "canonical_id": "game_mlb_2026_20260612_nyy_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-12T23:37:00Z", + "date": "2026-06-12", + "time": "7:37p", + "home_team": "Toronto Blue Jays", + "away_team": "New York Yankees", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260612_phi_mil", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-12T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93371,10 +83181,35 @@ "canonical_id": "game_mlb_2026_20260612_lad_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-12T23:40:00Z", + "date": "2026-06-12", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "CHW", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_lad", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260612_phi_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-12", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "MIL", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_phi", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93382,10 +83217,17 @@ "canonical_id": "game_mlb_2026_20260613_stl_min_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-13T00:10:00Z", + "date": "2026-06-12", + "time": "7:10p", + "home_team": "Minnesota Twins", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "MIN", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_stl", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93393,10 +83235,17 @@ "canonical_id": "game_mlb_2026_20260613_hou_kc_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-13T00:10:00Z", + "date": "2026-06-12", + "time": "7:10p", + "home_team": "Kansas City Royals", + "away_team": "Houston Astros", + "home_team_abbrev": "KC", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_hou", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93404,10 +83253,35 @@ "canonical_id": "game_mlb_2026_20260613_tbr_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-13T01:38:00Z", + "date": "2026-06-12", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "LAA", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260613_gsv_sea", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-12", + "time": "7p", + "home_team": "Seattle Storm", + "away_team": "Golden State Valkyries", + "home_team_abbrev": "SEA", + "away_team_abbrev": "GSV", + "home_team_canonical_id": "team_wnba_sea", + "away_team_canonical_id": "team_wnba_gsv", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -93415,10 +83289,17 @@ "canonical_id": "game_mlb_2026_20260613_col_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-13T02:05:00Z", + "date": "2026-06-12", + "time": "7:05p", + "home_team": "Oakland Athletics", + "away_team": "Colorado Rockies", + "home_team_abbrev": "OAK", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_col", + "venue": "Las Vegas Ballpark", "stadium_canonical_id": "stadium_mlb_las_vegas_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93426,10 +83307,17 @@ "canonical_id": "game_mlb_2026_20260613_chc_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-13T02:15:00Z", + "date": "2026-06-12", + "time": "7:15p", + "home_team": "San Francisco Giants", + "away_team": "Chicago Cubs", + "home_team_abbrev": "SF", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_chc", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93437,10 +83325,17 @@ "canonical_id": "game_mlb_2026_20260613_stl_min_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-13T18:10:00Z", + "date": "2026-06-13", + "time": "1:10p", + "home_team": "Minnesota Twins", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "MIN", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_stl", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93448,21 +83343,17 @@ "canonical_id": "game_mlb_2026_20260613_nyy_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-13T19:07:00Z", + "date": "2026-06-13", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "New York Yankees", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260613_sea_wsn", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-13T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93470,10 +83361,35 @@ "canonical_id": "game_mlb_2026_20260613_sd_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-13T20:05:00Z", + "date": "2026-06-13", + "time": "4:05p", + "home_team": "Baltimore Orioles", + "away_team": "San Diego Padres", + "home_team_abbrev": "BAL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_sd", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260613_sea_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "4:05p", + "home_team": "Washington Nationals", + "away_team": "Seattle Mariners", + "home_team_abbrev": "WSN", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sea", + "venue": "Nationals Park", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93481,43 +83397,17 @@ "canonical_id": "game_mlb_2026_20260613_mia_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-13T20:05:00Z", + "date": "2026-06-13", + "time": "4:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "Miami Marlins", + "home_team_abbrev": "PIT", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_mia", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260613_tex_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-13T20:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260613_lad_chw", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-13T20:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260613_det_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-13T20:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93525,10 +83415,17 @@ "canonical_id": "game_mlb_2026_20260613_atl_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-13T20:10:00Z", + "date": "2026-06-13", + "time": "4:10p", + "home_team": "New York Mets", + "away_team": "Atlanta Braves", + "home_team_abbrev": "NYM", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_atl", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93536,21 +83433,89 @@ "canonical_id": "game_mlb_2026_20260613_ari_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-13T20:10:00Z", + "date": "2026-06-13", + "time": "4:10p", + "home_team": "Cincinnati Reds", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "CIN", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_ari", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260613_phi_mil", + "canonical_id": "game_mlb_2026_20260613_det_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-13T23:15:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "date": "2026-06-13", + "time": "4:10p", + "home_team": "Cleveland Guardians", + "away_team": "Detroit Tigers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_det", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260613_tex_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "4:10p", + "home_team": "Boston Red Sox", + "away_team": "Texas Rangers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260613_lad_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "3:10p", + "home_team": "Chicago White Sox", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "CHW", + "away_team_abbrev": "LAD", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_lad", + "venue": "Guaranteed Rate Field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260613_ind_con", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-13", + "time": "6p", + "home_team": "Connecticut Sun", + "away_team": "Indiana Fever", + "home_team_abbrev": "CON", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_wnba_con", + "away_team_canonical_id": "team_wnba_ind", + "venue": "Mohegan Sun Arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -93558,10 +83523,71 @@ "canonical_id": "game_mlb_2026_20260613_hou_kc_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-13T23:15:00Z", + "date": "2026-06-13", + "time": "6:15p", + "home_team": "Kansas City Royals", + "away_team": "Houston Astros", + "home_team_abbrev": "KC", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_hou", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260613_phi_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-13", + "time": "6:15p", + "home_team": "Milwaukee Brewers", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "MIL", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_phi", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260614_min_lv", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-13", + "time": "5p", + "home_team": "Las Vegas Aces", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "LV", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_min", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260614_la_phx", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-13", + "time": "10p", + "home_team": "Phoenix Mercury", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "PHX", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_phx", + "away_team_canonical_id": "team_wnba_la", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -93569,10 +83595,17 @@ "canonical_id": "game_mlb_2026_20260614_col_oak_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-14T02:05:00Z", + "date": "2026-06-13", + "time": "7:05p", + "home_team": "Oakland Athletics", + "away_team": "Colorado Rockies", + "home_team_abbrev": "OAK", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_col", + "venue": "Las Vegas Ballpark", "stadium_canonical_id": "stadium_mlb_las_vegas_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93580,10 +83613,17 @@ "canonical_id": "game_mlb_2026_20260614_chc_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-14T02:05:00Z", + "date": "2026-06-13", + "time": "7:05p", + "home_team": "San Francisco Giants", + "away_team": "Chicago Cubs", + "home_team_abbrev": "SF", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_chc", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93591,10 +83631,17 @@ "canonical_id": "game_mlb_2026_20260614_tbr_laa_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-14T02:07:00Z", + "date": "2026-06-13", + "time": "7:07p", + "home_team": "Los Angeles Angels", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "LAA", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93602,21 +83649,17 @@ "canonical_id": "game_mlb_2026_20260614_mia_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-14T16:15:00Z", + "date": "2026-06-14", + "time": "12:10p", + "home_team": "Pittsburgh Pirates", + "away_team": "Miami Marlins", + "home_team_abbrev": "PIT", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_mia", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260614_sea_wsn", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-14T17:35:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93624,10 +83667,35 @@ "canonical_id": "game_mlb_2026_20260614_sd_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-14T17:35:00Z", + "date": "2026-06-14", + "time": "1:35p", + "home_team": "Baltimore Orioles", + "away_team": "San Diego Padres", + "home_team_abbrev": "BAL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_sd", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260614_sea_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "1:35p", + "home_team": "Washington Nationals", + "away_team": "Seattle Mariners", + "home_team_abbrev": "WSN", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_sea", + "venue": "Nationals Park", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93635,32 +83703,17 @@ "canonical_id": "game_mlb_2026_20260614_nyy_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-14T17:37:00Z", + "date": "2026-06-14", + "time": "1:37p", + "home_team": "Toronto Blue Jays", + "away_team": "New York Yankees", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260614_det_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-14T17:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260614_atl_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-14T17:40:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93668,43 +83721,53 @@ "canonical_id": "game_mlb_2026_20260614_ari_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-14T17:40:00Z", + "date": "2026-06-14", + "time": "1:40p", + "home_team": "Cincinnati Reds", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "CIN", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_ari", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260614_stl_min", + "canonical_id": "game_mlb_2026_20260614_det_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-14T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_target_field", + "date": "2026-06-14", + "time": "1:40p", + "home_team": "Cleveland Guardians", + "away_team": "Detroit Tigers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_det", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260614_phi_mil", + "canonical_id": "game_mlb_2026_20260614_atl_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-14T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260614_lad_chw", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-14T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "date": "2026-06-14", + "time": "1:40p", + "home_team": "New York Mets", + "away_team": "Atlanta Braves", + "home_team_abbrev": "NYM", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_atl", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93712,10 +83775,89 @@ "canonical_id": "game_mlb_2026_20260614_hou_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-14T18:10:00Z", + "date": "2026-06-14", + "time": "1:10p", + "home_team": "Kansas City Royals", + "away_team": "Houston Astros", + "home_team_abbrev": "KC", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_hou", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260614_phi_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "MIL", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_phi", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260614_lad_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "CHW", + "away_team_abbrev": "LAD", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_lad", + "venue": "Guaranteed Rate Field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260614_stl_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-14", + "time": "1:10p", + "home_team": "Minnesota Twins", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "MIN", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_stl", + "venue": "Target Field", + "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260614_was_ny", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-14", + "time": "3p", + "home_team": "New York Liberty", + "away_team": "Washington Mystics", + "home_team_abbrev": "NY", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_was", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -93723,10 +83865,17 @@ "canonical_id": "game_mlb_2026_20260614_col_oak_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-14T19:05:00Z", + "date": "2026-06-14", + "time": "12:05p", + "home_team": "Oakland Athletics", + "away_team": "Colorado Rockies", + "home_team_abbrev": "OAK", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_col", + "venue": "Las Vegas Ballpark", "stadium_canonical_id": "stadium_mlb_las_vegas_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93734,10 +83883,17 @@ "canonical_id": "game_mlb_2026_20260614_chc_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-14T19:10:00Z", + "date": "2026-06-14", + "time": "12:10p", + "home_team": "San Francisco Giants", + "away_team": "Chicago Cubs", + "home_team_abbrev": "SF", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_chc", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93745,10 +83901,17 @@ "canonical_id": "game_mlb_2026_20260614_tbr_laa_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-14T20:07:00Z", + "date": "2026-06-14", + "time": "1:07p", + "home_team": "Los Angeles Angels", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "LAA", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93756,10 +83919,17 @@ "canonical_id": "game_mlb_2026_20260614_tex_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-14T23:20:00Z", + "date": "2026-06-14", + "time": "7:20p", + "home_team": "Boston Red Sox", + "away_team": "Texas Rangers", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_tex", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93767,10 +83937,17 @@ "canonical_id": "game_mlb_2026_20260615_mia_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-15T22:40:00Z", + "date": "2026-06-15", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Miami Marlins", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_mia", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93778,10 +83955,17 @@ "canonical_id": "game_mlb_2026_20260615_kc_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-15T22:45:00Z", + "date": "2026-06-15", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Kansas City Royals", + "home_team_abbrev": "WSN", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_kc", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93789,10 +83973,17 @@ "canonical_id": "game_mlb_2026_20260615_nym_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-15T23:10:00Z", + "date": "2026-06-15", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "New York Mets", + "home_team_abbrev": "CIN", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_nym", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93800,21 +83991,35 @@ "canonical_id": "game_mlb_2026_20260615_sd_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-15T23:45:00Z", + "date": "2026-06-15", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "San Diego Padres", + "home_team_abbrev": "STL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_sd", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260616_min_tex", - "sport": "MLB", + "canonical_id": "game_wnba_2026_20260616_lv_dal", + "sport": "WNBA", "season": "2026", - "game_datetime_utc": "2026-06-16T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_globe_life_field", + "date": "2026-06-15", + "time": "7p", + "home_team": "Dallas Wings", + "away_team": "Las Vegas Aces", + "home_team_abbrev": "DAL", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_lv", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -93822,10 +84027,35 @@ "canonical_id": "game_mlb_2026_20260616_col_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-16T00:05:00Z", + "date": "2026-06-15", + "time": "7:05p", + "home_team": "Chicago Cubs", + "away_team": "Colorado Rockies", + "home_team_abbrev": "CHC", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_col", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260616_min_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Minnesota Twins", + "home_team_abbrev": "TEX", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_min", + "venue": "Globe Life Field", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93833,21 +84063,17 @@ "canonical_id": "game_mlb_2026_20260616_det_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-16T00:10:00Z", + "date": "2026-06-15", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Detroit Tigers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_det", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260616_pit_oak", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-16T01:40:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93855,10 +84081,53 @@ "canonical_id": "game_mlb_2026_20260616_laa_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-16T01:40:00Z", + "date": "2026-06-15", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "ARI", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_laa", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260616_pit_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-15", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "OAK", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_pit", + "venue": "Sutter Health Park", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260616_la_gsv", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-15", + "time": "7p", + "home_team": "Golden State Valkyries", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "GSV", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_gsv", + "away_team_canonical_id": "team_wnba_la", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_wnba_chase_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -93866,10 +84135,17 @@ "canonical_id": "game_mlb_2026_20260616_tbr_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-16T02:10:00Z", + "date": "2026-06-15", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "LAD", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93877,21 +84153,17 @@ "canonical_id": "game_mlb_2026_20260616_mia_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-16T22:40:00Z", + "date": "2026-06-16", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Miami Marlins", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_mia", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260616_tor_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-16T22:45:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93899,10 +84171,35 @@ "canonical_id": "game_mlb_2026_20260616_kc_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-16T22:45:00Z", + "date": "2026-06-16", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Kansas City Royals", + "home_team_abbrev": "WSN", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_kc", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260616_tor_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "6:45p", + "home_team": "Boston Red Sox", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tor", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93910,10 +84207,17 @@ "canonical_id": "game_mlb_2026_20260616_chw_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-16T23:05:00Z", + "date": "2026-06-16", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Chicago White Sox", + "home_team_abbrev": "NYY", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_chw", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93921,10 +84225,17 @@ "canonical_id": "game_mlb_2026_20260616_nym_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-16T23:10:00Z", + "date": "2026-06-16", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "New York Mets", + "home_team_abbrev": "CIN", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_nym", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93932,10 +84243,17 @@ "canonical_id": "game_mlb_2026_20260616_sf_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-16T23:15:00Z", + "date": "2026-06-16", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "San Francisco Giants", + "home_team_abbrev": "ATL", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_sf", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93943,10 +84261,17 @@ "canonical_id": "game_mlb_2026_20260616_cle_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-16T23:40:00Z", + "date": "2026-06-16", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_cle", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93954,21 +84279,17 @@ "canonical_id": "game_mlb_2026_20260616_sd_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-16T23:45:00Z", + "date": "2026-06-16", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "San Diego Padres", + "home_team_abbrev": "STL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_sd", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260617_min_tex", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-17T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93976,10 +84297,35 @@ "canonical_id": "game_mlb_2026_20260617_col_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-17T00:05:00Z", + "date": "2026-06-16", + "time": "7:05p", + "home_team": "Chicago Cubs", + "away_team": "Colorado Rockies", + "home_team_abbrev": "CHC", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_col", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260617_min_tex", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Minnesota Twins", + "home_team_abbrev": "TEX", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_min", + "venue": "Globe Life Field", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -93987,21 +84333,17 @@ "canonical_id": "game_mlb_2026_20260617_det_hou_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-17T00:10:00Z", + "date": "2026-06-16", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Detroit Tigers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_det", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260617_pit_oak", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-17T01:40:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94009,10 +84351,35 @@ "canonical_id": "game_mlb_2026_20260617_laa_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-17T01:40:00Z", + "date": "2026-06-16", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "ARI", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_laa", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260617_pit_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-16", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "OAK", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_pit", + "venue": "Sutter Health Park", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94020,10 +84387,17 @@ "canonical_id": "game_mlb_2026_20260617_bal_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-17T01:40:00Z", + "date": "2026-06-16", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "SEA", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94031,10 +84405,17 @@ "canonical_id": "game_mlb_2026_20260617_tbr_lad_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-17T02:10:00Z", + "date": "2026-06-16", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "LAD", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94042,10 +84423,17 @@ "canonical_id": "game_mlb_2026_20260617_nym_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-17T16:40:00Z", + "date": "2026-06-17", + "time": "12:40p", + "home_team": "Cincinnati Reds", + "away_team": "New York Mets", + "home_team_abbrev": "CIN", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_nym", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94053,10 +84441,17 @@ "canonical_id": "game_mlb_2026_20260617_mia_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-17T17:05:00Z", + "date": "2026-06-17", + "time": "1:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Miami Marlins", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_mia", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94064,10 +84459,17 @@ "canonical_id": "game_mlb_2026_20260617_kc_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-17T17:05:00Z", + "date": "2026-06-17", + "time": "1:05p", + "home_team": "Washington Nationals", + "away_team": "Kansas City Royals", + "home_team_abbrev": "WSN", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_kc", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94075,10 +84477,17 @@ "canonical_id": "game_mlb_2026_20260617_det_hou_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-17T18:10:00Z", + "date": "2026-06-17", + "time": "1:10p", + "home_team": "Houston Astros", + "away_team": "Detroit Tigers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_det", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94086,10 +84495,17 @@ "canonical_id": "game_mlb_2026_20260617_sd_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-17T18:15:00Z", + "date": "2026-06-17", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "San Diego Padres", + "home_team_abbrev": "STL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_sd", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94097,10 +84513,17 @@ "canonical_id": "game_mlb_2026_20260617_tbr_lad_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-17T19:10:00Z", + "date": "2026-06-17", + "time": "12:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "LAD", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94108,10 +84531,17 @@ "canonical_id": "game_mlb_2026_20260617_laa_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-17T19:40:00Z", + "date": "2026-06-17", + "time": "12:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "ARI", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_laa", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94119,10 +84549,35 @@ "canonical_id": "game_mlb_2026_20260617_tor_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-17T22:45:00Z", + "date": "2026-06-17", + "time": "6:45p", + "home_team": "Boston Red Sox", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_tor", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260617_was_con", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-17", + "time": "7p", + "home_team": "Connecticut Sun", + "away_team": "Washington Mystics", + "home_team_abbrev": "CON", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_wnba_con", + "away_team_canonical_id": "team_wnba_was", + "venue": "Mohegan Sun Arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -94130,10 +84585,17 @@ "canonical_id": "game_mlb_2026_20260617_chw_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-17T23:05:00Z", + "date": "2026-06-17", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Chicago White Sox", + "home_team_abbrev": "NYY", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_chw", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94141,10 +84603,17 @@ "canonical_id": "game_mlb_2026_20260617_sf_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-17T23:15:00Z", + "date": "2026-06-17", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "San Francisco Giants", + "home_team_abbrev": "ATL", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_sf", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94152,10 +84621,35 @@ "canonical_id": "game_mlb_2026_20260617_cle_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-17T23:40:00Z", + "date": "2026-06-17", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_cle", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260618_ny_chi", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-17", + "time": "7p", + "home_team": "Chicago Sky", + "away_team": "New York Liberty", + "home_team_abbrev": "CHI", + "away_team_abbrev": "NY", + "home_team_canonical_id": "team_wnba_chi", + "away_team_canonical_id": "team_wnba_ny", + "venue": "Wintrust Arena", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -94163,10 +84657,17 @@ "canonical_id": "game_mlb_2026_20260618_col_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-18T00:05:00Z", + "date": "2026-06-17", + "time": "7:05p", + "home_team": "Chicago Cubs", + "away_team": "Colorado Rockies", + "home_team_abbrev": "CHC", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_col", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94174,10 +84675,17 @@ "canonical_id": "game_mlb_2026_20260618_pit_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-18T01:40:00Z", + "date": "2026-06-17", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "OAK", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_pit", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94185,10 +84693,71 @@ "canonical_id": "game_mlb_2026_20260618_bal_sea_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-18T01:40:00Z", + "date": "2026-06-17", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "SEA", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260618_lv_phx", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-17", + "time": "10p", + "home_team": "Phoenix Mercury", + "away_team": "Las Vegas Aces", + "home_team_abbrev": "PHX", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_wnba_phx", + "away_team_canonical_id": "team_wnba_lv", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260618_dal_gsv", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-17", + "time": "7p", + "home_team": "Golden State Valkyries", + "away_team": "Dallas Wings", + "home_team_abbrev": "GSV", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_wnba_gsv", + "away_team_canonical_id": "team_wnba_dal", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_wnba_chase_center", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260618_min_la", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-17", + "time": "7p", + "home_team": "Los Angeles Sparks", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "LA", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_la", + "away_team_canonical_id": "team_wnba_min", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -94196,10 +84765,17 @@ "canonical_id": "game_mlb_2026_20260618_tor_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-18T17:35:00Z", + "date": "2026-06-18", + "time": "1:35p", + "home_team": "Boston Red Sox", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_tor", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94207,10 +84783,17 @@ "canonical_id": "game_mlb_2026_20260618_cle_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-18T18:10:00Z", + "date": "2026-06-18", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_cle", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94218,10 +84801,17 @@ "canonical_id": "game_mlb_2026_20260618_min_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-18T18:35:00Z", + "date": "2026-06-18", + "time": "1:35p", + "home_team": "Texas Rangers", + "away_team": "Minnesota Twins", + "home_team_abbrev": "TEX", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_min", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94229,10 +84819,17 @@ "canonical_id": "game_mlb_2026_20260618_bal_sea_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-18T20:10:00Z", + "date": "2026-06-18", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "SEA", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94240,10 +84837,17 @@ "canonical_id": "game_mlb_2026_20260618_nym_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-18T22:40:00Z", + "date": "2026-06-18", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "New York Mets", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_nym", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94251,10 +84855,17 @@ "canonical_id": "game_mlb_2026_20260618_chw_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-18T23:05:00Z", + "date": "2026-06-18", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Chicago White Sox", + "home_team_abbrev": "NYY", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_chw", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94262,10 +84873,35 @@ "canonical_id": "game_mlb_2026_20260618_sf_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-18T23:15:00Z", + "date": "2026-06-18", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "San Francisco Giants", + "home_team_abbrev": "ATL", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_sf", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260618_atl_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-18", + "time": "7:30p", + "home_team": "Indiana Fever", + "away_team": "Atlanta Dream", + "home_team_abbrev": "IND", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_atl", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -94273,10 +84909,17 @@ "canonical_id": "game_mlb_2026_20260618_stl_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-18T23:40:00Z", + "date": "2026-06-18", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "KC", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_stl", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94284,10 +84927,17 @@ "canonical_id": "game_mlb_2026_20260619_laa_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-19T01:40:00Z", + "date": "2026-06-18", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "OAK", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_laa", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94295,10 +84945,17 @@ "canonical_id": "game_mlb_2026_20260619_tor_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-19T18:20:00Z", + "date": "2026-06-19", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "CHC", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_tor", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94306,10 +84963,17 @@ "canonical_id": "game_mlb_2026_20260619_chw_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-19T22:40:00Z", + "date": "2026-06-19", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Chicago White Sox", + "home_team_abbrev": "DET", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_chw", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94317,21 +84981,17 @@ "canonical_id": "game_mlb_2026_20260619_cin_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-19T23:05:00Z", + "date": "2026-06-19", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "NYY", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_cin", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260619_wsn_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-19T23:10:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94339,10 +84999,35 @@ "canonical_id": "game_mlb_2026_20260619_sf_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-19T23:10:00Z", + "date": "2026-06-19", + "time": "7:10p", + "home_team": "Miami Marlins", + "away_team": "San Francisco Giants", + "home_team_abbrev": "MIA", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_sf", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260619_wsn_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-19", + "time": "7:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Washington Nationals", + "home_team_abbrev": "TB", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94350,10 +85035,35 @@ "canonical_id": "game_mlb_2026_20260619_mil_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-19T23:15:00Z", + "date": "2026-06-19", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_mil", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260619_was_ny", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-19", + "time": "7:30p", + "home_team": "New York Liberty", + "away_team": "Washington Mystics", + "home_team_abbrev": "NY", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_was", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -94361,10 +85071,17 @@ "canonical_id": "game_mlb_2026_20260620_sd_tex_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-20T00:05:00Z", + "date": "2026-06-19", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "San Diego Padres", + "home_team_abbrev": "TEX", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_sd", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94372,10 +85089,17 @@ "canonical_id": "game_mlb_2026_20260620_stl_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-20T00:10:00Z", + "date": "2026-06-19", + "time": "7:10p", + "home_team": "Kansas City Royals", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "KC", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_stl", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94383,10 +85107,17 @@ "canonical_id": "game_mlb_2026_20260620_cle_hou_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-20T00:10:00Z", + "date": "2026-06-19", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "HOU", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_cle", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94394,10 +85125,17 @@ "canonical_id": "game_mlb_2026_20260620_pit_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-20T00:40:00Z", + "date": "2026-06-19", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "COL", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_pit", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94405,10 +85143,17 @@ "canonical_id": "game_mlb_2026_20260620_min_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-20T01:40:00Z", + "date": "2026-06-19", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Minnesota Twins", + "home_team_abbrev": "ARI", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_min", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94416,10 +85161,35 @@ "canonical_id": "game_mlb_2026_20260620_laa_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-20T01:40:00Z", + "date": "2026-06-19", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "OAK", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_laa", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260620_min_gsv", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-19", + "time": "7p", + "home_team": "Golden State Valkyries", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "GSV", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_gsv", + "away_team_canonical_id": "team_wnba_min", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_wnba_chase_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -94427,10 +85197,35 @@ "canonical_id": "game_mlb_2026_20260620_bal_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-20T02:10:00Z", + "date": "2026-06-19", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "LAD", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_bal", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260620_ind_atl", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-20", + "time": "1p", + "home_team": "Atlanta Dream", + "away_team": "Indiana Fever", + "home_team_abbrev": "ATL", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_wnba_atl", + "away_team_canonical_id": "team_wnba_ind", + "venue": "Gateway Center Arena", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -94438,10 +85233,17 @@ "canonical_id": "game_mlb_2026_20260620_chw_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-20T17:10:00Z", + "date": "2026-06-20", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Chicago White Sox", + "home_team_abbrev": "DET", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_chw", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94449,10 +85251,17 @@ "canonical_id": "game_mlb_2026_20260620_cin_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-20T17:35:00Z", + "date": "2026-06-20", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "NYY", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_cin", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94460,10 +85269,35 @@ "canonical_id": "game_mlb_2026_20260620_tor_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-20T18:20:00Z", + "date": "2026-06-20", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "CHC", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_tor", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260620_sea_phx", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-20", + "time": "3p", + "home_team": "Phoenix Mercury", + "away_team": "Seattle Storm", + "home_team_abbrev": "PHX", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_wnba_phx", + "away_team_canonical_id": "team_wnba_sea", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -94471,32 +85305,17 @@ "canonical_id": "game_mlb_2026_20260620_sd_tex_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-20T20:05:00Z", + "date": "2026-06-20", + "time": "3:05p", + "home_team": "Texas Rangers", + "away_team": "San Diego Padres", + "home_team_abbrev": "TEX", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_sd", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260620_wsn_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-20T20:10:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_tropicana_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260620_sf_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-20T20:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94504,10 +85323,17 @@ "canonical_id": "game_mlb_2026_20260620_mil_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-20T20:10:00Z", + "date": "2026-06-20", + "time": "4:10p", + "home_team": "Atlanta Braves", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_mil", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94515,21 +85341,53 @@ "canonical_id": "game_mlb_2026_20260620_bos_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-20T20:10:00Z", + "date": "2026-06-20", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Boston Red Sox", + "home_team_abbrev": "SEA", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260620_nym_phi", + "canonical_id": "game_mlb_2026_20260620_wsn_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-20T23:15:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "date": "2026-06-20", + "time": "4:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Washington Nationals", + "home_team_abbrev": "TB", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260620_sf_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "4:10p", + "home_team": "Miami Marlins", + "away_team": "San Francisco Giants", + "home_team_abbrev": "MIA", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sf", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94537,10 +85395,53 @@ "canonical_id": "game_mlb_2026_20260620_cle_hou_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-20T23:15:00Z", + "date": "2026-06-20", + "time": "6:15p", + "home_team": "Houston Astros", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "HOU", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_cle", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260620_nym_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-06-20", + "time": "7:15p", + "home_team": "Philadelphia Phillies", + "away_team": "New York Mets", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NYM", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nym", + "venue": "Citizens Bank Park", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260621_chi_dal", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-20", + "time": "7p", + "home_team": "Dallas Wings", + "away_team": "Chicago Sky", + "home_team_abbrev": "DAL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_chi", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -94548,10 +85449,17 @@ "canonical_id": "game_mlb_2026_20260621_pit_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-21T01:10:00Z", + "date": "2026-06-20", + "time": "7:10p", + "home_team": "Colorado Rockies", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "COL", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_pit", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94559,10 +85467,17 @@ "canonical_id": "game_mlb_2026_20260621_laa_oak_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-21T02:05:00Z", + "date": "2026-06-20", + "time": "7:05p", + "home_team": "Oakland Athletics", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "OAK", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_laa", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94570,10 +85485,17 @@ "canonical_id": "game_mlb_2026_20260621_min_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-21T02:10:00Z", + "date": "2026-06-20", + "time": "7:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Minnesota Twins", + "home_team_abbrev": "ARI", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_min", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94581,10 +85503,17 @@ "canonical_id": "game_mlb_2026_20260621_bal_lad_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-21T02:10:00Z", + "date": "2026-06-20", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "LAD", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_bal", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94592,10 +85521,17 @@ "canonical_id": "game_mlb_2026_20260621_bos_sea_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-21T02:15:00Z", + "date": "2026-06-20", + "time": "7:15p", + "home_team": "Seattle Mariners", + "away_team": "Boston Red Sox", + "home_team_abbrev": "SEA", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94603,10 +85539,17 @@ "canonical_id": "game_mlb_2026_20260621_mil_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-21T17:35:00Z", + "date": "2026-06-21", + "time": "1:35p", + "home_team": "Atlanta Braves", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_mil", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94614,21 +85557,17 @@ "canonical_id": "game_mlb_2026_20260621_cin_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-21T17:35:00Z", + "date": "2026-06-21", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "NYY", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_cin", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260621_wsn_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-21T17:40:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94636,10 +85575,35 @@ "canonical_id": "game_mlb_2026_20260621_sf_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-21T17:40:00Z", + "date": "2026-06-21", + "time": "1:40p", + "home_team": "Miami Marlins", + "away_team": "San Francisco Giants", + "home_team_abbrev": "MIA", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_sf", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260621_wsn_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "1:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Washington Nationals", + "home_team_abbrev": "TB", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94647,10 +85611,17 @@ "canonical_id": "game_mlb_2026_20260621_chw_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-21T17:40:00Z", + "date": "2026-06-21", + "time": "1:40p", + "home_team": "Detroit Tigers", + "away_team": "Chicago White Sox", + "home_team_abbrev": "DET", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_chw", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94658,10 +85629,17 @@ "canonical_id": "game_mlb_2026_20260621_stl_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-21T18:10:00Z", + "date": "2026-06-21", + "time": "1:10p", + "home_team": "Kansas City Royals", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "KC", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_stl", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94669,10 +85647,17 @@ "canonical_id": "game_mlb_2026_20260621_cle_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-21T18:10:00Z", + "date": "2026-06-21", + "time": "1:10p", + "home_team": "Houston Astros", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "HOU", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_cle", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94680,10 +85665,17 @@ "canonical_id": "game_mlb_2026_20260621_tor_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-21T18:20:00Z", + "date": "2026-06-21", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "CHC", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_tor", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94691,10 +85683,17 @@ "canonical_id": "game_mlb_2026_20260621_sd_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-21T18:35:00Z", + "date": "2026-06-21", + "time": "1:35p", + "home_team": "Texas Rangers", + "away_team": "San Diego Padres", + "home_team_abbrev": "TEX", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_sd", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94702,10 +85701,17 @@ "canonical_id": "game_mlb_2026_20260621_pit_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-21T19:10:00Z", + "date": "2026-06-21", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "COL", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_pit", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94713,10 +85719,35 @@ "canonical_id": "game_mlb_2026_20260621_min_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-21T19:15:00Z", + "date": "2026-06-21", + "time": "12:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Minnesota Twins", + "home_team_abbrev": "ARI", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_min", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260621_gsv_lv", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-21", + "time": "1p", + "home_team": "Las Vegas Aces", + "away_team": "Golden State Valkyries", + "home_team_abbrev": "LV", + "away_team_abbrev": "GSV", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_gsv", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -94724,21 +85755,17 @@ "canonical_id": "game_mlb_2026_20260621_laa_oak_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-21T20:05:00Z", + "date": "2026-06-21", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "OAK", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_laa", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260621_bos_sea_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-21T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94746,10 +85773,53 @@ "canonical_id": "game_mlb_2026_20260621_bal_lad_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-21T20:10:00Z", + "date": "2026-06-21", + "time": "1:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "LAD", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_bal", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260621_bos_sea_2", + "sport": "MLB", + "season": "2026", + "date": "2026-06-21", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Boston Red Sox", + "home_team_abbrev": "SEA", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_bos", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260621_was_min", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-21", + "time": "5p", + "home_team": "Minnesota Lynx", + "away_team": "Washington Mystics", + "home_team_abbrev": "MIN", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_wnba_min", + "away_team_canonical_id": "team_wnba_was", + "venue": "Target Center", + "stadium_canonical_id": "stadium_wnba_target_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -94757,32 +85827,35 @@ "canonical_id": "game_mlb_2026_20260621_nym_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-21T23:20:00Z", + "date": "2026-06-21", + "time": "7:20p", + "home_team": "Philadelphia Phillies", + "away_team": "New York Mets", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_nym", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260622_tex_mia", - "sport": "MLB", + "canonical_id": "game_wnba_2026_20260622_ny_la", + "sport": "WNBA", "season": "2026", - "game_datetime_utc": "2026-06-22T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260622_nyy_det", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-22T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_comerica_park", + "date": "2026-06-21", + "time": "5p", + "home_team": "Los Angeles Sparks", + "away_team": "New York Liberty", + "home_team_abbrev": "LA", + "away_team_abbrev": "NY", + "home_team_canonical_id": "team_wnba_la", + "away_team_canonical_id": "team_wnba_ny", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -94790,10 +85863,53 @@ "canonical_id": "game_mlb_2026_20260622_kc_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-22T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-06-22", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Kansas City Royals", + "home_team_abbrev": "TB", + "away_team_abbrev": "KC", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_kc", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260622_nyy_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "New York Yankees", + "home_team_abbrev": "DET", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Comerica Park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260622_tex_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Texas Rangers", + "home_team_abbrev": "MIA", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_tex", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94801,10 +85917,35 @@ "canonical_id": "game_mlb_2026_20260622_phi_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-22T22:45:00Z", + "date": "2026-06-22", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "WSN", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_phi", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260622_chi_con", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-22", + "time": "7p", + "home_team": "Connecticut Sun", + "away_team": "Chicago Sky", + "home_team_abbrev": "CON", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_con", + "away_team_canonical_id": "team_wnba_chi", + "venue": "Mohegan Sun Arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -94812,10 +85953,17 @@ "canonical_id": "game_mlb_2026_20260622_hou_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-22T23:07:00Z", + "date": "2026-06-22", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Houston Astros", + "home_team_abbrev": "TOR", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_hou", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94823,10 +85971,17 @@ "canonical_id": "game_mlb_2026_20260622_mil_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-22T23:10:00Z", + "date": "2026-06-22", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "CIN", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_mil", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94834,21 +85989,17 @@ "canonical_id": "game_mlb_2026_20260622_chc_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-22T23:10:00Z", + "date": "2026-06-22", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Chicago Cubs", + "home_team_abbrev": "NYM", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_chc", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260622_lad_min", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-22T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94856,10 +86007,35 @@ "canonical_id": "game_mlb_2026_20260622_cle_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-22T23:40:00Z", + "date": "2026-06-22", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "CHW", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_cle", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260622_lad_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-22", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "LAD", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_lad", + "venue": "Target Field", + "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94867,10 +86043,35 @@ "canonical_id": "game_mlb_2026_20260622_ari_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-22T23:45:00Z", + "date": "2026-06-22", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "STL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_ari", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260623_phx_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-22", + "time": "8p", + "home_team": "Indiana Fever", + "away_team": "Phoenix Mercury", + "home_team_abbrev": "IND", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_phx", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -94878,10 +86079,17 @@ "canonical_id": "game_mlb_2026_20260623_bos_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-23T00:40:00Z", + "date": "2026-06-22", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Boston Red Sox", + "home_team_abbrev": "COL", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_bos", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94889,10 +86097,35 @@ "canonical_id": "game_mlb_2026_20260623_bal_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-23T01:38:00Z", + "date": "2026-06-22", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "LAA", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_bal", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260623_dal_sea", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-22", + "time": "7p", + "home_team": "Seattle Storm", + "away_team": "Dallas Wings", + "home_team_abbrev": "SEA", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_wnba_sea", + "away_team_canonical_id": "team_wnba_dal", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -94900,43 +86133,17 @@ "canonical_id": "game_mlb_2026_20260623_atl_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-23T02:10:00Z", + "date": "2026-06-22", + "time": "7:10p", + "home_team": "San Diego Padres", + "away_team": "Atlanta Braves", + "home_team_abbrev": "SD", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_atl", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260623_tex_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-23T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260623_sea_pit", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-23T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260623_nyy_det", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-23T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94944,10 +86151,71 @@ "canonical_id": "game_mlb_2026_20260623_kc_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-23T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-06-23", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Kansas City Royals", + "home_team_abbrev": "TB", + "away_team_abbrev": "KC", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_kc", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260623_tex_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Texas Rangers", + "home_team_abbrev": "MIA", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_tex", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260623_nyy_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "New York Yankees", + "home_team_abbrev": "DET", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Comerica Park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260623_sea_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Seattle Mariners", + "home_team_abbrev": "PIT", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sea", + "venue": "PNC Park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94955,10 +86223,17 @@ "canonical_id": "game_mlb_2026_20260623_phi_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-23T22:45:00Z", + "date": "2026-06-23", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "WSN", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_phi", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94966,10 +86241,17 @@ "canonical_id": "game_mlb_2026_20260623_hou_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-23T23:07:00Z", + "date": "2026-06-23", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Houston Astros", + "home_team_abbrev": "TOR", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_hou", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94977,10 +86259,17 @@ "canonical_id": "game_mlb_2026_20260623_mil_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-23T23:10:00Z", + "date": "2026-06-23", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "CIN", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_mil", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -94988,21 +86277,17 @@ "canonical_id": "game_mlb_2026_20260623_chc_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-23T23:10:00Z", + "date": "2026-06-23", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Chicago Cubs", + "home_team_abbrev": "NYM", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_chc", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260623_lad_min", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-23T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95010,10 +86295,35 @@ "canonical_id": "game_mlb_2026_20260623_cle_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-23T23:40:00Z", + "date": "2026-06-23", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "CHW", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_cle", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260623_lad_min", + "sport": "MLB", + "season": "2026", + "date": "2026-06-23", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "LAD", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_lad", + "venue": "Target Field", + "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95021,10 +86331,17 @@ "canonical_id": "game_mlb_2026_20260623_ari_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-23T23:45:00Z", + "date": "2026-06-23", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "STL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_ari", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95032,10 +86349,17 @@ "canonical_id": "game_mlb_2026_20260624_bos_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-24T00:40:00Z", + "date": "2026-06-23", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Boston Red Sox", + "home_team_abbrev": "COL", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_bos", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95043,10 +86367,17 @@ "canonical_id": "game_mlb_2026_20260624_bal_laa_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-24T01:38:00Z", + "date": "2026-06-23", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "LAA", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_bal", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95054,10 +86385,17 @@ "canonical_id": "game_mlb_2026_20260624_atl_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-24T01:40:00Z", + "date": "2026-06-23", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Atlanta Braves", + "home_team_abbrev": "SD", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_atl", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95065,10 +86403,35 @@ "canonical_id": "game_mlb_2026_20260624_oak_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-24T01:45:00Z", + "date": "2026-06-23", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Oakland Athletics", + "home_team_abbrev": "SF", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_oak", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260624_ny_lv", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-23", + "time": "7p", + "home_team": "Las Vegas Aces", + "away_team": "New York Liberty", + "home_team_abbrev": "LV", + "away_team_abbrev": "NY", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_ny", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -95076,10 +86439,17 @@ "canonical_id": "game_mlb_2026_20260624_tex_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-24T16:10:00Z", + "date": "2026-06-24", + "time": "12:10p", + "home_team": "Miami Marlins", + "away_team": "Texas Rangers", + "home_team_abbrev": "MIA", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_tex", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95087,10 +86457,17 @@ "canonical_id": "game_mlb_2026_20260624_cle_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-24T18:10:00Z", + "date": "2026-06-24", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "CHW", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_cle", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95098,10 +86475,17 @@ "canonical_id": "game_mlb_2026_20260624_bos_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-24T19:10:00Z", + "date": "2026-06-24", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Boston Red Sox", + "home_team_abbrev": "COL", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_bos", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95109,10 +86493,17 @@ "canonical_id": "game_mlb_2026_20260624_bal_laa_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-24T20:07:00Z", + "date": "2026-06-24", + "time": "1:07p", + "home_team": "Los Angeles Angels", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "LAA", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_bal", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95120,21 +86511,17 @@ "canonical_id": "game_mlb_2026_20260624_sea_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-24T22:40:00Z", + "date": "2026-06-24", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Seattle Mariners", + "home_team_abbrev": "PIT", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_sea", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260624_nyy_det", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-24T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95142,10 +86529,35 @@ "canonical_id": "game_mlb_2026_20260624_kc_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-24T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-06-24", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Kansas City Royals", + "home_team_abbrev": "TB", + "away_team_abbrev": "KC", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_kc", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260624_nyy_det", + "sport": "MLB", + "season": "2026", + "date": "2026-06-24", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "New York Yankees", + "home_team_abbrev": "DET", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Comerica Park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95153,10 +86565,35 @@ "canonical_id": "game_mlb_2026_20260624_phi_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-24T22:45:00Z", + "date": "2026-06-24", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "WSN", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_phi", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260624_phx_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-24", + "time": "7p", + "home_team": "Indiana Fever", + "away_team": "Phoenix Mercury", + "home_team_abbrev": "IND", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_phx", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -95164,10 +86601,17 @@ "canonical_id": "game_mlb_2026_20260624_hou_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-24T23:07:00Z", + "date": "2026-06-24", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Houston Astros", + "home_team_abbrev": "TOR", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_hou", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95175,10 +86619,17 @@ "canonical_id": "game_mlb_2026_20260624_mil_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-24T23:10:00Z", + "date": "2026-06-24", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "CIN", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_mil", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95186,10 +86637,35 @@ "canonical_id": "game_mlb_2026_20260624_chc_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-24T23:10:00Z", + "date": "2026-06-24", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Chicago Cubs", + "home_team_abbrev": "NYM", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_chc", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260624_min_was", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-24", + "time": "7:30p", + "home_team": "Washington Mystics", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "WAS", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_was", + "away_team_canonical_id": "team_wnba_min", + "venue": "Entertainment & Sports Arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -95197,10 +86673,17 @@ "canonical_id": "game_mlb_2026_20260624_lad_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-24T23:40:00Z", + "date": "2026-06-24", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_lad", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95208,10 +86691,17 @@ "canonical_id": "game_mlb_2026_20260624_ari_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-24T23:45:00Z", + "date": "2026-06-24", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "STL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_ari", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95219,10 +86709,17 @@ "canonical_id": "game_mlb_2026_20260625_atl_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-25T00:40:00Z", + "date": "2026-06-24", + "time": "5:40p", + "home_team": "San Diego Padres", + "away_team": "Atlanta Braves", + "home_team_abbrev": "SD", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_atl", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95230,10 +86727,35 @@ "canonical_id": "game_mlb_2026_20260625_oak_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-25T01:45:00Z", + "date": "2026-06-24", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Oakland Athletics", + "home_team_abbrev": "SF", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_oak", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260625_atl_gsv", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-24", + "time": "7p", + "home_team": "Golden State Valkyries", + "away_team": "Atlanta Dream", + "home_team_abbrev": "GSV", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_wnba_gsv", + "away_team_canonical_id": "team_wnba_atl", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_wnba_chase_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -95241,10 +86763,17 @@ "canonical_id": "game_mlb_2026_20260625_kc_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-25T16:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-06-25", + "time": "12:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Kansas City Royals", + "home_team_abbrev": "TB", + "away_team_abbrev": "KC", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_kc", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95252,10 +86781,17 @@ "canonical_id": "game_mlb_2026_20260625_sea_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-25T16:35:00Z", + "date": "2026-06-25", + "time": "12:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "Seattle Mariners", + "home_team_abbrev": "PIT", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_sea", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95263,10 +86799,17 @@ "canonical_id": "game_mlb_2026_20260625_oak_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-25T19:45:00Z", + "date": "2026-06-25", + "time": "12:45p", + "home_team": "San Francisco Giants", + "away_team": "Oakland Athletics", + "home_team_abbrev": "SF", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_oak", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95274,10 +86817,17 @@ "canonical_id": "game_mlb_2026_20260625_hou_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-25T22:40:00Z", + "date": "2026-06-25", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Houston Astros", + "home_team_abbrev": "DET", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_hou", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95285,10 +86835,17 @@ "canonical_id": "game_mlb_2026_20260625_phi_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-25T22:45:00Z", + "date": "2026-06-25", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "WSN", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_phi", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95296,21 +86853,17 @@ "canonical_id": "game_mlb_2026_20260625_tex_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-25T23:07:00Z", + "date": "2026-06-25", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Texas Rangers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_tex", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260625_nyy_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-25T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95318,10 +86871,35 @@ "canonical_id": "game_mlb_2026_20260625_chc_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-25T23:10:00Z", + "date": "2026-06-25", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Chicago Cubs", + "home_team_abbrev": "NYM", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_chc", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260625_nyy_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-25", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "New York Yankees", + "home_team_abbrev": "BOS", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95329,10 +86907,53 @@ "canonical_id": "game_mlb_2026_20260625_ari_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-25T23:45:00Z", + "date": "2026-06-25", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "STL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_ari", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260626_dal_lv", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-25", + "time": "7p", + "home_team": "Las Vegas Aces", + "away_team": "Dallas Wings", + "home_team_abbrev": "LV", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_dal", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260626_ny_sea", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-25", + "time": "7p", + "home_team": "Seattle Storm", + "away_team": "New York Liberty", + "home_team_abbrev": "SEA", + "away_team_abbrev": "NY", + "home_team_canonical_id": "team_wnba_sea", + "away_team_canonical_id": "team_wnba_ny", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -95340,10 +86961,17 @@ "canonical_id": "game_mlb_2026_20260626_hou_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-26T22:40:00Z", + "date": "2026-06-26", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Houston Astros", + "home_team_abbrev": "DET", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_hou", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95351,10 +86979,17 @@ "canonical_id": "game_mlb_2026_20260626_cin_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-26T22:40:00Z", + "date": "2026-06-26", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_cin", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95362,10 +86997,17 @@ "canonical_id": "game_mlb_2026_20260626_wsn_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-26T23:05:00Z", + "date": "2026-06-26", + "time": "7:05p", + "home_team": "Baltimore Orioles", + "away_team": "Washington Nationals", + "home_team_abbrev": "BAL", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95373,10 +87015,17 @@ "canonical_id": "game_mlb_2026_20260626_tex_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-26T23:07:00Z", + "date": "2026-06-26", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Texas Rangers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_tex", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95384,32 +87033,17 @@ "canonical_id": "game_mlb_2026_20260626_sea_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-26T23:10:00Z", + "date": "2026-06-26", + "time": "7:10p", + "home_team": "Cleveland Guardians", + "away_team": "Seattle Mariners", + "home_team_abbrev": "CLE", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_sea", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260626_phi_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-26T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260626_nyy_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-26T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95417,10 +87051,71 @@ "canonical_id": "game_mlb_2026_20260626_ari_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-26T23:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-06-26", + "time": "7:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "TB", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_ari", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260626_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "NYM", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260626_nyy_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-26", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "New York Yankees", + "home_team_abbrev": "BOS", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260626_was_con", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-26", + "time": "7:30p", + "home_team": "Connecticut Sun", + "away_team": "Washington Mystics", + "home_team_abbrev": "CON", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_wnba_con", + "away_team_canonical_id": "team_wnba_was", + "venue": "Mohegan Sun Arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -95428,10 +87123,17 @@ "canonical_id": "game_mlb_2026_20260626_kc_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-26T23:40:00Z", + "date": "2026-06-26", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Kansas City Royals", + "home_team_abbrev": "CHW", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_kc", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95439,10 +87141,17 @@ "canonical_id": "game_mlb_2026_20260626_chc_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-26T23:40:00Z", + "date": "2026-06-26", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Chicago Cubs", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_chc", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95450,10 +87159,17 @@ "canonical_id": "game_mlb_2026_20260627_col_min_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-27T00:10:00Z", + "date": "2026-06-26", + "time": "7:10p", + "home_team": "Minnesota Twins", + "away_team": "Colorado Rockies", + "home_team_abbrev": "MIN", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_col", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95461,10 +87177,17 @@ "canonical_id": "game_mlb_2026_20260627_mia_stl_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-27T00:15:00Z", + "date": "2026-06-26", + "time": "7:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Miami Marlins", + "home_team_abbrev": "STL", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_mia", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95472,10 +87195,17 @@ "canonical_id": "game_mlb_2026_20260627_oak_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-27T01:38:00Z", + "date": "2026-06-26", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Oakland Athletics", + "home_team_abbrev": "LAA", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_oak", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95483,10 +87213,35 @@ "canonical_id": "game_mlb_2026_20260627_lad_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-27T01:40:00Z", + "date": "2026-06-26", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "SD", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_lad", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260627_atl_gsv", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-26", + "time": "7p", + "home_team": "Golden State Valkyries", + "away_team": "Atlanta Dream", + "home_team_abbrev": "GSV", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_wnba_gsv", + "away_team_canonical_id": "team_wnba_atl", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_wnba_chase_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -95494,10 +87249,17 @@ "canonical_id": "game_mlb_2026_20260627_atl_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-27T02:15:00Z", + "date": "2026-06-26", + "time": "7:15p", + "home_team": "San Francisco Giants", + "away_team": "Atlanta Braves", + "home_team_abbrev": "SF", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_atl", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95505,10 +87267,17 @@ "canonical_id": "game_mlb_2026_20260627_nyy_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-27T17:10:00Z", + "date": "2026-06-27", + "time": "1:10p", + "home_team": "Boston Red Sox", + "away_team": "New York Yankees", + "home_team_abbrev": "BOS", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95516,10 +87285,17 @@ "canonical_id": "game_mlb_2026_20260627_hou_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-27T17:10:00Z", + "date": "2026-06-27", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Houston Astros", + "home_team_abbrev": "DET", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_hou", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95527,10 +87303,17 @@ "canonical_id": "game_mlb_2026_20260627_tex_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-27T19:07:00Z", + "date": "2026-06-27", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Texas Rangers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_tex", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95538,21 +87321,17 @@ "canonical_id": "game_mlb_2026_20260627_cin_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-27T20:05:00Z", + "date": "2026-06-27", + "time": "4:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_cin", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260627_phi_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-27T20:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95560,10 +87339,35 @@ "canonical_id": "game_mlb_2026_20260627_kc_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-27T20:10:00Z", + "date": "2026-06-27", + "time": "3:10p", + "home_team": "Chicago White Sox", + "away_team": "Kansas City Royals", + "home_team_abbrev": "CHW", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_kc", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260627_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "4:10p", + "home_team": "New York Mets", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "NYM", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95571,10 +87375,17 @@ "canonical_id": "game_mlb_2026_20260627_ari_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-27T22:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-06-27", + "time": "6:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "TB", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_ari", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95582,21 +87393,17 @@ "canonical_id": "game_mlb_2026_20260627_wsn_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-27T23:05:00Z", + "date": "2026-06-27", + "time": "7:05p", + "home_team": "Baltimore Orioles", + "away_team": "Washington Nationals", + "home_team_abbrev": "BAL", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260627_sea_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-27T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95604,10 +87411,35 @@ "canonical_id": "game_mlb_2026_20260627_col_min_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-27T23:10:00Z", + "date": "2026-06-27", + "time": "6:10p", + "home_team": "Minnesota Twins", + "away_team": "Colorado Rockies", + "home_team_abbrev": "MIN", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_col", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260627_sea_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-27", + "time": "7:10p", + "home_team": "Cleveland Guardians", + "away_team": "Seattle Mariners", + "home_team_abbrev": "CLE", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sea", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95615,10 +87447,17 @@ "canonical_id": "game_mlb_2026_20260627_chc_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-27T23:10:00Z", + "date": "2026-06-27", + "time": "6:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Chicago Cubs", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_chc", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95626,10 +87465,35 @@ "canonical_id": "game_mlb_2026_20260627_mia_stl_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-27T23:15:00Z", + "date": "2026-06-27", + "time": "6:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Miami Marlins", + "home_team_abbrev": "STL", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_mia", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260628_la_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-27", + "time": "8p", + "home_team": "Indiana Fever", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "IND", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_la", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -95637,10 +87501,35 @@ "canonical_id": "game_mlb_2026_20260628_lad_sd_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-28T00:40:00Z", + "date": "2026-06-27", + "time": "5:40p", + "home_team": "San Diego Padres", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "SD", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_lad", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260628_atl_sea", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-27", + "time": "6p", + "home_team": "Seattle Storm", + "away_team": "Atlanta Dream", + "home_team_abbrev": "SEA", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_wnba_sea", + "away_team_canonical_id": "team_wnba_atl", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -95648,10 +87537,17 @@ "canonical_id": "game_mlb_2026_20260628_atl_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-28T01:05:00Z", + "date": "2026-06-27", + "time": "6:05p", + "home_team": "San Francisco Giants", + "away_team": "Atlanta Braves", + "home_team_abbrev": "SF", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_atl", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95659,10 +87555,17 @@ "canonical_id": "game_mlb_2026_20260628_oak_laa_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-28T01:38:00Z", + "date": "2026-06-27", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Oakland Athletics", + "home_team_abbrev": "LAA", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_oak", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95670,10 +87573,17 @@ "canonical_id": "game_mlb_2026_20260628_wsn_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-28T17:35:00Z", + "date": "2026-06-28", + "time": "1:35p", + "home_team": "Baltimore Orioles", + "away_team": "Washington Nationals", + "home_team_abbrev": "BAL", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95681,10 +87591,17 @@ "canonical_id": "game_mlb_2026_20260628_cin_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-28T17:35:00Z", + "date": "2026-06-28", + "time": "1:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_cin", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95692,10 +87609,17 @@ "canonical_id": "game_mlb_2026_20260628_tex_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-28T17:37:00Z", + "date": "2026-06-28", + "time": "1:37p", + "home_team": "Toronto Blue Jays", + "away_team": "Texas Rangers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_tex", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95703,10 +87627,17 @@ "canonical_id": "game_mlb_2026_20260628_sea_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-28T17:40:00Z", + "date": "2026-06-28", + "time": "1:40p", + "home_team": "Cleveland Guardians", + "away_team": "Seattle Mariners", + "home_team_abbrev": "CLE", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_sea", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95714,10 +87645,17 @@ "canonical_id": "game_mlb_2026_20260628_phi_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-28T17:40:00Z", + "date": "2026-06-28", + "time": "1:40p", + "home_team": "New York Mets", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "NYM", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_phi", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95725,10 +87663,17 @@ "canonical_id": "game_mlb_2026_20260628_hou_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-28T17:40:00Z", + "date": "2026-06-28", + "time": "1:40p", + "home_team": "Detroit Tigers", + "away_team": "Houston Astros", + "home_team_abbrev": "DET", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_hou", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95736,21 +87681,35 @@ "canonical_id": "game_mlb_2026_20260628_ari_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-28T17:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-06-28", + "time": "1:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "TB", + "away_team_abbrev": "ARI", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_ari", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260628_kc_chw", - "sport": "MLB", + "canonical_id": "game_wnba_2026_20260628_min_dal", + "sport": "WNBA", "season": "2026", - "game_datetime_utc": "2026-06-28T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "date": "2026-06-28", + "time": "1p", + "home_team": "Dallas Wings", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "DAL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_min", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -95758,10 +87717,17 @@ "canonical_id": "game_mlb_2026_20260628_col_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-28T18:10:00Z", + "date": "2026-06-28", + "time": "1:10p", + "home_team": "Minnesota Twins", + "away_team": "Colorado Rockies", + "home_team_abbrev": "MIN", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_col", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95769,10 +87735,35 @@ "canonical_id": "game_mlb_2026_20260628_chc_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-28T18:10:00Z", + "date": "2026-06-28", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Chicago Cubs", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_chc", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260628_kc_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-06-28", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Kansas City Royals", + "home_team_abbrev": "CHW", + "away_team_abbrev": "KC", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_kc", + "venue": "Guaranteed Rate Field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95780,10 +87771,17 @@ "canonical_id": "game_mlb_2026_20260628_mia_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-28T18:15:00Z", + "date": "2026-06-28", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Miami Marlins", + "home_team_abbrev": "STL", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_mia", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95791,10 +87789,35 @@ "canonical_id": "game_mlb_2026_20260628_oak_laa_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-28T19:15:00Z", + "date": "2026-06-28", + "time": "12:10p", + "home_team": "Los Angeles Angels", + "away_team": "Oakland Athletics", + "home_team_abbrev": "LAA", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_oak", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260628_lv_chi", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-28", + "time": "3p", + "home_team": "Chicago Sky", + "away_team": "Las Vegas Aces", + "home_team_abbrev": "CHI", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_wnba_chi", + "away_team_canonical_id": "team_wnba_lv", + "venue": "Wintrust Arena", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -95802,10 +87825,17 @@ "canonical_id": "game_mlb_2026_20260628_atl_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-28T20:05:00Z", + "date": "2026-06-28", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Atlanta Braves", + "home_team_abbrev": "SF", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_atl", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95813,10 +87843,35 @@ "canonical_id": "game_mlb_2026_20260628_lad_sd_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-28T20:10:00Z", + "date": "2026-06-28", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "SD", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_lad", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260628_ny_gsv", + "sport": "WNBA", + "season": "2026", + "date": "2026-06-28", + "time": "4p", + "home_team": "Golden State Valkyries", + "away_team": "New York Liberty", + "home_team_abbrev": "GSV", + "away_team_abbrev": "NY", + "home_team_canonical_id": "team_wnba_gsv", + "away_team_canonical_id": "team_wnba_ny", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_wnba_chase_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -95824,10 +87879,17 @@ "canonical_id": "game_mlb_2026_20260628_nyy_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-28T23:20:00Z", + "date": "2026-06-28", + "time": "7:20p", + "home_team": "Boston Red Sox", + "away_team": "New York Yankees", + "home_team_abbrev": "BOS", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95835,10 +87897,17 @@ "canonical_id": "game_mlb_2026_20260629_chw_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-29T22:35:00Z", + "date": "2026-06-29", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Chicago White Sox", + "home_team_abbrev": "BAL", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_chw", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95846,10 +87915,17 @@ "canonical_id": "game_mlb_2026_20260629_pit_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-29T22:40:00Z", + "date": "2026-06-29", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "PHI", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_pit", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95857,10 +87933,17 @@ "canonical_id": "game_mlb_2026_20260629_det_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-29T23:05:00Z", + "date": "2026-06-29", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Detroit Tigers", + "home_team_abbrev": "NYY", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_det", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95868,21 +87951,17 @@ "canonical_id": "game_mlb_2026_20260629_nym_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-29T23:07:00Z", + "date": "2026-06-29", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "New York Mets", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_nym", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260629_wsn_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-29T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95890,10 +87969,35 @@ "canonical_id": "game_mlb_2026_20260629_tex_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-29T23:10:00Z", + "date": "2026-06-29", + "time": "7:10p", + "home_team": "Cleveland Guardians", + "away_team": "Texas Rangers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_tex", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260629_wsn_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Washington Nationals", + "home_team_abbrev": "BOS", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95901,10 +88005,17 @@ "canonical_id": "game_mlb_2026_20260629_cin_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-29T23:40:00Z", + "date": "2026-06-29", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_cin", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95912,10 +88023,17 @@ "canonical_id": "game_mlb_2026_20260630_sd_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-30T00:05:00Z", + "date": "2026-06-29", + "time": "7:05p", + "home_team": "Chicago Cubs", + "away_team": "San Diego Padres", + "home_team_abbrev": "CHC", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_sd", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95923,10 +88041,17 @@ "canonical_id": "game_mlb_2026_20260630_min_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-30T00:10:00Z", + "date": "2026-06-29", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Minnesota Twins", + "home_team_abbrev": "HOU", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_min", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95934,32 +88059,17 @@ "canonical_id": "game_mlb_2026_20260630_mia_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-30T00:40:00Z", + "date": "2026-06-29", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Miami Marlins", + "home_team_abbrev": "COL", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_mia", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260630_sf_ari", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-30T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260630_lad_oak", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-30T01:40:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95967,10 +88077,53 @@ "canonical_id": "game_mlb_2026_20260630_laa_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-30T01:40:00Z", + "date": "2026-06-29", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "SEA", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260630_lad_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "OAK", + "away_team_abbrev": "LAD", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_lad", + "venue": "Sutter Health Park", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260630_sf_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-06-29", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "San Francisco Giants", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Chase Field", + "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -95978,21 +88131,17 @@ "canonical_id": "game_mlb_2026_20260630_chw_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-30T22:35:00Z", + "date": "2026-06-30", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Chicago White Sox", + "home_team_abbrev": "BAL", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_chw", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260630_tex_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-06-30T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96000,10 +88149,35 @@ "canonical_id": "game_mlb_2026_20260630_pit_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-30T22:40:00Z", + "date": "2026-06-30", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "PHI", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_pit", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260630_tex_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-06-30", + "time": "6:40p", + "home_team": "Cleveland Guardians", + "away_team": "Texas Rangers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96011,10 +88185,17 @@ "canonical_id": "game_mlb_2026_20260630_det_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-30T23:05:00Z", + "date": "2026-06-30", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Detroit Tigers", + "home_team_abbrev": "NYY", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_det", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96022,10 +88203,17 @@ "canonical_id": "game_mlb_2026_20260630_nym_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-30T23:07:00Z", + "date": "2026-06-30", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "New York Mets", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_nym", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96033,10 +88221,17 @@ "canonical_id": "game_mlb_2026_20260630_wsn_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-30T23:10:00Z", + "date": "2026-06-30", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Washington Nationals", + "home_team_abbrev": "BOS", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96044,10 +88239,17 @@ "canonical_id": "game_mlb_2026_20260630_stl_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-30T23:15:00Z", + "date": "2026-06-30", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "ATL", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_stl", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96055,10 +88257,17 @@ "canonical_id": "game_mlb_2026_20260630_tbr_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-30T23:40:00Z", + "date": "2026-06-30", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "KC", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96066,10 +88275,17 @@ "canonical_id": "game_mlb_2026_20260630_cin_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-06-30T23:40:00Z", + "date": "2026-06-30", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_cin", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96077,10 +88293,17 @@ "canonical_id": "game_mlb_2026_20260701_sd_chc_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-01T00:05:00Z", + "date": "2026-06-30", + "time": "7:05p", + "home_team": "Chicago Cubs", + "away_team": "San Diego Padres", + "home_team_abbrev": "CHC", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_sd", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96088,10 +88311,17 @@ "canonical_id": "game_mlb_2026_20260701_min_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-01T00:10:00Z", + "date": "2026-06-30", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Minnesota Twins", + "home_team_abbrev": "HOU", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_min", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96099,10 +88329,17 @@ "canonical_id": "game_mlb_2026_20260701_mia_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-01T00:40:00Z", + "date": "2026-06-30", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Miami Marlins", + "home_team_abbrev": "COL", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_mia", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96110,10 +88347,17 @@ "canonical_id": "game_mlb_2026_20260701_sf_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-01T01:40:00Z", + "date": "2026-06-30", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "San Francisco Giants", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_sf", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96121,10 +88365,17 @@ "canonical_id": "game_mlb_2026_20260701_lad_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-01T01:40:00Z", + "date": "2026-06-30", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "OAK", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_lad", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96132,10 +88383,17 @@ "canonical_id": "game_mlb_2026_20260701_laa_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-01T01:40:00Z", + "date": "2026-06-30", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "SEA", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96143,10 +88401,17 @@ "canonical_id": "game_mlb_2026_20260701_chw_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-01T16:35:00Z", + "date": "2026-07-01", + "time": "12:35p", + "home_team": "Baltimore Orioles", + "away_team": "Chicago White Sox", + "home_team_abbrev": "BAL", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_chw", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96154,10 +88419,17 @@ "canonical_id": "game_mlb_2026_20260701_tex_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-01T17:10:00Z", + "date": "2026-07-01", + "time": "1:10p", + "home_team": "Cleveland Guardians", + "away_team": "Texas Rangers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_tex", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96165,10 +88437,17 @@ "canonical_id": "game_mlb_2026_20260701_wsn_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-01T17:35:00Z", + "date": "2026-07-01", + "time": "1:35p", + "home_team": "Boston Red Sox", + "away_team": "Washington Nationals", + "home_team_abbrev": "BOS", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96176,10 +88455,17 @@ "canonical_id": "game_mlb_2026_20260701_det_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-01T17:35:00Z", + "date": "2026-07-01", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Detroit Tigers", + "home_team_abbrev": "NYY", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_det", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96187,10 +88473,17 @@ "canonical_id": "game_mlb_2026_20260701_sd_chc_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-01T18:20:00Z", + "date": "2026-07-01", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "San Diego Padres", + "home_team_abbrev": "CHC", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_sd", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96198,10 +88491,17 @@ "canonical_id": "game_mlb_2026_20260701_nym_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-01T19:07:00Z", + "date": "2026-07-01", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "New York Mets", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_nym", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96209,10 +88509,17 @@ "canonical_id": "game_mlb_2026_20260701_pit_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-01T22:40:00Z", + "date": "2026-07-01", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "PHI", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_pit", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96220,10 +88527,17 @@ "canonical_id": "game_mlb_2026_20260701_stl_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-01T23:15:00Z", + "date": "2026-07-01", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "ATL", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_stl", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96231,21 +88545,17 @@ "canonical_id": "game_mlb_2026_20260701_tbr_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-01T23:40:00Z", + "date": "2026-07-01", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "KC", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260702_min_hou", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-02T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96253,10 +88563,35 @@ "canonical_id": "game_mlb_2026_20260702_cin_mil_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-02T00:10:00Z", + "date": "2026-07-01", + "time": "7:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_cin", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260702_min_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-01", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Minnesota Twins", + "home_team_abbrev": "HOU", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_min", + "venue": "Minute Maid Park", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96264,10 +88599,17 @@ "canonical_id": "game_mlb_2026_20260702_mia_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-02T00:40:00Z", + "date": "2026-07-01", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Miami Marlins", + "home_team_abbrev": "COL", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_mia", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96275,10 +88617,17 @@ "canonical_id": "game_mlb_2026_20260702_sf_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-02T01:40:00Z", + "date": "2026-07-01", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "San Francisco Giants", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_sf", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96286,10 +88635,17 @@ "canonical_id": "game_mlb_2026_20260702_lad_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-02T01:40:00Z", + "date": "2026-07-01", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "OAK", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_lad", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96297,10 +88653,17 @@ "canonical_id": "game_mlb_2026_20260702_pit_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-02T16:35:00Z", + "date": "2026-07-02", + "time": "12:35p", + "home_team": "Philadelphia Phillies", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "PHI", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_pit", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96308,10 +88671,17 @@ "canonical_id": "game_mlb_2026_20260702_cin_mil_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-02T18:10:00Z", + "date": "2026-07-02", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_cin", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96319,10 +88689,17 @@ "canonical_id": "game_mlb_2026_20260702_mia_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-02T19:10:00Z", + "date": "2026-07-02", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Miami Marlins", + "home_team_abbrev": "COL", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_mia", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96330,10 +88707,17 @@ "canonical_id": "game_mlb_2026_20260702_chw_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-02T22:40:00Z", + "date": "2026-07-02", + "time": "6:40p", + "home_team": "Cleveland Guardians", + "away_team": "Chicago White Sox", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_chw", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96341,10 +88725,35 @@ "canonical_id": "game_mlb_2026_20260702_stl_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-02T23:15:00Z", + "date": "2026-07-02", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "ATL", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_stl", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260702_atl_was", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-02", + "time": "7:30p", + "home_team": "Washington Mystics", + "away_team": "Atlanta Dream", + "home_team_abbrev": "WAS", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_wnba_was", + "away_team_canonical_id": "team_wnba_atl", + "venue": "Entertainment & Sports Arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -96352,10 +88761,35 @@ "canonical_id": "game_mlb_2026_20260702_tbr_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-02T23:40:00Z", + "date": "2026-07-02", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "KC", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260703_dal_con", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-02", + "time": "8p", + "home_team": "Connecticut Sun", + "away_team": "Dallas Wings", + "home_team_abbrev": "CON", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_wnba_con", + "away_team_canonical_id": "team_wnba_dal", + "venue": "Mohegan Sun Arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -96363,10 +88797,17 @@ "canonical_id": "game_mlb_2026_20260703_det_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-03T00:05:00Z", + "date": "2026-07-02", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Detroit Tigers", + "home_team_abbrev": "TEX", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_det", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96374,10 +88815,35 @@ "canonical_id": "game_mlb_2026_20260703_laa_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-03T01:40:00Z", + "date": "2026-07-02", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "SEA", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260703_sea_phx", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-02", + "time": "10p", + "home_team": "Phoenix Mercury", + "away_team": "Seattle Storm", + "home_team_abbrev": "PHX", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_wnba_phx", + "away_team_canonical_id": "team_wnba_sea", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -96385,10 +88851,17 @@ "canonical_id": "game_mlb_2026_20260703_sd_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-03T02:10:00Z", + "date": "2026-07-02", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "San Diego Padres", + "home_team_abbrev": "LAD", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_sd", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96396,10 +88869,17 @@ "canonical_id": "game_mlb_2026_20260703_stl_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-03T20:05:00Z", + "date": "2026-07-03", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "CHC", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_stl", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96407,10 +88887,17 @@ "canonical_id": "game_mlb_2026_20260703_pit_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-03T22:45:00Z", + "date": "2026-07-03", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "WSN", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_pit", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96418,10 +88905,17 @@ "canonical_id": "game_mlb_2026_20260703_min_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-03T23:05:00Z", + "date": "2026-07-03", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Minnesota Twins", + "home_team_abbrev": "NYY", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_min", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96429,10 +88923,17 @@ "canonical_id": "game_mlb_2026_20260703_chw_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-03T23:10:00Z", + "date": "2026-07-03", + "time": "7:10p", + "home_team": "Cleveland Guardians", + "away_team": "Chicago White Sox", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_chw", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96440,10 +88941,17 @@ "canonical_id": "game_mlb_2026_20260703_bal_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-03T23:10:00Z", + "date": "2026-07-03", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "CIN", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_bal", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96451,21 +88959,53 @@ "canonical_id": "game_mlb_2026_20260703_nym_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-03T23:15:00Z", + "date": "2026-07-03", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "New York Mets", + "home_team_abbrev": "ATL", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_nym", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260704_tbr_hou_1", - "sport": "MLB", + "canonical_id": "game_wnba_2026_20260703_min_ny", + "sport": "WNBA", "season": "2026", - "game_datetime_utc": "2026-07-04T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "date": "2026-07-03", + "time": "7:30p", + "home_team": "New York Liberty", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "NY", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_min", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260704_hou_wsh", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-03", + "time": "8p", + "home_team": "Washington Washington Spirit", + "away_team": "Houston Houston Dash", + "home_team_abbrev": "WSH", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nwsl_wsh", + "away_team_canonical_id": "team_nwsl_hou", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_nwsl_audi_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -96473,10 +89013,53 @@ "canonical_id": "game_mlb_2026_20260704_sf_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-04T00:10:00Z", + "date": "2026-07-03", + "time": "6:10p", + "home_team": "Colorado Rockies", + "away_team": "San Francisco Giants", + "home_team_abbrev": "COL", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_sf", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260704_tbr_hou_1", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "HOU", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Minute Maid Park", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260704_kcc_den", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-03", + "time": "7:30p", + "home_team": "Denver Denver Summit FC", + "away_team": "Kansas City Kansas City Current", + "home_team_abbrev": "DEN", + "away_team_abbrev": "KCC", + "home_team_canonical_id": "team_nwsl_den", + "away_team_canonical_id": "team_nwsl_kcc", + "venue": "Centennial Stadium", + "stadium_canonical_id": "stadium_nwsl_centennial_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -96484,21 +89067,17 @@ "canonical_id": "game_mlb_2026_20260704_bos_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-04T01:38:00Z", + "date": "2026-07-03", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Boston Red Sox", + "home_team_abbrev": "LAA", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_bos", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260704_mil_ari", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-04T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96506,21 +89085,71 @@ "canonical_id": "game_mlb_2026_20260704_mia_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-04T01:40:00Z", + "date": "2026-07-03", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Miami Marlins", + "home_team_abbrev": "OAK", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_mia", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260704_tor_sea_1", + "canonical_id": "game_mlb_2026_20260704_mil_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-04T02:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "date": "2026-07-03", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_mil", + "venue": "Chase Field", + "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260704_orl_ang", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-03", + "time": "7p", + "home_team": "Los Angeles Angel City FC", + "away_team": "Orlando Orlando Pride", + "home_team_abbrev": "ANG", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nwsl_ang", + "away_team_canonical_id": "team_nwsl_orl", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_nwsl_bmo_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260704_chi_lv", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-03", + "time": "7p", + "home_team": "Las Vegas Aces", + "away_team": "Chicago Sky", + "home_team_abbrev": "LV", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_chi", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -96528,10 +89157,35 @@ "canonical_id": "game_mlb_2026_20260704_sd_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-04T02:10:00Z", + "date": "2026-07-03", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "San Diego Padres", + "home_team_abbrev": "LAD", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_sd", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260704_tor_sea_1", + "sport": "MLB", + "season": "2026", + "date": "2026-07-03", + "time": "7:10p", + "home_team": "Seattle Mariners", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "SEA", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tor", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96539,10 +89193,35 @@ "canonical_id": "game_mlb_2026_20260704_pit_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-04T15:05:00Z", + "date": "2026-07-04", + "time": "11:05a", + "home_team": "Washington Nationals", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "WSN", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_pit", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260704_gsv_atl", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-04", + "time": "1p", + "home_team": "Atlanta Dream", + "away_team": "Golden State Valkyries", + "home_team_abbrev": "ATL", + "away_team_abbrev": "GSV", + "home_team_canonical_id": "team_wnba_atl", + "away_team_canonical_id": "team_wnba_gsv", + "venue": "Gateway Center Arena", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -96550,10 +89229,17 @@ "canonical_id": "game_mlb_2026_20260704_min_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-04T17:35:00Z", + "date": "2026-07-04", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Minnesota Twins", + "home_team_abbrev": "NYY", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_min", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96561,10 +89247,17 @@ "canonical_id": "game_mlb_2026_20260704_det_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-04T20:05:00Z", + "date": "2026-07-04", + "time": "3:05p", + "home_team": "Texas Rangers", + "away_team": "Detroit Tigers", + "home_team_abbrev": "TEX", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_det", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96572,21 +89265,35 @@ "canonical_id": "game_mlb_2026_20260704_tor_sea_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-04T20:10:00Z", + "date": "2026-07-04", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "SEA", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260704_tbr_hou_2", - "sport": "MLB", + "canonical_id": "game_nwsl_2026_20260704_sea_ncc", + "sport": "NWSL", "season": "2026", - "game_datetime_utc": "2026-07-04T23:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "date": "2026-07-04", + "time": "6:30p", + "home_team": "North Carolina North Carolina Courage", + "away_team": "Seattle Seattle Reign", + "home_team_abbrev": "NCC", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nwsl_ncc", + "away_team_canonical_id": "team_nwsl_sea", + "venue": "WakeMed Soccer Park", + "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -96594,10 +89301,35 @@ "canonical_id": "game_mlb_2026_20260704_chw_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-04T23:10:00Z", + "date": "2026-07-04", + "time": "7:10p", + "home_team": "Cleveland Guardians", + "away_team": "Chicago White Sox", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_chw", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260704_tbr_hou_2", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "6:10p", + "home_team": "Houston Astros", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "HOU", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Minute Maid Park", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96605,10 +89337,17 @@ "canonical_id": "game_mlb_2026_20260704_bal_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-04T23:10:00Z", + "date": "2026-07-04", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "CIN", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_bal", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96616,10 +89355,17 @@ "canonical_id": "game_mlb_2026_20260705_stl_chc_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-05T00:08:00Z", + "date": "2026-07-04", + "time": "7:08p", + "home_team": "Chicago Cubs", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "CHC", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_stl", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96627,21 +89373,17 @@ "canonical_id": "game_mlb_2026_20260705_nym_atl_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-05T00:08:00Z", + "date": "2026-07-04", + "time": "8:08p", + "home_team": "Atlanta Braves", + "away_team": "New York Mets", + "home_team_abbrev": "ATL", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_nym", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260705_sf_col_1", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-05T00:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96649,10 +89391,53 @@ "canonical_id": "game_mlb_2026_20260705_phi_kc_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-05T00:10:00Z", + "date": "2026-07-04", + "time": "7:10p", + "home_team": "Kansas City Royals", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "KC", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_phi", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260705_sf_col_1", + "sport": "MLB", + "season": "2026", + "date": "2026-07-04", + "time": "6:10p", + "home_team": "Colorado Rockies", + "away_team": "San Francisco Giants", + "home_team_abbrev": "COL", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Coors Field", + "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260705_njy_sdw", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-04", + "time": "5:45p", + "home_team": "San Diego San Diego Wave", + "away_team": "New Jersey NJ/NY Gotham FC", + "home_team_abbrev": "SDW", + "away_team_abbrev": "NJY", + "home_team_canonical_id": "team_nwsl_sdw", + "away_team_canonical_id": "team_nwsl_njy", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -96660,10 +89445,17 @@ "canonical_id": "game_mlb_2026_20260705_bos_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-05T01:38:00Z", + "date": "2026-07-04", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Boston Red Sox", + "home_team_abbrev": "LAA", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_bos", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96671,10 +89463,17 @@ "canonical_id": "game_mlb_2026_20260705_mil_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-05T01:40:00Z", + "date": "2026-07-04", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_mil", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96682,10 +89481,17 @@ "canonical_id": "game_mlb_2026_20260705_mia_oak_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-05T01:40:00Z", + "date": "2026-07-04", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Miami Marlins", + "home_team_abbrev": "OAK", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_mia", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96693,10 +89499,35 @@ "canonical_id": "game_mlb_2026_20260705_sd_lad_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-05T02:10:00Z", + "date": "2026-07-04", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "San Diego Padres", + "home_team_abbrev": "LAD", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_sd", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260705_bay_bos", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-05", + "time": "12p", + "home_team": "Boston Boston Legacy FC", + "away_team": "San Francisco Bay FC", + "home_team_abbrev": "BOS", + "away_team_abbrev": "BAY", + "home_team_canonical_id": "team_nwsl_bos", + "away_team_canonical_id": "team_nwsl_bay", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_nwsl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -96704,21 +89535,17 @@ "canonical_id": "game_mlb_2026_20260705_nym_atl_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-05T16:30:00Z", + "date": "2026-07-05", + "time": "12:30p", + "home_team": "Atlanta Braves", + "away_team": "New York Mets", + "home_team_abbrev": "ATL", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_nym", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260705_pit_wsn", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-05T17:00:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96726,10 +89553,35 @@ "canonical_id": "game_mlb_2026_20260705_bal_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-05T17:00:00Z", + "date": "2026-07-05", + "time": "1p", + "home_team": "Cincinnati Reds", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "CIN", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_bal", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260705_pit_wsn", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "1p", + "home_team": "Washington Nationals", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "WSN", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_pit", + "venue": "Nationals Park", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96737,10 +89589,17 @@ "canonical_id": "game_mlb_2026_20260705_min_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-05T17:35:00Z", + "date": "2026-07-05", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Minnesota Twins", + "home_team_abbrev": "NYY", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_min", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96748,10 +89607,17 @@ "canonical_id": "game_mlb_2026_20260705_chw_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-05T18:00:00Z", + "date": "2026-07-05", + "time": "2p", + "home_team": "Cleveland Guardians", + "away_team": "Chicago White Sox", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_chw", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96759,10 +89625,17 @@ "canonical_id": "game_mlb_2026_20260705_stl_chc_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-05T18:30:00Z", + "date": "2026-07-05", + "time": "1:30p", + "home_team": "Chicago Cubs", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "CHC", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_stl", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96770,21 +89643,17 @@ "canonical_id": "game_mlb_2026_20260705_phi_kc_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-05T19:00:00Z", + "date": "2026-07-05", + "time": "2p", + "home_team": "Kansas City Royals", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "KC", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_phi", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260705_tbr_hou", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-05T19:30:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96792,10 +89661,35 @@ "canonical_id": "game_mlb_2026_20260705_det_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-05T19:30:00Z", + "date": "2026-07-05", + "time": "2:30p", + "home_team": "Texas Rangers", + "away_team": "Detroit Tigers", + "home_team_abbrev": "TEX", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_det", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260705_tbr_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-07-05", + "time": "2:30p", + "home_team": "Houston Astros", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "HOU", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Minute Maid Park", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96803,10 +89697,17 @@ "canonical_id": "game_mlb_2026_20260705_sf_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-05T20:00:00Z", + "date": "2026-07-05", + "time": "2p", + "home_team": "Colorado Rockies", + "away_team": "San Francisco Giants", + "home_team_abbrev": "COL", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_sf", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96814,10 +89715,17 @@ "canonical_id": "game_mlb_2026_20260705_mil_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-05T20:10:00Z", + "date": "2026-07-05", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_mil", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96825,10 +89733,17 @@ "canonical_id": "game_mlb_2026_20260705_mia_oak_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-05T20:30:00Z", + "date": "2026-07-05", + "time": "1:30p", + "home_team": "Oakland Athletics", + "away_team": "Miami Marlins", + "home_team_abbrev": "OAK", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_mia", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96836,10 +89751,71 @@ "canonical_id": "game_mlb_2026_20260705_tor_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-05T21:00:00Z", + "date": "2026-07-05", + "time": "2p", + "home_team": "Seattle Mariners", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "SEA", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260705_uta_chi", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-05", + "time": "4p", + "home_team": "Chicago Chicago Red Stars", + "away_team": "Utah Utah Royals", + "home_team_abbrev": "CHI", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nwsl_chi", + "away_team_canonical_id": "team_nwsl_uta", + "venue": "Northwestern Medicine Field at Martin Stadium", + "stadium_canonical_id": "stadium_nwsl_northwestern_medicine_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260705_rgn_por", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-05", + "time": "4p", + "home_team": "Portland Portland Thorns", + "away_team": "Louisville Racing Louisville", + "home_team_abbrev": "POR", + "away_team_abbrev": "RGN", + "home_team_canonical_id": "team_nwsl_por", + "away_team_canonical_id": "team_nwsl_rgn", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_nwsl_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260705_ind_lv", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-05", + "time": "4p", + "home_team": "Las Vegas Aces", + "away_team": "Indiana Fever", + "home_team_abbrev": "LV", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_ind", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -96847,10 +89823,17 @@ "canonical_id": "game_mlb_2026_20260705_sd_lad_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-05T23:20:00Z", + "date": "2026-07-05", + "time": "4:20p", + "home_team": "Los Angeles Dodgers", + "away_team": "San Diego Padres", + "home_team_abbrev": "LAD", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_sd", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96858,10 +89841,17 @@ "canonical_id": "game_mlb_2026_20260706_bos_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-06T01:30:00Z", + "date": "2026-07-05", + "time": "6:30p", + "home_team": "Los Angeles Angels", + "away_team": "Boston Red Sox", + "home_team_abbrev": "LAA", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_bos", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96869,10 +89859,17 @@ "canonical_id": "game_mlb_2026_20260706_phi_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-06T18:10:00Z", + "date": "2026-07-06", + "time": "1:10p", + "home_team": "Kansas City Royals", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "KC", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_phi", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96880,10 +89877,17 @@ "canonical_id": "game_mlb_2026_20260706_nyy_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-06T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-07-06", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "New York Yankees", + "home_team_abbrev": "TB", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96891,10 +89895,17 @@ "canonical_id": "game_mlb_2026_20260706_hou_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-06T23:05:00Z", + "date": "2026-07-06", + "time": "7:05p", + "home_team": "Washington Nationals", + "away_team": "Houston Astros", + "home_team_abbrev": "WSN", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_hou", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96902,10 +89913,35 @@ "canonical_id": "game_mlb_2026_20260706_nym_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-06T23:15:00Z", + "date": "2026-07-06", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "New York Mets", + "home_team_abbrev": "ATL", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_nym", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260706_gsv_was", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-06", + "time": "7:30p", + "home_team": "Washington Mystics", + "away_team": "Golden State Valkyries", + "home_team_abbrev": "WAS", + "away_team_abbrev": "GSV", + "home_team_canonical_id": "team_wnba_was", + "away_team_canonical_id": "team_wnba_gsv", + "venue": "Entertainment & Sports Arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -96913,10 +89949,35 @@ "canonical_id": "game_mlb_2026_20260706_mil_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-06T23:45:00Z", + "date": "2026-07-06", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "STL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_mil", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260707_con_min", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-06", + "time": "7p", + "home_team": "Minnesota Lynx", + "away_team": "Connecticut Sun", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CON", + "home_team_canonical_id": "team_wnba_min", + "away_team_canonical_id": "team_wnba_con", + "venue": "Target Center", + "stadium_canonical_id": "stadium_wnba_target_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -96924,10 +89985,17 @@ "canonical_id": "game_mlb_2026_20260707_ari_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-07T01:40:00Z", + "date": "2026-07-06", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "SD", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_ari", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96935,10 +90003,35 @@ "canonical_id": "game_mlb_2026_20260707_tor_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-07T01:45:00Z", + "date": "2026-07-06", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "SF", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_tor", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260707_sea_la", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-06", + "time": "7p", + "home_team": "Los Angeles Sparks", + "away_team": "Seattle Storm", + "home_team_abbrev": "LA", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_wnba_la", + "away_team_canonical_id": "team_wnba_sea", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -96946,10 +90039,17 @@ "canonical_id": "game_mlb_2026_20260707_col_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-07T02:10:00Z", + "date": "2026-07-06", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Colorado Rockies", + "home_team_abbrev": "LAD", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_col", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96957,10 +90057,17 @@ "canonical_id": "game_mlb_2026_20260707_chc_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-07T22:35:00Z", + "date": "2026-07-07", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Chicago Cubs", + "home_team_abbrev": "BAL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_chc", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96968,10 +90075,17 @@ "canonical_id": "game_mlb_2026_20260707_sea_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-07T22:40:00Z", + "date": "2026-07-07", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Seattle Mariners", + "home_team_abbrev": "MIA", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_sea", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -96979,21 +90093,17 @@ "canonical_id": "game_mlb_2026_20260707_oak_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-07T22:40:00Z", + "date": "2026-07-07", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Oakland Athletics", + "home_team_abbrev": "DET", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_oak", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260707_nyy_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-07T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97001,10 +90111,35 @@ "canonical_id": "game_mlb_2026_20260707_atl_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-07T22:40:00Z", + "date": "2026-07-07", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Atlanta Braves", + "home_team_abbrev": "PIT", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_atl", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260707_nyy_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "New York Yankees", + "home_team_abbrev": "TB", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97012,21 +90147,17 @@ "canonical_id": "game_mlb_2026_20260707_hou_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-07T22:45:00Z", + "date": "2026-07-07", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Houston Astros", + "home_team_abbrev": "WSN", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_hou", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260707_phi_cin", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-07T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97034,10 +90165,35 @@ "canonical_id": "game_mlb_2026_20260707_kc_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-07T23:10:00Z", + "date": "2026-07-07", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Kansas City Royals", + "home_team_abbrev": "NYM", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_kc", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260707_phi_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-07", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "CIN", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_phi", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97045,10 +90201,17 @@ "canonical_id": "game_mlb_2026_20260707_cle_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-07T23:40:00Z", + "date": "2026-07-07", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_cle", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97056,10 +90219,17 @@ "canonical_id": "game_mlb_2026_20260707_bos_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-07T23:40:00Z", + "date": "2026-07-07", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Boston Red Sox", + "home_team_abbrev": "CHW", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_bos", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97067,10 +90237,35 @@ "canonical_id": "game_mlb_2026_20260707_mil_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-07T23:45:00Z", + "date": "2026-07-07", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "STL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_mil", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260708_dal_ny", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-07", + "time": "8p", + "home_team": "New York Liberty", + "away_team": "Dallas Wings", + "home_team_abbrev": "NY", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_dal", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -97078,10 +90273,17 @@ "canonical_id": "game_mlb_2026_20260708_laa_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-08T00:05:00Z", + "date": "2026-07-07", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "TEX", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_laa", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97089,10 +90291,17 @@ "canonical_id": "game_mlb_2026_20260708_ari_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-08T01:40:00Z", + "date": "2026-07-07", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "SD", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_ari", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97100,10 +90309,35 @@ "canonical_id": "game_mlb_2026_20260708_tor_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-08T01:45:00Z", + "date": "2026-07-07", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "SF", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_tor", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260708_chi_phx", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-07", + "time": "10p", + "home_team": "Phoenix Mercury", + "away_team": "Chicago Sky", + "home_team_abbrev": "PHX", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_phx", + "away_team_canonical_id": "team_wnba_chi", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -97111,10 +90345,17 @@ "canonical_id": "game_mlb_2026_20260708_col_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-08T02:10:00Z", + "date": "2026-07-07", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Colorado Rockies", + "home_team_abbrev": "LAD", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_col", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97122,10 +90363,17 @@ "canonical_id": "game_mlb_2026_20260708_tor_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-08T19:45:00Z", + "date": "2026-07-08", + "time": "12:45p", + "home_team": "San Francisco Giants", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "SF", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_tor", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97133,32 +90381,17 @@ "canonical_id": "game_mlb_2026_20260708_chc_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-08T22:35:00Z", + "date": "2026-07-08", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Chicago Cubs", + "home_team_abbrev": "BAL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_chc", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260708_sea_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-08T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260708_oak_det", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-08T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97166,10 +90399,35 @@ "canonical_id": "game_mlb_2026_20260708_nyy_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-08T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-07-08", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "New York Yankees", + "home_team_abbrev": "TB", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260708_oak_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Oakland Athletics", + "home_team_abbrev": "DET", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Comerica Park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97177,10 +90435,35 @@ "canonical_id": "game_mlb_2026_20260708_atl_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-08T22:40:00Z", + "date": "2026-07-08", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Atlanta Braves", + "home_team_abbrev": "PIT", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_atl", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260708_sea_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Seattle Mariners", + "home_team_abbrev": "MIA", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sea", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97188,21 +90471,17 @@ "canonical_id": "game_mlb_2026_20260708_hou_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-08T22:45:00Z", + "date": "2026-07-08", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Houston Astros", + "home_team_abbrev": "WSN", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_hou", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260708_phi_cin", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-08T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97210,21 +90489,35 @@ "canonical_id": "game_mlb_2026_20260708_kc_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-08T23:10:00Z", + "date": "2026-07-08", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Kansas City Royals", + "home_team_abbrev": "NYM", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_kc", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260708_cle_min", + "canonical_id": "game_mlb_2026_20260708_phi_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-08T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_target_field", + "date": "2026-07-08", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "CIN", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_phi", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97232,10 +90525,35 @@ "canonical_id": "game_mlb_2026_20260708_bos_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-08T23:40:00Z", + "date": "2026-07-08", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Boston Red Sox", + "home_team_abbrev": "CHW", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_bos", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260708_cle_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-08", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_cle", + "venue": "Target Field", + "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97243,10 +90561,35 @@ "canonical_id": "game_mlb_2026_20260708_mil_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-08T23:45:00Z", + "date": "2026-07-08", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "STL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_mil", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260709_min_con", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-08", + "time": "8p", + "home_team": "Connecticut Sun", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "CON", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_con", + "away_team_canonical_id": "team_wnba_min", + "venue": "Mohegan Sun Arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -97254,10 +90597,35 @@ "canonical_id": "game_mlb_2026_20260709_laa_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-09T00:05:00Z", + "date": "2026-07-08", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "TEX", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_laa", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260709_ind_la", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-08", + "time": "7p", + "home_team": "Los Angeles Sparks", + "away_team": "Indiana Fever", + "home_team_abbrev": "LA", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_wnba_la", + "away_team_canonical_id": "team_wnba_ind", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -97265,10 +90633,17 @@ "canonical_id": "game_mlb_2026_20260709_col_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-09T02:10:00Z", + "date": "2026-07-08", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Colorado Rockies", + "home_team_abbrev": "LAD", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_col", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97276,10 +90651,17 @@ "canonical_id": "game_mlb_2026_20260709_ari_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-09T02:10:00Z", + "date": "2026-07-08", + "time": "7:10p", + "home_team": "San Diego Padres", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "SD", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_ari", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97287,10 +90669,17 @@ "canonical_id": "game_mlb_2026_20260709_atl_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-09T16:35:00Z", + "date": "2026-07-09", + "time": "12:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "Atlanta Braves", + "home_team_abbrev": "PIT", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_atl", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97298,10 +90687,17 @@ "canonical_id": "game_mlb_2026_20260709_nyy_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-09T17:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-07-09", + "time": "1:10p", + "home_team": "Tampa Bay Rays", + "away_team": "New York Yankees", + "home_team_abbrev": "TB", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97309,10 +90705,17 @@ "canonical_id": "game_mlb_2026_20260709_kc_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-09T17:10:00Z", + "date": "2026-07-09", + "time": "1:10p", + "home_team": "New York Mets", + "away_team": "Kansas City Royals", + "home_team_abbrev": "NYM", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_kc", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97320,10 +90723,17 @@ "canonical_id": "game_mlb_2026_20260709_cle_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-09T17:40:00Z", + "date": "2026-07-09", + "time": "12:40p", + "home_team": "Minnesota Twins", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_cle", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97331,10 +90741,17 @@ "canonical_id": "game_mlb_2026_20260709_bos_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-09T18:10:00Z", + "date": "2026-07-09", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Boston Red Sox", + "home_team_abbrev": "CHW", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_bos", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97342,10 +90759,17 @@ "canonical_id": "game_mlb_2026_20260709_chc_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-09T22:35:00Z", + "date": "2026-07-09", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Chicago Cubs", + "home_team_abbrev": "BAL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_chc", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97353,10 +90777,17 @@ "canonical_id": "game_mlb_2026_20260709_sea_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-09T22:40:00Z", + "date": "2026-07-09", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Seattle Mariners", + "home_team_abbrev": "MIA", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_sea", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97364,10 +90795,17 @@ "canonical_id": "game_mlb_2026_20260709_oak_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-09T22:40:00Z", + "date": "2026-07-09", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Oakland Athletics", + "home_team_abbrev": "DET", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_oak", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97375,10 +90813,17 @@ "canonical_id": "game_mlb_2026_20260709_phi_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-09T23:10:00Z", + "date": "2026-07-09", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "CIN", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_phi", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97386,10 +90831,35 @@ "canonical_id": "game_mlb_2026_20260709_mil_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-09T23:45:00Z", + "date": "2026-07-09", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "STL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_mil", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260710_sea_atl", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-09", + "time": "8p", + "home_team": "Atlanta Dream", + "away_team": "Seattle Storm", + "home_team_abbrev": "ATL", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_wnba_atl", + "away_team_canonical_id": "team_wnba_sea", + "venue": "Gateway Center Arena", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -97397,10 +90867,17 @@ "canonical_id": "game_mlb_2026_20260710_laa_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-10T00:05:00Z", + "date": "2026-07-09", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "TEX", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_laa", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97408,10 +90885,17 @@ "canonical_id": "game_mlb_2026_20260710_ari_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-10T01:40:00Z", + "date": "2026-07-09", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "SD", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_ari", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97419,10 +90903,35 @@ "canonical_id": "game_mlb_2026_20260710_col_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-10T01:45:00Z", + "date": "2026-07-09", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Colorado Rockies", + "home_team_abbrev": "SF", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_col", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260710_ind_phx", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-09", + "time": "10p", + "home_team": "Phoenix Mercury", + "away_team": "Indiana Fever", + "home_team_abbrev": "PHX", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_wnba_phx", + "away_team_canonical_id": "team_wnba_ind", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -97430,10 +90939,17 @@ "canonical_id": "game_mlb_2026_20260710_phi_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-10T22:40:00Z", + "date": "2026-07-10", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "DET", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_phi", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97441,10 +90957,17 @@ "canonical_id": "game_mlb_2026_20260710_mil_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-10T22:40:00Z", + "date": "2026-07-10", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_mil", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97452,10 +90975,17 @@ "canonical_id": "game_mlb_2026_20260710_nyy_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-10T22:45:00Z", + "date": "2026-07-10", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "New York Yankees", + "home_team_abbrev": "WSN", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97463,10 +90993,17 @@ "canonical_id": "game_mlb_2026_20260710_kc_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-10T23:05:00Z", + "date": "2026-07-10", + "time": "7:05p", + "home_team": "Baltimore Orioles", + "away_team": "Kansas City Royals", + "home_team_abbrev": "BAL", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_kc", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97474,21 +91011,17 @@ "canonical_id": "game_mlb_2026_20260710_sea_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-10T23:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-07-10", + "time": "7:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Seattle Mariners", + "home_team_abbrev": "TB", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_sea", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260710_cle_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-10T23:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97496,10 +91029,17 @@ "canonical_id": "game_mlb_2026_20260710_chc_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-10T23:10:00Z", + "date": "2026-07-10", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "Chicago Cubs", + "home_team_abbrev": "CIN", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_chc", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97507,10 +91047,53 @@ "canonical_id": "game_mlb_2026_20260710_bos_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-10T23:10:00Z", + "date": "2026-07-10", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Boston Red Sox", + "home_team_abbrev": "NYM", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_bos", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260710_cle_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-10", + "time": "7:10p", + "home_team": "Miami Marlins", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_cle", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260710_gsv_con", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-10", + "time": "7:30p", + "home_team": "Connecticut Sun", + "away_team": "Golden State Valkyries", + "home_team_abbrev": "CON", + "away_team_abbrev": "GSV", + "home_team_canonical_id": "team_wnba_con", + "away_team_canonical_id": "team_wnba_gsv", + "venue": "Mohegan Sun Arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -97518,10 +91101,71 @@ "canonical_id": "game_mlb_2026_20260710_oak_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-10T23:40:00Z", + "date": "2026-07-10", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Oakland Athletics", + "home_team_abbrev": "CHW", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_oak", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260711_chi_bos", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-10", + "time": "8p", + "home_team": "Boston Boston Legacy FC", + "away_team": "Chicago Chicago Red Stars", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nwsl_bos", + "away_team_canonical_id": "team_nwsl_chi", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_nwsl_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260711_bay_rgn", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-10", + "time": "8p", + "home_team": "Louisville Racing Louisville", + "away_team": "San Francisco Bay FC", + "home_team_abbrev": "RGN", + "away_team_abbrev": "BAY", + "home_team_canonical_id": "team_nwsl_rgn", + "away_team_canonical_id": "team_nwsl_bay", + "venue": "Lynn Family Stadium", + "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260711_kcc_orl", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-10", + "time": "8p", + "home_team": "Orlando Orlando Pride", + "away_team": "Kansas City Kansas City Current", + "home_team_abbrev": "ORL", + "away_team_abbrev": "KCC", + "home_team_canonical_id": "team_nwsl_orl", + "away_team_canonical_id": "team_nwsl_kcc", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -97529,10 +91173,17 @@ "canonical_id": "game_mlb_2026_20260711_hou_tex_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-11T00:05:00Z", + "date": "2026-07-10", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Houston Astros", + "home_team_abbrev": "TEX", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_hou", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97540,10 +91191,17 @@ "canonical_id": "game_mlb_2026_20260711_laa_min_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-11T00:10:00Z", + "date": "2026-07-10", + "time": "7:10p", + "home_team": "Minnesota Twins", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "MIN", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_laa", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97551,10 +91209,17 @@ "canonical_id": "game_mlb_2026_20260711_atl_stl_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-11T00:15:00Z", + "date": "2026-07-10", + "time": "7:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Atlanta Braves", + "home_team_abbrev": "STL", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_atl", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97562,10 +91227,53 @@ "canonical_id": "game_mlb_2026_20260711_tor_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-11T01:40:00Z", + "date": "2026-07-10", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "SD", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_tor", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260711_njy_uta", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-10", + "time": "8p", + "home_team": "Utah Utah Royals", + "away_team": "New Jersey NJ/NY Gotham FC", + "home_team_abbrev": "UTA", + "away_team_abbrev": "NJY", + "home_team_canonical_id": "team_nwsl_uta", + "away_team_canonical_id": "team_nwsl_njy", + "venue": "America First Field", + "stadium_canonical_id": "stadium_nwsl_america_first_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260711_chi_la", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-10", + "time": "7p", + "home_team": "Los Angeles Sparks", + "away_team": "Chicago Sky", + "home_team_abbrev": "LA", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_la", + "away_team_canonical_id": "team_wnba_chi", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -97573,10 +91281,17 @@ "canonical_id": "game_mlb_2026_20260711_ari_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-11T02:10:00Z", + "date": "2026-07-10", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "LAD", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_ari", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97584,10 +91299,35 @@ "canonical_id": "game_mlb_2026_20260711_col_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-11T02:15:00Z", + "date": "2026-07-10", + "time": "7:15p", + "home_team": "San Francisco Giants", + "away_team": "Colorado Rockies", + "home_team_abbrev": "SF", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_col", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260711_ny_min", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-11", + "time": "12p", + "home_team": "Minnesota Lynx", + "away_team": "New York Liberty", + "home_team_abbrev": "MIN", + "away_team_abbrev": "NY", + "home_team_canonical_id": "team_wnba_min", + "away_team_canonical_id": "team_wnba_ny", + "venue": "Target Center", + "stadium_canonical_id": "stadium_wnba_target_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -97595,32 +91335,35 @@ "canonical_id": "game_mlb_2026_20260711_laa_min_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-11T18:10:00Z", + "date": "2026-07-11", + "time": "1:10p", + "home_team": "Minnesota Twins", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "MIN", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_laa", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260711_nyy_wsn", - "sport": "MLB", + "canonical_id": "game_wnba_2026_20260711_phx_lv", + "sport": "WNBA", "season": "2026", - "game_datetime_utc": "2026-07-11T20:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260711_mil_pit", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-11T20:05:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_pnc_park", + "date": "2026-07-11", + "time": "1p", + "home_team": "Las Vegas Aces", + "away_team": "Phoenix Mercury", + "home_team_abbrev": "LV", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_phx", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -97628,32 +91371,53 @@ "canonical_id": "game_mlb_2026_20260711_col_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-11T20:05:00Z", + "date": "2026-07-11", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Colorado Rockies", + "home_team_abbrev": "SF", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_col", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260711_sea_tbr", + "canonical_id": "game_mlb_2026_20260711_nyy_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-11T20:10:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "date": "2026-07-11", + "time": "4:05p", + "home_team": "Washington Nationals", + "away_team": "New York Yankees", + "home_team_abbrev": "WSN", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Nationals Park", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260711_oak_chw", + "canonical_id": "game_mlb_2026_20260711_mil_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-11T20:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "date": "2026-07-11", + "time": "4:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_mil", + "venue": "PNC Park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97661,10 +91425,17 @@ "canonical_id": "game_mlb_2026_20260711_cle_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-11T20:10:00Z", + "date": "2026-07-11", + "time": "4:10p", + "home_team": "Miami Marlins", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_cle", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97672,10 +91443,53 @@ "canonical_id": "game_mlb_2026_20260711_bos_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-11T20:10:00Z", + "date": "2026-07-11", + "time": "4:10p", + "home_team": "New York Mets", + "away_team": "Boston Red Sox", + "home_team_abbrev": "NYM", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_bos", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260711_sea_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "4:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Seattle Mariners", + "home_team_abbrev": "TB", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sea", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260711_oak_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-11", + "time": "3:10p", + "home_team": "Chicago White Sox", + "away_team": "Oakland Athletics", + "home_team_abbrev": "CHW", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Guaranteed Rate Field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97683,10 +91497,35 @@ "canonical_id": "game_mlb_2026_20260711_phi_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-11T22:10:00Z", + "date": "2026-07-11", + "time": "6:10p", + "home_team": "Detroit Tigers", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "DET", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_phi", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260711_wsh_ncc", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-11", + "time": "6:30p", + "home_team": "North Carolina North Carolina Courage", + "away_team": "Washington Washington Spirit", + "home_team_abbrev": "NCC", + "away_team_abbrev": "WSH", + "home_team_canonical_id": "team_nwsl_ncc", + "away_team_canonical_id": "team_nwsl_wsh", + "venue": "WakeMed Soccer Park", + "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -97694,10 +91533,17 @@ "canonical_id": "game_mlb_2026_20260711_kc_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-11T23:05:00Z", + "date": "2026-07-11", + "time": "7:05p", + "home_team": "Baltimore Orioles", + "away_team": "Kansas City Royals", + "home_team_abbrev": "BAL", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_kc", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97705,10 +91551,17 @@ "canonical_id": "game_mlb_2026_20260711_hou_tex_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-11T23:05:00Z", + "date": "2026-07-11", + "time": "6:05p", + "home_team": "Texas Rangers", + "away_team": "Houston Astros", + "home_team_abbrev": "TEX", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_hou", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97716,10 +91569,17 @@ "canonical_id": "game_mlb_2026_20260711_chc_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-11T23:10:00Z", + "date": "2026-07-11", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "Chicago Cubs", + "home_team_abbrev": "CIN", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_chc", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97727,10 +91587,17 @@ "canonical_id": "game_mlb_2026_20260711_atl_stl_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-11T23:15:00Z", + "date": "2026-07-11", + "time": "6:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Atlanta Braves", + "home_team_abbrev": "STL", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_atl", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97738,10 +91605,35 @@ "canonical_id": "game_mlb_2026_20260712_tor_sd_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-12T00:40:00Z", + "date": "2026-07-11", + "time": "5:40p", + "home_team": "San Diego Padres", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "SD", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_tor", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260712_ang_sdw", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-11", + "time": "5:45p", + "home_team": "San Diego San Diego Wave", + "away_team": "Los Angeles Angel City FC", + "home_team_abbrev": "SDW", + "away_team_abbrev": "ANG", + "home_team_canonical_id": "team_nwsl_sdw", + "away_team_canonical_id": "team_nwsl_ang", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -97749,10 +91641,17 @@ "canonical_id": "game_mlb_2026_20260712_ari_lad_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-12T01:10:00Z", + "date": "2026-07-11", + "time": "6:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "LAD", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_ari", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97760,21 +91659,17 @@ "canonical_id": "game_mlb_2026_20260712_mil_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-12T16:15:00Z", + "date": "2026-07-12", + "time": "12:10p", + "home_team": "Pittsburgh Pirates", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_mil", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260712_nyy_wsn", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-12T17:35:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97782,43 +91677,35 @@ "canonical_id": "game_mlb_2026_20260712_kc_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-12T17:35:00Z", + "date": "2026-07-12", + "time": "1:35p", + "home_team": "Baltimore Orioles", + "away_team": "Kansas City Royals", + "home_team_abbrev": "BAL", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_kc", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260712_sea_tbr", + "canonical_id": "game_mlb_2026_20260712_nyy_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-12T17:40:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_tropicana_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260712_phi_det", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-12T17:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260712_cle_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-12T17:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_loandepot_park", + "date": "2026-07-12", + "time": "1:35p", + "home_team": "Washington Nationals", + "away_team": "New York Yankees", + "home_team_abbrev": "WSN", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Nationals Park", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97826,10 +91713,71 @@ "canonical_id": "game_mlb_2026_20260712_chc_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-12T17:40:00Z", + "date": "2026-07-12", + "time": "1:40p", + "home_team": "Cincinnati Reds", + "away_team": "Chicago Cubs", + "home_team_abbrev": "CIN", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_chc", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260712_cle_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "1:40p", + "home_team": "Miami Marlins", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_cle", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260712_phi_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "1:40p", + "home_team": "Detroit Tigers", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "DET", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_phi", + "venue": "Comerica Park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260712_sea_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "1:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Seattle Mariners", + "home_team_abbrev": "TB", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sea", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97837,21 +91785,17 @@ "canonical_id": "game_mlb_2026_20260712_bos_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-12T17:40:00Z", + "date": "2026-07-12", + "time": "1:40p", + "home_team": "New York Mets", + "away_team": "Boston Red Sox", + "home_team_abbrev": "NYM", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_bos", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260712_oak_chw", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-12T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97859,10 +91803,35 @@ "canonical_id": "game_mlb_2026_20260712_laa_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-12T18:10:00Z", + "date": "2026-07-12", + "time": "1:10p", + "home_team": "Minnesota Twins", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "MIN", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_laa", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260712_oak_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Oakland Athletics", + "home_team_abbrev": "CHW", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Guaranteed Rate Field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97870,10 +91839,17 @@ "canonical_id": "game_mlb_2026_20260712_atl_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-12T18:15:00Z", + "date": "2026-07-12", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Atlanta Braves", + "home_team_abbrev": "STL", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_atl", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97881,10 +91857,53 @@ "canonical_id": "game_mlb_2026_20260712_hou_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-12T18:35:00Z", + "date": "2026-07-12", + "time": "1:35p", + "home_team": "Texas Rangers", + "away_team": "Houston Astros", + "home_team_abbrev": "TEX", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_hou", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260712_sea_was", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-12", + "time": "3p", + "home_team": "Washington Mystics", + "away_team": "Seattle Storm", + "home_team_abbrev": "WAS", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_wnba_was", + "away_team_canonical_id": "team_wnba_sea", + "venue": "Entertainment & Sports Arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260712_por_sea", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-12", + "time": "1p", + "home_team": "Seattle Seattle Reign", + "away_team": "Portland Portland Thorns", + "home_team_abbrev": "SEA", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nwsl_sea", + "away_team_canonical_id": "team_nwsl_por", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_nwsl_lumen_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -97892,21 +91911,17 @@ "canonical_id": "game_mlb_2026_20260712_col_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-12T20:05:00Z", + "date": "2026-07-12", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Colorado Rockies", + "home_team_abbrev": "SF", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_col", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260712_tor_sd_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-12T20:10:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97914,10 +91929,215 @@ "canonical_id": "game_mlb_2026_20260712_ari_lad_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-12T20:10:00Z", + "date": "2026-07-12", + "time": "1:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "LAD", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_ari", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260712_tor_sd_2", + "sport": "MLB", + "season": "2026", + "date": "2026-07-12", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "SD", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_sd", + "away_team_canonical_id": "team_mlb_tor", + "venue": "Petco Park", + "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260712_hou_den", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-12", + "time": "5p", + "home_team": "Denver Denver Summit FC", + "away_team": "Houston Houston Dash", + "home_team_abbrev": "DEN", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nwsl_den", + "away_team_canonical_id": "team_nwsl_hou", + "venue": "Centennial Stadium", + "stadium_canonical_id": "stadium_nwsl_centennial_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260712_chi_dal", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-12", + "time": "6p", + "home_team": "Dallas Wings", + "away_team": "Chicago Sky", + "home_team_abbrev": "DAL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_chi", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260713_ind_lv", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-12", + "time": "6p", + "home_team": "Las Vegas Aces", + "away_team": "Indiana Fever", + "home_team_abbrev": "LV", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_ind", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260713_la_atl", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-13", + "time": "7p", + "home_team": "Atlanta Dream", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "ATL", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_atl", + "away_team_canonical_id": "team_wnba_la", + "venue": "Gateway Center Arena", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260714_phx_min", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-13", + "time": "8p", + "home_team": "Minnesota Lynx", + "away_team": "Phoenix Mercury", + "home_team_abbrev": "MIN", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_wnba_min", + "away_team_canonical_id": "team_wnba_phx", + "venue": "Target Center", + "stadium_canonical_id": "stadium_wnba_target_center", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260715_sea_chi", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-15", + "time": "11a", + "home_team": "Chicago Sky", + "away_team": "Seattle Storm", + "home_team_abbrev": "CHI", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_wnba_chi", + "away_team_canonical_id": "team_wnba_sea", + "venue": "Wintrust Arena", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260715_la_min", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-15", + "time": "12p", + "home_team": "Minnesota Lynx", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "MIN", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_min", + "away_team_canonical_id": "team_wnba_la", + "venue": "Target Center", + "stadium_canonical_id": "stadium_wnba_target_center", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260715_bos_orl", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-15", + "time": "7p", + "home_team": "Orlando Orlando Pride", + "away_team": "Boston Boston Legacy FC", + "home_team_abbrev": "ORL", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nwsl_orl", + "away_team_canonical_id": "team_nwsl_bos", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260715_wsh_njy", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-15", + "time": "7p", + "home_team": "New Jersey NJ/NY Gotham FC", + "away_team": "Washington Washington Spirit", + "home_team_abbrev": "NJY", + "away_team_abbrev": "WSH", + "home_team_canonical_id": "team_nwsl_njy", + "away_team_canonical_id": "team_nwsl_wsh", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_nwsl_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260716_gsv_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-15", + "time": "8p", + "home_team": "Indiana Fever", + "away_team": "Golden State Valkyries", + "home_team_abbrev": "IND", + "away_team_abbrev": "GSV", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_gsv", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -97925,10 +92145,107 @@ "canonical_id": "game_mlb_2026_20260716_nym_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-16T23:10:00Z", + "date": "2026-07-16", + "time": "7:10p", + "home_team": "Philadelphia Phillies", + "away_team": "New York Mets", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_nym", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260716_tor_mtl", + "sport": "MLS", + "season": "2026", + "date": "2026-07-16", + "time": "7:30p", + "home_team": "Montreal CF Montreal", + "away_team": "Toronto Toronto FC", + "home_team_abbrev": "MTL", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mls_mtl", + "away_team_canonical_id": "team_mls_tor", + "venue": "Stade Saputo", + "stadium_canonical_id": "stadium_mls_stade_saputo", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260717_skc_stl", + "sport": "MLS", + "season": "2026", + "date": "2026-07-16", + "time": "7:30p", + "home_team": "St. Louis St. Louis City SC", + "away_team": "Kansas City Sporting Kansas City", + "home_team_abbrev": "STL", + "away_team_abbrev": "SKC", + "home_team_canonical_id": "team_mls_stl", + "away_team_canonical_id": "team_mls_skc", + "venue": "CITYPARK", + "stadium_canonical_id": "stadium_mls_citypark", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260717_van_chi", + "sport": "MLS", + "season": "2026", + "date": "2026-07-16", + "time": "7:30p", + "home_team": "Chicago Chicago Fire", + "away_team": "Vancouver Vancouver Whitecaps", + "home_team_abbrev": "CHI", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_mls_chi", + "away_team_canonical_id": "team_mls_van", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_mls_soldier_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260717_ny_dal", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-16", + "time": "8p", + "home_team": "Dallas Wings", + "away_team": "New York Liberty", + "home_team_abbrev": "DAL", + "away_team_abbrev": "NY", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_ny", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260717_por_sea", + "sport": "MLS", + "season": "2026", + "date": "2026-07-16", + "time": "7:30p", + "home_team": "Seattle Seattle Sounders", + "away_team": "Portland Portland Timbers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_mls_sea", + "away_team_canonical_id": "team_mls_por", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_mls_lumen_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -97936,10 +92253,17 @@ "canonical_id": "game_mlb_2026_20260717_lad_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-17T23:05:00Z", + "date": "2026-07-17", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "NYY", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_lad", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97947,21 +92271,17 @@ "canonical_id": "game_mlb_2026_20260717_chw_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-17T23:07:00Z", + "date": "2026-07-17", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Chicago White Sox", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_chw", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260717_tbr_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-17T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97969,10 +92289,35 @@ "canonical_id": "game_mlb_2026_20260717_pit_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-17T23:10:00Z", + "date": "2026-07-17", + "time": "7:10p", + "home_team": "Cleveland Guardians", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "CLE", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_pit", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260717_tbr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -97980,10 +92325,53 @@ "canonical_id": "game_mlb_2026_20260717_tex_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-17T23:15:00Z", + "date": "2026-07-17", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Texas Rangers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_tex", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260717_la_chi", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-17", + "time": "6:30p", + "home_team": "Chicago Sky", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "CHI", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_chi", + "away_team_canonical_id": "team_wnba_la", + "venue": "Wintrust Arena", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260717_sea_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-17", + "time": "7:30p", + "home_team": "Indiana Fever", + "away_team": "Seattle Storm", + "home_team_abbrev": "IND", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_sea", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -97991,10 +92379,53 @@ "canonical_id": "game_mlb_2026_20260717_mia_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-17T23:40:00Z", + "date": "2026-07-17", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Miami Marlins", + "home_team_abbrev": "MIL", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_mia", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260718_atl_nsh", + "sport": "MLS", + "season": "2026", + "date": "2026-07-17", + "time": "7p", + "home_team": "Nashville Nashville SC", + "away_team": "Atlanta Atlanta United", + "home_team_abbrev": "NSH", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mls_nsh", + "away_team_canonical_id": "team_mls_atl", + "venue": "GEODIS Park", + "stadium_canonical_id": "stadium_mls_geodis_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260718_sdw_kcc", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-17", + "time": "7p", + "home_team": "Kansas City Kansas City Current", + "away_team": "San Diego San Diego Wave", + "home_team_abbrev": "KCC", + "away_team_abbrev": "SDW", + "home_team_canonical_id": "team_nwsl_kcc", + "away_team_canonical_id": "team_nwsl_sdw", + "venue": "CPKC Stadium", + "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -98002,10 +92433,17 @@ "canonical_id": "game_mlb_2026_20260718_min_chc_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-18T00:05:00Z", + "date": "2026-07-17", + "time": "7:05p", + "home_team": "Chicago Cubs", + "away_team": "Minnesota Twins", + "home_team_abbrev": "CHC", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_min", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98013,10 +92451,17 @@ "canonical_id": "game_mlb_2026_20260718_sd_kc_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-18T00:10:00Z", + "date": "2026-07-17", + "time": "7:10p", + "home_team": "Kansas City Royals", + "away_team": "San Diego Padres", + "home_team_abbrev": "KC", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_sd", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98024,10 +92469,17 @@ "canonical_id": "game_mlb_2026_20260718_bal_hou_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-18T00:10:00Z", + "date": "2026-07-17", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "HOU", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_bal", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98035,10 +92487,17 @@ "canonical_id": "game_mlb_2026_20260718_cin_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-18T00:40:00Z", + "date": "2026-07-17", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "COL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_cin", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98046,21 +92505,17 @@ "canonical_id": "game_mlb_2026_20260718_det_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-18T01:38:00Z", + "date": "2026-07-17", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Detroit Tigers", + "home_team_abbrev": "LAA", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_det", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260718_wsn_oak", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-18T01:40:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98068,10 +92523,53 @@ "canonical_id": "game_mlb_2026_20260718_stl_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-18T01:40:00Z", + "date": "2026-07-17", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "ARI", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_stl", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260718_wsn_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-07-17", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Washington Nationals", + "home_team_abbrev": "OAK", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "Sutter Health Park", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260718_con_phx", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-17", + "time": "10p", + "home_team": "Phoenix Mercury", + "away_team": "Connecticut Sun", + "home_team_abbrev": "PHX", + "away_team_abbrev": "CON", + "home_team_canonical_id": "team_wnba_phx", + "away_team_canonical_id": "team_wnba_con", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -98079,10 +92577,71 @@ "canonical_id": "game_mlb_2026_20260718_sf_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-18T02:10:00Z", + "date": "2026-07-17", + "time": "7:10p", + "home_team": "Seattle Mariners", + "away_team": "San Francisco Giants", + "home_team_abbrev": "SEA", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260718_lafc_lag", + "sport": "MLS", + "season": "2026", + "date": "2026-07-17", + "time": "7:30p", + "home_team": "Los Angeles LA Galaxy", + "away_team": "Los Angeles Los Angeles FC", + "home_team_abbrev": "LAG", + "away_team_abbrev": "LAFC", + "home_team_canonical_id": "team_mls_lag", + "away_team_canonical_id": "team_mls_lafc", + "venue": "Dignity Health Sports Park", + "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260718_sea_njy", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-18", + "time": "12p", + "home_team": "New Jersey NJ/NY Gotham FC", + "away_team": "Seattle Seattle Reign", + "home_team_abbrev": "NJY", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nwsl_njy", + "away_team_canonical_id": "team_nwsl_sea", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_nwsl_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260718_por_den", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-18", + "time": "12p", + "home_team": "Denver Denver Summit FC", + "away_team": "Portland Portland Thorns", + "home_team_abbrev": "DEN", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nwsl_den", + "away_team_canonical_id": "team_nwsl_por", + "venue": "Centennial Stadium", + "stadium_canonical_id": "stadium_nwsl_centennial_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -98090,10 +92649,17 @@ "canonical_id": "game_mlb_2026_20260718_min_chc_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-18T18:20:00Z", + "date": "2026-07-18", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Minnesota Twins", + "home_team_abbrev": "CHC", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_min", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98101,10 +92667,17 @@ "canonical_id": "game_mlb_2026_20260718_chw_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-18T19:07:00Z", + "date": "2026-07-18", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Chicago White Sox", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_chw", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98112,10 +92685,35 @@ "canonical_id": "game_mlb_2026_20260718_cin_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-18T19:10:00Z", + "date": "2026-07-18", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "COL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_cin", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260718_ncc_bay", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-18", + "time": "1p", + "home_team": "San Francisco Bay FC", + "away_team": "North Carolina North Carolina Courage", + "home_team_abbrev": "BAY", + "away_team_abbrev": "NCC", + "home_team_canonical_id": "team_nwsl_bay", + "away_team_canonical_id": "team_nwsl_ncc", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_nwsl_paypal_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -98123,76 +92721,17 @@ "canonical_id": "game_mlb_2026_20260718_nym_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-18T20:05:00Z", + "date": "2026-07-18", + "time": "4:05p", + "home_team": "Philadelphia Phillies", + "away_team": "New York Mets", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_nym", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260718_tex_atl", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-18T20:10:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260718_tbr_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-18T20:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260718_stl_ari_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-18T20:10:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260718_sd_kc_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-18T20:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260718_pit_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-18T20:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260718_mia_mil", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-18T20:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98200,21 +92739,179 @@ "canonical_id": "game_mlb_2026_20260718_bal_hou_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-18T20:10:00Z", + "date": "2026-07-18", + "time": "3:10p", + "home_team": "Houston Astros", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "HOU", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_bal", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260719_sf_sea_1", + "canonical_id": "game_mlb_2026_20260718_sd_kc_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-19T00:08:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "date": "2026-07-18", + "time": "3:10p", + "home_team": "Kansas City Royals", + "away_team": "San Diego Padres", + "home_team_abbrev": "KC", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_kc", + "away_team_canonical_id": "team_mlb_sd", + "venue": "Kauffman Stadium", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260718_stl_ari_2", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "ARI", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_stl", + "venue": "Chase Field", + "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260718_pit_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "4:10p", + "home_team": "Cleveland Guardians", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "CLE", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_pit", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260718_tbr_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "4:10p", + "home_team": "Boston Red Sox", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260718_tex_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "4:10p", + "home_team": "Atlanta Braves", + "away_team": "Texas Rangers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Truist Park", + "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260718_mia_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "3:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Miami Marlins", + "home_team_abbrev": "MIL", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_mia", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260718_ang_chi", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-18", + "time": "5:30p", + "home_team": "Chicago Chicago Red Stars", + "away_team": "Los Angeles Angel City FC", + "home_team_abbrev": "CHI", + "away_team_abbrev": "ANG", + "home_team_canonical_id": "team_nwsl_chi", + "away_team_canonical_id": "team_nwsl_ang", + "venue": "Northwestern Medicine Field at Martin Stadium", + "stadium_canonical_id": "stadium_nwsl_northwestern_medicine_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260719_hou_rgn", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-18", + "time": "8p", + "home_team": "Louisville Racing Louisville", + "away_team": "Houston Houston Dash", + "home_team_abbrev": "RGN", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nwsl_rgn", + "away_team_canonical_id": "team_nwsl_hou", + "venue": "Lynn Family Stadium", + "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260719_ny_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-18", + "time": "8p", + "home_team": "Indiana Fever", + "away_team": "New York Liberty", + "home_team_abbrev": "IND", + "away_team_abbrev": "NY", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_ny", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -98222,10 +92919,71 @@ "canonical_id": "game_mlb_2026_20260719_lad_nyy_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-19T00:08:00Z", + "date": "2026-07-18", + "time": "8:08p", + "home_team": "New York Yankees", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "NYY", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_lad", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260719_sf_sea_1", + "sport": "MLB", + "season": "2026", + "date": "2026-07-18", + "time": "5:08p", + "home_team": "Seattle Mariners", + "away_team": "San Francisco Giants", + "home_team_abbrev": "SEA", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_sf", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260719_was_gsv", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-18", + "time": "5:30p", + "home_team": "Golden State Valkyries", + "away_team": "Washington Mystics", + "home_team_abbrev": "GSV", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_wnba_gsv", + "away_team_canonical_id": "team_wnba_was", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_wnba_chase_center", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260719_orl_uta", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-18", + "time": "6:45p", + "home_team": "Utah Utah Royals", + "away_team": "Orlando Orlando Pride", + "home_team_abbrev": "UTA", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nwsl_uta", + "away_team_canonical_id": "team_nwsl_orl", + "venue": "America First Field", + "stadium_canonical_id": "stadium_nwsl_america_first_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -98233,10 +92991,17 @@ "canonical_id": "game_mlb_2026_20260719_wsn_oak_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-19T02:05:00Z", + "date": "2026-07-18", + "time": "7:05p", + "home_team": "Oakland Athletics", + "away_team": "Washington Nationals", + "home_team_abbrev": "OAK", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98244,10 +93009,17 @@ "canonical_id": "game_mlb_2026_20260719_det_laa_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-19T02:07:00Z", + "date": "2026-07-18", + "time": "7:07p", + "home_team": "Los Angeles Angels", + "away_team": "Detroit Tigers", + "home_team_abbrev": "LAA", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_det", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98255,21 +93027,35 @@ "canonical_id": "game_mlb_2026_20260719_chw_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-19T16:15:00Z", + "date": "2026-07-19", + "time": "12:10p", + "home_team": "Toronto Blue Jays", + "away_team": "Chicago White Sox", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_chw", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260719_tex_atl", - "sport": "MLB", + "canonical_id": "game_wnba_2026_20260719_la_dal", + "sport": "WNBA", "season": "2026", - "game_datetime_utc": "2026-07-19T17:35:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_truist_park", + "date": "2026-07-19", + "time": "12:30p", + "home_team": "Dallas Wings", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "DAL", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_la", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -98277,10 +93063,17 @@ "canonical_id": "game_mlb_2026_20260719_tbr_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-19T17:35:00Z", + "date": "2026-07-19", + "time": "1:35p", + "home_team": "Boston Red Sox", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98288,10 +93081,35 @@ "canonical_id": "game_mlb_2026_20260719_nym_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-19T17:35:00Z", + "date": "2026-07-19", + "time": "1:35p", + "home_team": "Philadelphia Phillies", + "away_team": "New York Mets", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_nym", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260719_tex_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "1:35p", + "home_team": "Atlanta Braves", + "away_team": "Texas Rangers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Truist Park", + "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98299,32 +93117,17 @@ "canonical_id": "game_mlb_2026_20260719_pit_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-19T17:40:00Z", + "date": "2026-07-19", + "time": "1:40p", + "home_team": "Cleveland Guardians", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "CLE", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_pit", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260719_sd_kc", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-19T18:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260719_mia_mil", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-19T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98332,10 +93135,53 @@ "canonical_id": "game_mlb_2026_20260719_bal_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-19T18:10:00Z", + "date": "2026-07-19", + "time": "1:10p", + "home_team": "Houston Astros", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "HOU", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_bal", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260719_sd_kc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "1:10p", + "home_team": "Kansas City Royals", + "away_team": "San Diego Padres", + "home_team_abbrev": "KC", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_kc", + "away_team_canonical_id": "team_mlb_sd", + "venue": "Kauffman Stadium", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260719_mia_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-07-19", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Miami Marlins", + "home_team_abbrev": "MIL", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_mia", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98343,10 +93189,17 @@ "canonical_id": "game_mlb_2026_20260719_min_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-19T18:20:00Z", + "date": "2026-07-19", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Minnesota Twins", + "home_team_abbrev": "CHC", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_min", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98354,10 +93207,35 @@ "canonical_id": "game_mlb_2026_20260719_cin_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-19T19:10:00Z", + "date": "2026-07-19", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "COL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_cin", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260719_chi_atl", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-19", + "time": "4p", + "home_team": "Atlanta Dream", + "away_team": "Chicago Sky", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_atl", + "away_team_canonical_id": "team_wnba_chi", + "venue": "Gateway Center Arena", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -98365,10 +93243,17 @@ "canonical_id": "game_mlb_2026_20260719_wsn_oak_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-19T20:05:00Z", + "date": "2026-07-19", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Washington Nationals", + "home_team_abbrev": "OAK", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98376,10 +93261,17 @@ "canonical_id": "game_mlb_2026_20260719_det_laa_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-19T20:07:00Z", + "date": "2026-07-19", + "time": "1:07p", + "home_team": "Los Angeles Angels", + "away_team": "Detroit Tigers", + "home_team_abbrev": "LAA", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_det", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98387,10 +93279,17 @@ "canonical_id": "game_mlb_2026_20260719_stl_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-19T20:10:00Z", + "date": "2026-07-19", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "ARI", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_stl", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98398,10 +93297,53 @@ "canonical_id": "game_mlb_2026_20260719_sf_sea_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-19T20:10:00Z", + "date": "2026-07-19", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "San Francisco Giants", + "home_team_abbrev": "SEA", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260719_wsh_bos", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-19", + "time": "7p", + "home_team": "Boston Boston Legacy FC", + "away_team": "Washington Washington Spirit", + "home_team_abbrev": "BOS", + "away_team_abbrev": "WSH", + "home_team_canonical_id": "team_nwsl_bos", + "away_team_canonical_id": "team_nwsl_wsh", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_nwsl_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260719_con_phx", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-19", + "time": "7p", + "home_team": "Phoenix Mercury", + "away_team": "Connecticut Sun", + "home_team_abbrev": "PHX", + "away_team_abbrev": "CON", + "home_team_canonical_id": "team_wnba_phx", + "away_team_canonical_id": "team_wnba_con", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -98409,10 +93351,17 @@ "canonical_id": "game_mlb_2026_20260719_lad_nyy_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-19T23:20:00Z", + "date": "2026-07-19", + "time": "7:20p", + "home_team": "New York Yankees", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "NYY", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_lad", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98420,10 +93369,17 @@ "canonical_id": "game_mlb_2026_20260720_min_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-20T22:40:00Z", + "date": "2026-07-20", + "time": "6:40p", + "home_team": "Cleveland Guardians", + "away_team": "Minnesota Twins", + "home_team_abbrev": "CLE", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_min", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98431,10 +93387,17 @@ "canonical_id": "game_mlb_2026_20260720_pit_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-20T23:05:00Z", + "date": "2026-07-20", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "NYY", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_pit", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98442,21 +93405,17 @@ "canonical_id": "game_mlb_2026_20260720_tbr_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-20T23:07:00Z", + "date": "2026-07-20", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "TOR", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260720_lad_phi", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-20T23:10:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98464,10 +93423,35 @@ "canonical_id": "game_mlb_2026_20260720_bal_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-20T23:10:00Z", + "date": "2026-07-20", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "BOS", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_bal", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260720_lad_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-20", + "time": "7:10p", + "home_team": "Philadelphia Phillies", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "LAD", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_lad", + "venue": "Citizens Bank Park", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98475,10 +93459,17 @@ "canonical_id": "game_mlb_2026_20260720_sd_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-20T23:15:00Z", + "date": "2026-07-20", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "San Diego Padres", + "home_team_abbrev": "ATL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_sd", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98486,10 +93477,17 @@ "canonical_id": "game_mlb_2026_20260720_sf_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-20T23:40:00Z", + "date": "2026-07-20", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "San Francisco Giants", + "home_team_abbrev": "KC", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_sf", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98497,10 +93495,17 @@ "canonical_id": "game_mlb_2026_20260720_nym_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-20T23:40:00Z", + "date": "2026-07-20", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "New York Mets", + "home_team_abbrev": "MIL", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_nym", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98508,10 +93513,17 @@ "canonical_id": "game_mlb_2026_20260721_det_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-21T00:05:00Z", + "date": "2026-07-20", + "time": "7:05p", + "home_team": "Chicago Cubs", + "away_team": "Detroit Tigers", + "home_team_abbrev": "CHC", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_det", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98519,10 +93531,17 @@ "canonical_id": "game_mlb_2026_20260721_chw_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-21T00:05:00Z", + "date": "2026-07-20", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Chicago White Sox", + "home_team_abbrev": "TEX", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_chw", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98530,10 +93549,17 @@ "canonical_id": "game_mlb_2026_20260721_mia_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-21T00:10:00Z", + "date": "2026-07-20", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Miami Marlins", + "home_team_abbrev": "HOU", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_mia", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98541,10 +93567,17 @@ "canonical_id": "game_mlb_2026_20260721_wsn_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-21T00:40:00Z", + "date": "2026-07-20", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Washington Nationals", + "home_team_abbrev": "COL", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98552,10 +93585,17 @@ "canonical_id": "game_mlb_2026_20260721_oak_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-21T01:40:00Z", + "date": "2026-07-20", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Oakland Athletics", + "home_team_abbrev": "ARI", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_oak", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98563,10 +93603,53 @@ "canonical_id": "game_mlb_2026_20260721_cin_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-21T01:40:00Z", + "date": "2026-07-20", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260721_was_gsv", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-20", + "time": "7p", + "home_team": "Golden State Valkyries", + "away_team": "Washington Mystics", + "home_team_abbrev": "GSV", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_wnba_gsv", + "away_team_canonical_id": "team_wnba_was", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_wnba_chase_center", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260721_min_sea", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-20", + "time": "7p", + "home_team": "Seattle Storm", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "SEA", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_sea", + "away_team_canonical_id": "team_wnba_min", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -98574,21 +93657,17 @@ "canonical_id": "game_mlb_2026_20260721_stl_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-21T02:10:00Z", + "date": "2026-07-20", + "time": "7:10p", + "home_team": "Los Angeles Angels", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "LAA", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_stl", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260721_min_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-21T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98596,10 +93675,35 @@ "canonical_id": "game_mlb_2026_20260721_lad_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-21T22:40:00Z", + "date": "2026-07-21", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_lad", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260721_min_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "6:40p", + "home_team": "Cleveland Guardians", + "away_team": "Minnesota Twins", + "home_team_abbrev": "CLE", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_min", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98607,10 +93711,17 @@ "canonical_id": "game_mlb_2026_20260721_pit_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-21T23:05:00Z", + "date": "2026-07-21", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "NYY", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_pit", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98618,10 +93729,17 @@ "canonical_id": "game_mlb_2026_20260721_tbr_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-21T23:07:00Z", + "date": "2026-07-21", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "TOR", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98629,10 +93747,17 @@ "canonical_id": "game_mlb_2026_20260721_bal_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-21T23:10:00Z", + "date": "2026-07-21", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "BOS", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_bal", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98640,10 +93765,17 @@ "canonical_id": "game_mlb_2026_20260721_sd_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-21T23:15:00Z", + "date": "2026-07-21", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "San Diego Padres", + "home_team_abbrev": "ATL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_sd", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98651,10 +93783,17 @@ "canonical_id": "game_mlb_2026_20260721_sf_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-21T23:40:00Z", + "date": "2026-07-21", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "San Francisco Giants", + "home_team_abbrev": "KC", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_sf", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98662,10 +93801,17 @@ "canonical_id": "game_mlb_2026_20260721_nym_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-21T23:40:00Z", + "date": "2026-07-21", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "New York Mets", + "home_team_abbrev": "MIL", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_nym", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98673,10 +93819,17 @@ "canonical_id": "game_mlb_2026_20260722_det_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-22T00:05:00Z", + "date": "2026-07-21", + "time": "7:05p", + "home_team": "Chicago Cubs", + "away_team": "Detroit Tigers", + "home_team_abbrev": "CHC", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_det", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98684,10 +93837,17 @@ "canonical_id": "game_mlb_2026_20260722_chw_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-22T00:05:00Z", + "date": "2026-07-21", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Chicago White Sox", + "home_team_abbrev": "TEX", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_chw", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98695,10 +93855,17 @@ "canonical_id": "game_mlb_2026_20260722_mia_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-22T00:10:00Z", + "date": "2026-07-21", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Miami Marlins", + "home_team_abbrev": "HOU", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_mia", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98706,10 +93873,17 @@ "canonical_id": "game_mlb_2026_20260722_wsn_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-22T00:40:00Z", + "date": "2026-07-21", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Washington Nationals", + "home_team_abbrev": "COL", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98717,21 +93891,17 @@ "canonical_id": "game_mlb_2026_20260722_stl_laa_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-22T01:38:00Z", + "date": "2026-07-21", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "LAA", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_stl", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260722_oak_ari_1", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-22T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98739,10 +93909,35 @@ "canonical_id": "game_mlb_2026_20260722_cin_sea_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-22T01:40:00Z", + "date": "2026-07-21", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260722_oak_ari_1", + "sport": "MLB", + "season": "2026", + "date": "2026-07-21", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Oakland Athletics", + "home_team_abbrev": "ARI", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Chase Field", + "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98750,10 +93945,17 @@ "canonical_id": "game_mlb_2026_20260722_pit_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-22T17:35:00Z", + "date": "2026-07-22", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "NYY", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_pit", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98761,10 +93963,17 @@ "canonical_id": "game_mlb_2026_20260722_sf_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-22T18:10:00Z", + "date": "2026-07-22", + "time": "1:10p", + "home_team": "Kansas City Royals", + "away_team": "San Francisco Giants", + "home_team_abbrev": "KC", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_sf", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98772,10 +93981,53 @@ "canonical_id": "game_mlb_2026_20260722_nym_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-22T18:10:00Z", + "date": "2026-07-22", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "New York Mets", + "home_team_abbrev": "MIL", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_nym", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260722_min_sea", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-22", + "time": "12p", + "home_team": "Seattle Storm", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "SEA", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_sea", + "away_team_canonical_id": "team_wnba_min", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260722_phx_la", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-22", + "time": "12p", + "home_team": "Los Angeles Sparks", + "away_team": "Phoenix Mercury", + "home_team_abbrev": "LA", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_wnba_la", + "away_team_canonical_id": "team_wnba_phx", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -98783,10 +94035,17 @@ "canonical_id": "game_mlb_2026_20260722_wsn_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-22T19:10:00Z", + "date": "2026-07-22", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Washington Nationals", + "home_team_abbrev": "COL", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98794,10 +94053,17 @@ "canonical_id": "game_mlb_2026_20260722_oak_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-22T19:40:00Z", + "date": "2026-07-22", + "time": "12:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Oakland Athletics", + "home_team_abbrev": "ARI", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_oak", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98805,10 +94071,17 @@ "canonical_id": "game_mlb_2026_20260722_cin_sea_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-22T19:40:00Z", + "date": "2026-07-22", + "time": "12:40p", + "home_team": "Seattle Mariners", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_cin", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98816,10 +94089,17 @@ "canonical_id": "game_mlb_2026_20260722_stl_laa_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-22T20:07:00Z", + "date": "2026-07-22", + "time": "1:07p", + "home_team": "Los Angeles Angels", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "LAA", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_stl", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98827,10 +94107,17 @@ "canonical_id": "game_mlb_2026_20260722_min_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-22T22:40:00Z", + "date": "2026-07-22", + "time": "6:40p", + "home_team": "Cleveland Guardians", + "away_team": "Minnesota Twins", + "home_team_abbrev": "CLE", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_min", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98838,10 +94125,35 @@ "canonical_id": "game_mlb_2026_20260722_lad_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-22T22:40:00Z", + "date": "2026-07-22", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_lad", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260722_chi_ny", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-22", + "time": "7p", + "home_team": "New York Liberty", + "away_team": "Chicago Sky", + "home_team_abbrev": "NY", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_chi", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -98849,10 +94161,17 @@ "canonical_id": "game_mlb_2026_20260722_tbr_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-22T23:07:00Z", + "date": "2026-07-22", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "TOR", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98860,10 +94179,17 @@ "canonical_id": "game_mlb_2026_20260722_bal_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-22T23:10:00Z", + "date": "2026-07-22", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "BOS", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_bal", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98871,21 +94197,161 @@ "canonical_id": "game_mlb_2026_20260722_sd_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-22T23:15:00Z", + "date": "2026-07-22", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "San Diego Padres", + "home_team_abbrev": "ATL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_sd", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260723_det_chc", - "sport": "MLB", + "canonical_id": "game_mls_2026_20260722_nyc_clb", + "sport": "MLS", "season": "2026", - "game_datetime_utc": "2026-07-23T00:05:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_wrigley_field", + "date": "2026-07-22", + "time": "7:30p", + "home_team": "Columbus Columbus Crew", + "away_team": "New York New York City FC", + "home_team_abbrev": "CLB", + "away_team_abbrev": "NYC", + "home_team_canonical_id": "team_mls_clb", + "away_team_canonical_id": "team_mls_nyc", + "venue": "Lower.com Field", + "stadium_canonical_id": "stadium_mls_lowercom_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260722_van_cin", + "sport": "MLS", + "season": "2026", + "date": "2026-07-22", + "time": "7:30p", + "home_team": "Cincinnati FC Cincinnati", + "away_team": "Vancouver Vancouver Whitecaps", + "home_team_abbrev": "CIN", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_mls_cin", + "away_team_canonical_id": "team_mls_van", + "venue": "TQL Stadium", + "stadium_canonical_id": "stadium_mls_tql_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260722_chi_mia", + "sport": "MLS", + "season": "2026", + "date": "2026-07-22", + "time": "7:30p", + "home_team": "Miami Inter Miami", + "away_team": "Chicago Chicago Fire", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_mls_mia", + "away_team_canonical_id": "team_mls_chi", + "venue": "Miami Freedom Park", + "stadium_canonical_id": "stadium_mls_miami_freedom_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260722_tor_ne", + "sport": "MLS", + "season": "2026", + "date": "2026-07-22", + "time": "7:30p", + "home_team": "New England New England Revolution", + "away_team": "Toronto Toronto FC", + "home_team_abbrev": "NE", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mls_ne", + "away_team_canonical_id": "team_mls_tor", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_mls_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260722_ny_phi", + "sport": "MLS", + "season": "2026", + "date": "2026-07-22", + "time": "7:30p", + "home_team": "Philadelphia Philadelphia Union", + "away_team": "New York New York Red Bulls", + "home_team_abbrev": "PHI", + "away_team_abbrev": "RB", + "home_team_canonical_id": "team_mls_phi", + "away_team_canonical_id": "team_mls_ny", + "venue": "Subaru Park", + "stadium_canonical_id": "stadium_mls_subaru_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260722_lv_was", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-22", + "time": "7:30p", + "home_team": "Washington Mystics", + "away_team": "Las Vegas Aces", + "home_team_abbrev": "WAS", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_wnba_was", + "away_team_canonical_id": "team_wnba_lv", + "venue": "Entertainment & Sports Arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260723_atl_clt", + "sport": "MLS", + "season": "2026", + "date": "2026-07-22", + "time": "8p", + "home_team": "Charlotte Charlotte FC", + "away_team": "Atlanta Atlanta United", + "home_team_abbrev": "CLT", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mls_clt", + "away_team_canonical_id": "team_mls_atl", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260723_con_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-22", + "time": "8p", + "home_team": "Indiana Fever", + "away_team": "Connecticut Sun", + "home_team_abbrev": "IND", + "away_team_abbrev": "CON", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_con", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -98893,10 +94359,35 @@ "canonical_id": "game_mlb_2026_20260723_chw_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-23T00:05:00Z", + "date": "2026-07-22", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Chicago White Sox", + "home_team_abbrev": "TEX", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_chw", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260723_det_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-07-22", + "time": "7:05p", + "home_team": "Chicago Cubs", + "away_team": "Detroit Tigers", + "home_team_abbrev": "CHC", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_det", + "venue": "Wrigley Field", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98904,10 +94395,179 @@ "canonical_id": "game_mlb_2026_20260723_mia_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-23T00:10:00Z", + "date": "2026-07-22", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Miami Marlins", + "home_team_abbrev": "HOU", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_mia", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260723_mtl_nsh", + "sport": "MLS", + "season": "2026", + "date": "2026-07-22", + "time": "7:30p", + "home_team": "Nashville Nashville SC", + "away_team": "Montreal CF Montreal", + "home_team_abbrev": "NSH", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_mls_nsh", + "away_team_canonical_id": "team_mls_mtl", + "venue": "GEODIS Park", + "stadium_canonical_id": "stadium_mls_geodis_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260723_sea_aus", + "sport": "MLS", + "season": "2026", + "date": "2026-07-22", + "time": "7:30p", + "home_team": "Austin Austin FC", + "away_team": "Seattle Seattle Sounders", + "home_team_abbrev": "AUS", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mls_aus", + "away_team_canonical_id": "team_mls_sea", + "venue": "Q2 Stadium", + "stadium_canonical_id": "stadium_mls_q2_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260723_min_skc", + "sport": "MLS", + "season": "2026", + "date": "2026-07-22", + "time": "7:30p", + "home_team": "Kansas City Sporting Kansas City", + "away_team": "Minnesota Minnesota United", + "home_team_abbrev": "SKC", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mls_skc", + "away_team_canonical_id": "team_mls_min", + "venue": "Children's Mercy Park", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260723_dc_hou", + "sport": "MLS", + "season": "2026", + "date": "2026-07-22", + "time": "7:30p", + "home_team": "Houston Houston Dynamo", + "away_team": "Washington D.C. United", + "home_team_abbrev": "HOU", + "away_team_abbrev": "DC", + "home_team_canonical_id": "team_mls_hou", + "away_team_canonical_id": "team_mls_dc", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_mls_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260723_sd_col", + "sport": "MLS", + "season": "2026", + "date": "2026-07-22", + "time": "7:30p", + "home_team": "Colorado Colorado Rapids", + "away_team": "San Diego San Diego FC", + "home_team_abbrev": "COL", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mls_col", + "away_team_canonical_id": "team_mls_sd", + "venue": "Dick's Sporting Goods Park", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260723_stl_lag", + "sport": "MLS", + "season": "2026", + "date": "2026-07-22", + "time": "7:30p", + "home_team": "Los Angeles LA Galaxy", + "away_team": "St. Louis St. Louis City SC", + "home_team_abbrev": "LAG", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mls_lag", + "away_team_canonical_id": "team_mls_stl", + "venue": "Dignity Health Sports Park", + "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260723_orl_sj", + "sport": "MLS", + "season": "2026", + "date": "2026-07-22", + "time": "7:30p", + "home_team": "San Jose San Jose Earthquakes", + "away_team": "Orlando Orlando City", + "home_team_abbrev": "SJ", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_mls_sj", + "away_team_canonical_id": "team_mls_orl", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_mls_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260723_dal_por", + "sport": "MLS", + "season": "2026", + "date": "2026-07-22", + "time": "7:30p", + "home_team": "Portland Portland Timbers", + "away_team": "Dallas FC Dallas", + "home_team_abbrev": "POR", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_mls_por", + "away_team_canonical_id": "team_mls_dal", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_mls_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260723_slc_lafc", + "sport": "MLS", + "season": "2026", + "date": "2026-07-22", + "time": "7:30p", + "home_team": "Los Angeles Los Angeles FC", + "away_team": "Salt Lake Real Salt Lake", + "home_team_abbrev": "LAFC", + "away_team_abbrev": "SLC", + "home_team_canonical_id": "team_mls_lafc", + "away_team_canonical_id": "team_mls_slc", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -98915,10 +94575,17 @@ "canonical_id": "game_mlb_2026_20260723_sd_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-23T16:15:00Z", + "date": "2026-07-23", + "time": "12:15p", + "home_team": "Atlanta Braves", + "away_team": "San Diego Padres", + "home_team_abbrev": "ATL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_sd", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98926,10 +94593,17 @@ "canonical_id": "game_mlb_2026_20260723_min_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-23T17:10:00Z", + "date": "2026-07-23", + "time": "1:10p", + "home_team": "Cleveland Guardians", + "away_team": "Minnesota Twins", + "home_team_abbrev": "CLE", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_min", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98937,10 +94611,17 @@ "canonical_id": "game_mlb_2026_20260723_tbr_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-23T19:07:00Z", + "date": "2026-07-23", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "TOR", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_tor", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98948,10 +94629,17 @@ "canonical_id": "game_mlb_2026_20260723_kc_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-23T22:40:00Z", + "date": "2026-07-23", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Kansas City Royals", + "home_team_abbrev": "DET", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_kc", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98959,32 +94647,17 @@ "canonical_id": "game_mlb_2026_20260724_col_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-24T20:10:00Z", + "date": "2026-07-24", + "time": "3:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Colorado Rockies", + "home_team_abbrev": "MIL", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_col", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260724_nyy_phi", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-24T22:40:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260724_kc_det", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-24T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -98992,10 +94665,53 @@ "canonical_id": "game_mlb_2026_20260724_chc_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-24T22:40:00Z", + "date": "2026-07-24", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Chicago Cubs", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_chc", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260724_kc_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Kansas City Royals", + "home_team_abbrev": "DET", + "away_team_abbrev": "KC", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_kc", + "venue": "Comerica Park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260724_nyy_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "New York Yankees", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Citizens Bank Park", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99003,10 +94719,17 @@ "canonical_id": "game_mlb_2026_20260724_ari_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-24T22:45:00Z", + "date": "2026-07-24", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "WSN", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_ari", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99014,43 +94737,17 @@ "canonical_id": "game_mlb_2026_20260724_atl_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-24T23:05:00Z", + "date": "2026-07-24", + "time": "7:05p", + "home_team": "Baltimore Orioles", + "away_team": "Atlanta Braves", + "home_team_abbrev": "BAL", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_atl", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260724_tor_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-24T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260724_sd_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-24T23:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260724_lad_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-24T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99058,10 +94755,71 @@ "canonical_id": "game_mlb_2026_20260724_cle_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-24T23:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-07-24", + "time": "7:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "TB", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_cle", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260724_lad_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "NYM", + "away_team_abbrev": "LAD", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_lad", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260724_sd_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "7:10p", + "home_team": "Miami Marlins", + "away_team": "San Diego Padres", + "home_team_abbrev": "MIA", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_sd", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260724_tor_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-24", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tor", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99069,10 +94827,53 @@ "canonical_id": "game_mlb_2026_20260724_hou_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-24T23:40:00Z", + "date": "2026-07-24", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Houston Astros", + "home_team_abbrev": "CHW", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_hou", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260725_bay_hou", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-24", + "time": "7p", + "home_team": "Houston Houston Dash", + "away_team": "San Francisco Bay FC", + "home_team_abbrev": "HOU", + "away_team_abbrev": "BAY", + "home_team_canonical_id": "team_nwsl_hou", + "away_team_canonical_id": "team_nwsl_bay", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260725_chi_orl", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-24", + "time": "8p", + "home_team": "Orlando Orlando Pride", + "away_team": "Chicago Chicago Red Stars", + "home_team_abbrev": "ORL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nwsl_orl", + "away_team_canonical_id": "team_nwsl_chi", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -99080,10 +94881,17 @@ "canonical_id": "game_mlb_2026_20260725_sea_tex_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-25T00:05:00Z", + "date": "2026-07-24", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Seattle Mariners", + "home_team_abbrev": "TEX", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_sea", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99091,10 +94899,17 @@ "canonical_id": "game_mlb_2026_20260725_oak_min_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-25T00:10:00Z", + "date": "2026-07-24", + "time": "7:10p", + "home_team": "Minnesota Twins", + "away_team": "Oakland Athletics", + "home_team_abbrev": "MIN", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_oak", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99102,10 +94917,35 @@ "canonical_id": "game_mlb_2026_20260725_cin_stl_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-25T00:15:00Z", + "date": "2026-07-24", + "time": "7:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "STL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_cin", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260725_njy_por", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-24", + "time": "7p", + "home_team": "Portland Portland Thorns", + "away_team": "New Jersey NJ/NY Gotham FC", + "home_team_abbrev": "POR", + "away_team_abbrev": "NJY", + "home_team_canonical_id": "team_nwsl_por", + "away_team_canonical_id": "team_nwsl_njy", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_nwsl_providence_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -99113,10 +94953,17 @@ "canonical_id": "game_mlb_2026_20260725_laa_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-25T02:15:00Z", + "date": "2026-07-24", + "time": "7:15p", + "home_team": "San Francisco Giants", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "SF", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_laa", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99124,21 +94971,17 @@ "canonical_id": "game_mlb_2026_20260725_kc_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-25T17:10:00Z", + "date": "2026-07-25", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Kansas City Royals", + "home_team_abbrev": "DET", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_kc", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260725_laa_sf_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-25T20:05:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99146,10 +94989,35 @@ "canonical_id": "game_mlb_2026_20260725_ari_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-25T20:05:00Z", + "date": "2026-07-25", + "time": "4:05p", + "home_team": "Washington Nationals", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "WSN", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_ari", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260725_laa_sf_2", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "SF", + "away_team_abbrev": "LAA", + "home_team_canonical_id": "team_mlb_sf", + "away_team_canonical_id": "team_mlb_laa", + "venue": "Oracle Park", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99157,10 +95025,17 @@ "canonical_id": "game_mlb_2026_20260725_tor_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-25T20:10:00Z", + "date": "2026-07-25", + "time": "4:10p", + "home_team": "Boston Red Sox", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_tor", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99168,10 +95043,35 @@ "canonical_id": "game_mlb_2026_20260725_sd_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-25T20:10:00Z", + "date": "2026-07-25", + "time": "4:10p", + "home_team": "Miami Marlins", + "away_team": "San Diego Padres", + "home_team_abbrev": "MIA", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_sd", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260725_kcc_bos", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-25", + "time": "5p", + "home_team": "Boston Boston Legacy FC", + "away_team": "Kansas City Kansas City Current", + "home_team_abbrev": "BOS", + "away_team_abbrev": "KCC", + "home_team_canonical_id": "team_nwsl_bos", + "away_team_canonical_id": "team_nwsl_kcc", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_nwsl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -99179,10 +95079,17 @@ "canonical_id": "game_mlb_2026_20260725_nyy_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-25T22:05:00Z", + "date": "2026-07-25", + "time": "6:05p", + "home_team": "Philadelphia Phillies", + "away_team": "New York Yankees", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99190,10 +95097,17 @@ "canonical_id": "game_mlb_2026_20260725_cle_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-25T22:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-07-25", + "time": "6:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "TB", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_cle", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99201,10 +95115,35 @@ "canonical_id": "game_mlb_2026_20260725_chc_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-25T22:40:00Z", + "date": "2026-07-25", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Chicago Cubs", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_chc", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260725_cin_clb", + "sport": "MLS", + "season": "2026", + "date": "2026-07-25", + "time": "7p", + "home_team": "Columbus Columbus Crew", + "away_team": "Cincinnati FC Cincinnati", + "home_team_abbrev": "CLB", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mls_clb", + "away_team_canonical_id": "team_mls_cin", + "venue": "Lower.com Field", + "stadium_canonical_id": "stadium_mls_lowercom_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -99212,10 +95151,17 @@ "canonical_id": "game_mlb_2026_20260725_atl_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-25T23:05:00Z", + "date": "2026-07-25", + "time": "7:05p", + "home_team": "Baltimore Orioles", + "away_team": "Atlanta Braves", + "home_team_abbrev": "BAL", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_atl", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99223,10 +95169,17 @@ "canonical_id": "game_mlb_2026_20260725_oak_min_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-25T23:10:00Z", + "date": "2026-07-25", + "time": "6:10p", + "home_team": "Minnesota Twins", + "away_team": "Oakland Athletics", + "home_team_abbrev": "MIN", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_oak", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99234,10 +95187,17 @@ "canonical_id": "game_mlb_2026_20260725_hou_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-25T23:10:00Z", + "date": "2026-07-25", + "time": "6:10p", + "home_team": "Chicago White Sox", + "away_team": "Houston Astros", + "home_team_abbrev": "CHW", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_hou", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99245,32 +95205,17 @@ "canonical_id": "game_mlb_2026_20260725_col_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-25T23:10:00Z", + "date": "2026-07-25", + "time": "6:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Colorado Rockies", + "home_team_abbrev": "MIL", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_col", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260725_sea_tex_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-25T23:15:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260725_lad_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-25T23:15:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99278,10 +95223,323 @@ "canonical_id": "game_mlb_2026_20260725_cin_stl_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-25T23:15:00Z", + "date": "2026-07-25", + "time": "6:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "STL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_cin", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260725_sea_tex_2", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "6:15p", + "home_team": "Texas Rangers", + "away_team": "Seattle Mariners", + "home_team_abbrev": "TEX", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sea", + "venue": "Globe Life Field", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260725_lad_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-07-25", + "time": "7:15p", + "home_team": "New York Mets", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "NYM", + "away_team_abbrev": "LAD", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_lad", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260725_mia_mtl", + "sport": "MLS", + "season": "2026", + "date": "2026-07-25", + "time": "7:30p", + "home_team": "Montreal CF Montreal", + "away_team": "Miami Inter Miami", + "home_team_abbrev": "MTL", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mls_mtl", + "away_team_canonical_id": "team_mls_mia", + "venue": "Stade Saputo", + "stadium_canonical_id": "stadium_mls_stade_saputo", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260725_sea_phi", + "sport": "MLS", + "season": "2026", + "date": "2026-07-25", + "time": "7:30p", + "home_team": "Philadelphia Philadelphia Union", + "away_team": "Seattle Seattle Sounders", + "home_team_abbrev": "PHI", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mls_phi", + "away_team_canonical_id": "team_mls_sea", + "venue": "Subaru Park", + "stadium_canonical_id": "stadium_mls_subaru_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260725_nsh_orl", + "sport": "MLS", + "season": "2026", + "date": "2026-07-25", + "time": "7:30p", + "home_team": "Orlando Orlando City", + "away_team": "Nashville Nashville SC", + "home_team_abbrev": "ORL", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_mls_orl", + "away_team_canonical_id": "team_mls_nsh", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260725_clt_ny", + "sport": "MLS", + "season": "2026", + "date": "2026-07-25", + "time": "7:30p", + "home_team": "New York New York Red Bulls", + "away_team": "Charlotte Charlotte FC", + "home_team_abbrev": "RB", + "away_team_abbrev": "CLT", + "home_team_canonical_id": "team_mls_ny", + "away_team_canonical_id": "team_mls_clt", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_mls_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260725_chi_nyc", + "sport": "MLS", + "season": "2026", + "date": "2026-07-25", + "time": "7:30p", + "home_team": "New York New York City FC", + "away_team": "Chicago Chicago Fire", + "home_team_abbrev": "NYC", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_mls_nyc", + "away_team_canonical_id": "team_mls_chi", + "venue": "Yankee Stadium", + "stadium_canonical_id": "stadium_mls_yankee_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260725_atl_ne", + "sport": "MLS", + "season": "2026", + "date": "2026-07-25", + "time": "7:30p", + "home_team": "New England New England Revolution", + "away_team": "Atlanta Atlanta United", + "home_team_abbrev": "NE", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mls_ne", + "away_team_canonical_id": "team_mls_atl", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_mls_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260725_tor_dc", + "sport": "MLS", + "season": "2026", + "date": "2026-07-25", + "time": "7:30p", + "home_team": "Washington D.C. United", + "away_team": "Toronto Toronto FC", + "home_team_abbrev": "DC", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mls_dc", + "away_team_canonical_id": "team_mls_tor", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_mls_audi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260725_uta_ncc", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-25", + "time": "7:45p", + "home_team": "North Carolina North Carolina Courage", + "away_team": "Utah Utah Royals", + "home_team_abbrev": "NCC", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nwsl_ncc", + "away_team_canonical_id": "team_nwsl_uta", + "venue": "WakeMed Soccer Park", + "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260726_col_stl", + "sport": "MLS", + "season": "2026", + "date": "2026-07-25", + "time": "7:30p", + "home_team": "St. Louis St. Louis City SC", + "away_team": "Colorado Colorado Rapids", + "home_team_abbrev": "STL", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mls_stl", + "away_team_canonical_id": "team_mls_col", + "venue": "CITYPARK", + "stadium_canonical_id": "stadium_mls_citypark", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260726_aus_hou", + "sport": "MLS", + "season": "2026", + "date": "2026-07-25", + "time": "7:30p", + "home_team": "Houston Houston Dynamo", + "away_team": "Austin Austin FC", + "home_team_abbrev": "HOU", + "away_team_abbrev": "AUS", + "home_team_canonical_id": "team_mls_hou", + "away_team_canonical_id": "team_mls_aus", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_mls_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260726_van_min", + "sport": "MLS", + "season": "2026", + "date": "2026-07-25", + "time": "7:30p", + "home_team": "Minnesota Minnesota United", + "away_team": "Vancouver Vancouver Whitecaps", + "home_team_abbrev": "MIN", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_mls_min", + "away_team_canonical_id": "team_mls_van", + "venue": "Allianz Field", + "stadium_canonical_id": "stadium_mls_allianz_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260726_dal_sd", + "sport": "MLS", + "season": "2026", + "date": "2026-07-25", + "time": "6:30p", + "home_team": "San Diego San Diego FC", + "away_team": "Dallas FC Dallas", + "home_team_abbrev": "SD", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_mls_sd", + "away_team_canonical_id": "team_mls_dal", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260726_lag_sj", + "sport": "MLS", + "season": "2026", + "date": "2026-07-26", + "time": "2:30a", + "home_team": "San Jose San Jose Earthquakes", + "away_team": "Los Angeles LA Galaxy", + "home_team_abbrev": "SJ", + "away_team_abbrev": "LAG", + "home_team_canonical_id": "team_mls_sj", + "away_team_canonical_id": "team_mls_lag", + "venue": null, + "stadium_canonical_id": null, + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260726_slc_por", + "sport": "MLS", + "season": "2026", + "date": "2026-07-25", + "time": "7:30p", + "home_team": "Portland Portland Timbers", + "away_team": "Salt Lake Real Salt Lake", + "home_team_abbrev": "POR", + "away_team_abbrev": "SLC", + "home_team_canonical_id": "team_mls_por", + "away_team_canonical_id": "team_mls_slc", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_mls_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260726_skc_lafc", + "sport": "MLS", + "season": "2026", + "date": "2026-07-25", + "time": "7:30p", + "home_team": "Los Angeles Los Angeles FC", + "away_team": "Kansas City Sporting Kansas City", + "home_team_abbrev": "LAFC", + "away_team_abbrev": "SKC", + "home_team_canonical_id": "team_mls_lafc", + "away_team_canonical_id": "team_mls_skc", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -99289,43 +95547,17 @@ "canonical_id": "game_mlb_2026_20260726_cle_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-26T16:15:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-07-26", + "time": "12:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "TB", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_cle", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260726_tor_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-26T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260726_chc_pit", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-26T17:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260726_atl_bal", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-26T17:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99333,10 +95565,71 @@ "canonical_id": "game_mlb_2026_20260726_ari_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-26T17:35:00Z", + "date": "2026-07-26", + "time": "1:35p", + "home_team": "Washington Nationals", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "WSN", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_ari", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260726_atl_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "1:35p", + "home_team": "Baltimore Orioles", + "away_team": "Atlanta Braves", + "home_team_abbrev": "BAL", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_atl", + "venue": "Oriole Park at Camden Yards", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260726_tor_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "1:35p", + "home_team": "Boston Red Sox", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "BOS", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_tor", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260726_chc_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "1:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "Chicago Cubs", + "home_team_abbrev": "PIT", + "away_team_abbrev": "CHC", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_chc", + "venue": "PNC Park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99344,10 +95637,17 @@ "canonical_id": "game_mlb_2026_20260726_sd_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-26T17:40:00Z", + "date": "2026-07-26", + "time": "1:40p", + "home_team": "Miami Marlins", + "away_team": "San Diego Padres", + "home_team_abbrev": "MIA", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_sd", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99355,10 +95655,17 @@ "canonical_id": "game_mlb_2026_20260726_lad_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-26T17:40:00Z", + "date": "2026-07-26", + "time": "1:40p", + "home_team": "New York Mets", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "NYM", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_lad", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99366,32 +95673,17 @@ "canonical_id": "game_mlb_2026_20260726_kc_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-26T17:40:00Z", + "date": "2026-07-26", + "time": "1:40p", + "home_team": "Detroit Tigers", + "away_team": "Kansas City Royals", + "home_team_abbrev": "DET", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_kc", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260726_oak_min", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-26T18:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260726_hou_chw", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-26T18:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99399,10 +95691,53 @@ "canonical_id": "game_mlb_2026_20260726_col_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-26T18:10:00Z", + "date": "2026-07-26", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Colorado Rockies", + "home_team_abbrev": "MIL", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_col", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260726_hou_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Houston Astros", + "home_team_abbrev": "CHW", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_hou", + "venue": "Guaranteed Rate Field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260726_oak_min", + "sport": "MLB", + "season": "2026", + "date": "2026-07-26", + "time": "1:10p", + "home_team": "Minnesota Twins", + "away_team": "Oakland Athletics", + "home_team_abbrev": "MIN", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Target Field", + "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99410,10 +95745,17 @@ "canonical_id": "game_mlb_2026_20260726_cin_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-26T18:15:00Z", + "date": "2026-07-26", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "STL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_cin", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99421,10 +95763,17 @@ "canonical_id": "game_mlb_2026_20260726_sea_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-26T18:35:00Z", + "date": "2026-07-26", + "time": "1:35p", + "home_team": "Texas Rangers", + "away_team": "Seattle Mariners", + "home_team_abbrev": "TEX", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_sea", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99432,10 +95781,53 @@ "canonical_id": "game_mlb_2026_20260726_laa_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-26T20:05:00Z", + "date": "2026-07-26", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "SF", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_laa", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260726_sea_sdw", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-26", + "time": "2p", + "home_team": "San Diego San Diego Wave", + "away_team": "Seattle Seattle Reign", + "home_team_abbrev": "SDW", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nwsl_sdw", + "away_team_canonical_id": "team_nwsl_sea", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260726_den_wsh", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-26", + "time": "7p", + "home_team": "Washington Washington Spirit", + "away_team": "Denver Denver Summit FC", + "home_team_abbrev": "WSH", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nwsl_wsh", + "away_team_canonical_id": "team_nwsl_den", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_nwsl_audi_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -99443,10 +95835,35 @@ "canonical_id": "game_mlb_2026_20260726_nyy_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-26T23:20:00Z", + "date": "2026-07-26", + "time": "7:20p", + "home_team": "Philadelphia Phillies", + "away_team": "New York Yankees", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260727_rgn_ang", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-26", + "time": "6p", + "home_team": "Los Angeles Angel City FC", + "away_team": "Louisville Racing Louisville", + "home_team_abbrev": "ANG", + "away_team_abbrev": "RGN", + "home_team_canonical_id": "team_nwsl_ang", + "away_team_canonical_id": "team_nwsl_rgn", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_nwsl_bmo_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -99454,32 +95871,17 @@ "canonical_id": "game_mlb_2026_20260727_sea_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-27T18:35:00Z", + "date": "2026-07-27", + "time": "1:35p", + "home_team": "Texas Rangers", + "away_team": "Seattle Mariners", + "home_team_abbrev": "TEX", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_sea", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260727_phi_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-27T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260727_bal_det", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-27T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99487,10 +95889,53 @@ "canonical_id": "game_mlb_2026_20260727_ari_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-27T22:40:00Z", + "date": "2026-07-27", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "PIT", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_ari", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260727_phi_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "MIA", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_phi", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260727_bal_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "DET", + "away_team_abbrev": "BAL", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_bal", + "venue": "Comerica Park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99498,21 +95943,17 @@ "canonical_id": "game_mlb_2026_20260727_tor_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-27T22:45:00Z", + "date": "2026-07-27", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "WSN", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_tor", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260727_cle_cin", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-27T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_cle", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99520,10 +95961,35 @@ "canonical_id": "game_mlb_2026_20260727_atl_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-27T23:10:00Z", + "date": "2026-07-27", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Atlanta Braves", + "home_team_abbrev": "NYM", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_atl", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260727_cle_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-27", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "CIN", + "away_team_abbrev": "CLE", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_cle", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99531,10 +95997,17 @@ "canonical_id": "game_mlb_2026_20260727_nyy_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-27T23:40:00Z", + "date": "2026-07-27", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "New York Yankees", + "home_team_abbrev": "CHW", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99542,10 +96015,17 @@ "canonical_id": "game_mlb_2026_20260727_chc_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-27T23:45:00Z", + "date": "2026-07-27", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Chicago Cubs", + "home_team_abbrev": "STL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_chc", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99553,10 +96033,17 @@ "canonical_id": "game_mlb_2026_20260728_hou_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-28T01:38:00Z", + "date": "2026-07-27", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Houston Astros", + "home_team_abbrev": "LAA", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_hou", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99564,10 +96051,17 @@ "canonical_id": "game_mlb_2026_20260728_bos_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-28T01:40:00Z", + "date": "2026-07-27", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Boston Red Sox", + "home_team_abbrev": "OAK", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_bos", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99575,32 +96069,17 @@ "canonical_id": "game_mlb_2026_20260728_mil_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-28T01:45:00Z", + "date": "2026-07-27", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "SF", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_mil", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260728_tex_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-28T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_tropicana_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260728_phi_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-28T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99608,10 +96087,53 @@ "canonical_id": "game_mlb_2026_20260728_bal_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-28T22:40:00Z", + "date": "2026-07-28", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "DET", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_bal", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260728_tex_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Texas Rangers", + "home_team_abbrev": "TB", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260728_phi_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-07-28", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "MIA", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_phi", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99619,10 +96141,17 @@ "canonical_id": "game_mlb_2026_20260728_ari_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-28T22:40:00Z", + "date": "2026-07-28", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "PIT", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_ari", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99630,10 +96159,17 @@ "canonical_id": "game_mlb_2026_20260728_tor_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-28T22:45:00Z", + "date": "2026-07-28", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "WSN", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_tor", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99641,10 +96177,17 @@ "canonical_id": "game_mlb_2026_20260728_cle_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-28T23:10:00Z", + "date": "2026-07-28", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "CIN", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_cle", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99652,10 +96195,35 @@ "canonical_id": "game_mlb_2026_20260728_atl_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-28T23:10:00Z", + "date": "2026-07-28", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Atlanta Braves", + "home_team_abbrev": "NYM", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_atl", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260728_con_was", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-28", + "time": "7:30p", + "home_team": "Washington Mystics", + "away_team": "Connecticut Sun", + "home_team_abbrev": "WAS", + "away_team_abbrev": "CON", + "home_team_canonical_id": "team_wnba_was", + "away_team_canonical_id": "team_wnba_con", + "venue": "Entertainment & Sports Arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -99663,10 +96231,17 @@ "canonical_id": "game_mlb_2026_20260728_nyy_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-28T23:40:00Z", + "date": "2026-07-28", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "New York Yankees", + "home_team_abbrev": "CHW", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99674,10 +96249,17 @@ "canonical_id": "game_mlb_2026_20260728_kc_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-28T23:40:00Z", + "date": "2026-07-28", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Kansas City Royals", + "home_team_abbrev": "MIN", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_kc", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99685,10 +96267,35 @@ "canonical_id": "game_mlb_2026_20260728_chc_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-28T23:45:00Z", + "date": "2026-07-28", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Chicago Cubs", + "home_team_abbrev": "STL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_chc", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260729_ind_sea", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-28", + "time": "6:30p", + "home_team": "Seattle Storm", + "away_team": "Indiana Fever", + "home_team_abbrev": "SEA", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_wnba_sea", + "away_team_canonical_id": "team_wnba_ind", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -99696,10 +96303,17 @@ "canonical_id": "game_mlb_2026_20260729_hou_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-29T01:38:00Z", + "date": "2026-07-28", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Houston Astros", + "home_team_abbrev": "LAA", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_hou", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99707,10 +96321,17 @@ "canonical_id": "game_mlb_2026_20260729_col_sd_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-29T01:40:00Z", + "date": "2026-07-28", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Colorado Rockies", + "home_team_abbrev": "SD", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_col", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99718,10 +96339,17 @@ "canonical_id": "game_mlb_2026_20260729_bos_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-29T01:40:00Z", + "date": "2026-07-28", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Boston Red Sox", + "home_team_abbrev": "OAK", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_bos", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99729,10 +96357,35 @@ "canonical_id": "game_mlb_2026_20260729_mil_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-29T01:45:00Z", + "date": "2026-07-28", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "SF", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_mil", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260729_ny_la", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-28", + "time": "7p", + "home_team": "Los Angeles Sparks", + "away_team": "New York Liberty", + "home_team_abbrev": "LA", + "away_team_abbrev": "NY", + "home_team_canonical_id": "team_wnba_la", + "away_team_canonical_id": "team_wnba_ny", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -99740,10 +96393,17 @@ "canonical_id": "game_mlb_2026_20260729_sea_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-29T02:10:00Z", + "date": "2026-07-28", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Seattle Mariners", + "home_team_abbrev": "LAD", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_sea", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99751,10 +96411,17 @@ "canonical_id": "game_mlb_2026_20260729_phi_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-29T16:10:00Z", + "date": "2026-07-29", + "time": "12:10p", + "home_team": "Miami Marlins", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "MIA", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_phi", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99762,10 +96429,17 @@ "canonical_id": "game_mlb_2026_20260729_ari_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-29T16:35:00Z", + "date": "2026-07-29", + "time": "12:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "PIT", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_ari", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99773,21 +96447,17 @@ "canonical_id": "game_mlb_2026_20260729_tor_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-29T17:05:00Z", + "date": "2026-07-29", + "time": "1:05p", + "home_team": "Washington Nationals", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "WSN", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_tor", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260729_bal_det", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-29T17:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99795,10 +96465,35 @@ "canonical_id": "game_mlb_2026_20260729_atl_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-29T17:10:00Z", + "date": "2026-07-29", + "time": "1:10p", + "home_team": "New York Mets", + "away_team": "Atlanta Braves", + "home_team_abbrev": "NYM", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_atl", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260729_bal_det", + "sport": "MLB", + "season": "2026", + "date": "2026-07-29", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "DET", + "away_team_abbrev": "BAL", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_bal", + "venue": "Comerica Park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99806,10 +96501,17 @@ "canonical_id": "game_mlb_2026_20260729_mil_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-29T19:45:00Z", + "date": "2026-07-29", + "time": "12:45p", + "home_team": "San Francisco Giants", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "SF", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_mil", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99817,10 +96519,17 @@ "canonical_id": "game_mlb_2026_20260729_col_sd_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-29T20:10:00Z", + "date": "2026-07-29", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Colorado Rockies", + "home_team_abbrev": "SD", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_col", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99828,10 +96537,17 @@ "canonical_id": "game_mlb_2026_20260729_tex_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-29T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-07-29", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Texas Rangers", + "home_team_abbrev": "TB", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_tex", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99839,10 +96555,17 @@ "canonical_id": "game_mlb_2026_20260729_cle_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-29T23:10:00Z", + "date": "2026-07-29", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "CIN", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_cle", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99850,10 +96573,17 @@ "canonical_id": "game_mlb_2026_20260729_nyy_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-29T23:40:00Z", + "date": "2026-07-29", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "New York Yankees", + "home_team_abbrev": "CHW", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99861,10 +96591,17 @@ "canonical_id": "game_mlb_2026_20260729_kc_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-29T23:40:00Z", + "date": "2026-07-29", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Kansas City Royals", + "home_team_abbrev": "MIN", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_kc", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99872,10 +96609,71 @@ "canonical_id": "game_mlb_2026_20260729_chc_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-29T23:45:00Z", + "date": "2026-07-29", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Chicago Cubs", + "home_team_abbrev": "STL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_chc", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260730_rgn_kcc", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-29", + "time": "7p", + "home_team": "Kansas City Kansas City Current", + "away_team": "Louisville Racing Louisville", + "home_team_abbrev": "KCC", + "away_team_abbrev": "RGN", + "home_team_canonical_id": "team_nwsl_kcc", + "away_team_canonical_id": "team_nwsl_rgn", + "venue": "CPKC Stadium", + "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260730_atl_dal", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-29", + "time": "7p", + "home_team": "Dallas Wings", + "away_team": "Atlanta Dream", + "home_team_abbrev": "DAL", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_atl", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260730_wsh_uta", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-29", + "time": "7p", + "home_team": "Utah Utah Royals", + "away_team": "Washington Washington Spirit", + "home_team_abbrev": "UTA", + "away_team_abbrev": "WSH", + "home_team_canonical_id": "team_nwsl_uta", + "away_team_canonical_id": "team_nwsl_wsh", + "venue": "America First Field", + "stadium_canonical_id": "stadium_nwsl_america_first_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -99883,10 +96681,17 @@ "canonical_id": "game_mlb_2026_20260730_hou_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-30T01:38:00Z", + "date": "2026-07-29", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Houston Astros", + "home_team_abbrev": "LAA", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_hou", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99894,10 +96699,53 @@ "canonical_id": "game_mlb_2026_20260730_bos_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-30T01:40:00Z", + "date": "2026-07-29", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Boston Red Sox", + "home_team_abbrev": "OAK", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_bos", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260730_njy_bay", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-29", + "time": "7p", + "home_team": "San Francisco Bay FC", + "away_team": "New Jersey NJ/NY Gotham FC", + "home_team_abbrev": "BAY", + "away_team_abbrev": "NJY", + "home_team_canonical_id": "team_nwsl_bay", + "away_team_canonical_id": "team_nwsl_njy", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_nwsl_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260730_gsv_phx", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-29", + "time": "10p", + "home_team": "Phoenix Mercury", + "away_team": "Golden State Valkyries", + "home_team_abbrev": "PHX", + "away_team_abbrev": "GSV", + "home_team_canonical_id": "team_wnba_phx", + "away_team_canonical_id": "team_wnba_gsv", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -99905,10 +96753,17 @@ "canonical_id": "game_mlb_2026_20260730_sea_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-30T02:10:00Z", + "date": "2026-07-29", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Seattle Mariners", + "home_team_abbrev": "LAD", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_sea", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99916,10 +96771,17 @@ "canonical_id": "game_mlb_2026_20260730_tex_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-30T16:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-07-30", + "time": "12:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Texas Rangers", + "home_team_abbrev": "TB", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_tex", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99927,10 +96789,17 @@ "canonical_id": "game_mlb_2026_20260730_kc_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-30T17:40:00Z", + "date": "2026-07-30", + "time": "12:40p", + "home_team": "Minnesota Twins", + "away_team": "Kansas City Royals", + "home_team_abbrev": "MIN", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_kc", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99938,10 +96807,17 @@ "canonical_id": "game_mlb_2026_20260730_nyy_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-30T18:10:00Z", + "date": "2026-07-30", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "New York Yankees", + "home_team_abbrev": "CHW", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99949,21 +96825,17 @@ "canonical_id": "game_mlb_2026_20260730_chc_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-30T18:15:00Z", + "date": "2026-07-30", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Chicago Cubs", + "home_team_abbrev": "STL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_chc", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260730_pit_cin", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-30T23:10:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99971,10 +96843,35 @@ "canonical_id": "game_mlb_2026_20260730_mia_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-30T23:10:00Z", + "date": "2026-07-30", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Miami Marlins", + "home_team_abbrev": "NYM", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_mia", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260730_pit_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "7:10p", + "home_team": "Cincinnati Reds", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "CIN", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_pit", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -99982,21 +96879,35 @@ "canonical_id": "game_mlb_2026_20260730_wsn_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-30T23:15:00Z", + "date": "2026-07-30", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Washington Nationals", + "home_team_abbrev": "ATL", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260731_sf_sd", - "sport": "MLB", + "canonical_id": "game_wnba_2026_20260731_con_chi", + "sport": "WNBA", "season": "2026", - "game_datetime_utc": "2026-07-31T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_petco_park", + "date": "2026-07-30", + "time": "7p", + "home_team": "Chicago Sky", + "away_team": "Connecticut Sun", + "home_team_abbrev": "CHI", + "away_team_abbrev": "CON", + "home_team_canonical_id": "team_wnba_chi", + "away_team_canonical_id": "team_wnba_con", + "venue": "Wintrust Arena", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100004,10 +96915,53 @@ "canonical_id": "game_mlb_2026_20260731_bos_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-31T01:40:00Z", + "date": "2026-07-30", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Boston Red Sox", + "home_team_abbrev": "OAK", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_bos", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260731_sf_sd", + "sport": "MLB", + "season": "2026", + "date": "2026-07-30", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "San Francisco Giants", + "home_team_abbrev": "SD", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_sd", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Petco Park", + "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260731_ny_lv", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-30", + "time": "7p", + "home_team": "Las Vegas Aces", + "away_team": "New York Liberty", + "home_team_abbrev": "LV", + "away_team_abbrev": "NY", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_ny", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100015,10 +96969,17 @@ "canonical_id": "game_mlb_2026_20260731_sea_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-31T02:10:00Z", + "date": "2026-07-30", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Seattle Mariners", + "home_team_abbrev": "LAD", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_sea", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100026,10 +96987,17 @@ "canonical_id": "game_mlb_2026_20260731_nyy_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-31T18:20:00Z", + "date": "2026-07-31", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "New York Yankees", + "home_team_abbrev": "CHC", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100037,10 +97005,17 @@ "canonical_id": "game_mlb_2026_20260731_pit_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-31T22:10:00Z", + "date": "2026-07-31", + "time": "6:10p", + "home_team": "Cincinnati Reds", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "CIN", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_pit", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100048,10 +97023,17 @@ "canonical_id": "game_mlb_2026_20260731_phi_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-31T23:05:00Z", + "date": "2026-07-31", + "time": "7:05p", + "home_team": "Baltimore Orioles", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "BAL", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_phi", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100059,10 +97041,17 @@ "canonical_id": "game_mlb_2026_20260731_stl_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-31T23:07:00Z", + "date": "2026-07-31", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "TOR", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_stl", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100070,21 +97059,17 @@ "canonical_id": "game_mlb_2026_20260731_mia_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-31T23:10:00Z", + "date": "2026-07-31", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Miami Marlins", + "home_team_abbrev": "NYM", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_mia", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260731_chw_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-07-31T23:10:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100092,10 +97077,35 @@ "canonical_id": "game_mlb_2026_20260731_ari_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-31T23:10:00Z", + "date": "2026-07-31", + "time": "7:10p", + "home_team": "Cleveland Guardians", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "CLE", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_ari", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260731_chw_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "7:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Chicago White Sox", + "home_team_abbrev": "TB", + "away_team_abbrev": "CHW", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_chw", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100103,10 +97113,89 @@ "canonical_id": "game_mlb_2026_20260731_wsn_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-07-31T23:15:00Z", + "date": "2026-07-31", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Washington Nationals", + "home_team_abbrev": "ATL", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260731_tor_nyc", + "sport": "MLS", + "season": "2026", + "date": "2026-07-31", + "time": "7:30p", + "home_team": "New York New York City FC", + "away_team": "Toronto Toronto FC", + "home_team_abbrev": "NYC", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mls_nyc", + "away_team_canonical_id": "team_mls_tor", + "venue": "Yankee Stadium", + "stadium_canonical_id": "stadium_mls_yankee_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260731_sea_atl", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-31", + "time": "7:30p", + "home_team": "Atlanta Dream", + "away_team": "Seattle Storm", + "home_team_abbrev": "ATL", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_wnba_atl", + "away_team_canonical_id": "team_wnba_sea", + "venue": "Gateway Center Arena", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260731_dal_was", + "sport": "WNBA", + "season": "2026", + "date": "2026-07-31", + "time": "7:30p", + "home_team": "Washington Mystics", + "away_team": "Dallas Wings", + "home_team_abbrev": "WAS", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_wnba_was", + "away_team_canonical_id": "team_wnba_dal", + "venue": "Entertainment & Sports Arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260801_orl_ncc", + "sport": "NWSL", + "season": "2026", + "date": "2026-07-31", + "time": "8p", + "home_team": "North Carolina North Carolina Courage", + "away_team": "Orlando Orlando Pride", + "home_team_abbrev": "NCC", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nwsl_ncc", + "away_team_canonical_id": "team_nwsl_orl", + "venue": "WakeMed Soccer Park", + "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100114,10 +97203,17 @@ "canonical_id": "game_mlb_2026_20260801_tex_hou_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-01T00:10:00Z", + "date": "2026-07-31", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Texas Rangers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_tex", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100125,10 +97221,17 @@ "canonical_id": "game_mlb_2026_20260801_kc_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-01T00:40:00Z", + "date": "2026-07-31", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Kansas City Royals", + "home_team_abbrev": "COL", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_kc", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100136,21 +97239,17 @@ "canonical_id": "game_mlb_2026_20260801_mil_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-01T01:38:00Z", + "date": "2026-07-31", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "LAA", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_mil", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260801_sf_sd", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-01T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100158,10 +97257,35 @@ "canonical_id": "game_mlb_2026_20260801_det_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-01T01:40:00Z", + "date": "2026-07-31", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Detroit Tigers", + "home_team_abbrev": "OAK", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_det", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260801_sf_sd", + "sport": "MLB", + "season": "2026", + "date": "2026-07-31", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "San Francisco Giants", + "home_team_abbrev": "SD", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_sd", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Petco Park", + "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100169,10 +97293,17 @@ "canonical_id": "game_mlb_2026_20260801_min_sea_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-01T02:10:00Z", + "date": "2026-07-31", + "time": "7:10p", + "home_team": "Seattle Mariners", + "away_team": "Minnesota Twins", + "home_team_abbrev": "SEA", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100180,10 +97311,53 @@ "canonical_id": "game_mlb_2026_20260801_bos_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-01T02:10:00Z", + "date": "2026-07-31", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Boston Red Sox", + "home_team_abbrev": "LAD", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_bos", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260801_lv_chi", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-01", + "time": "12p", + "home_team": "Chicago Sky", + "away_team": "Las Vegas Aces", + "home_team_abbrev": "CHI", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_wnba_chi", + "away_team_canonical_id": "team_wnba_lv", + "venue": "Wintrust Arena", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260801_ny_phx", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-01", + "time": "3p", + "home_team": "Phoenix Mercury", + "away_team": "New York Liberty", + "home_team_abbrev": "PHX", + "away_team_abbrev": "NY", + "home_team_canonical_id": "team_wnba_phx", + "away_team_canonical_id": "team_wnba_ny", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100191,21 +97365,35 @@ "canonical_id": "game_mlb_2026_20260801_stl_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-01T19:07:00Z", + "date": "2026-08-01", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "TOR", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_stl", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260801_min_sea_2", - "sport": "MLB", + "canonical_id": "game_nwsl_2026_20260801_chi_rgn", + "sport": "NWSL", "season": "2026", - "game_datetime_utc": "2026-08-01T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "date": "2026-08-01", + "time": "4p", + "home_team": "Louisville Racing Louisville", + "away_team": "Chicago Chicago Red Stars", + "home_team_abbrev": "RGN", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nwsl_rgn", + "away_team_canonical_id": "team_nwsl_chi", + "venue": "Lynn Family Stadium", + "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100213,10 +97401,35 @@ "canonical_id": "game_mlb_2026_20260801_mia_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-01T20:10:00Z", + "date": "2026-08-01", + "time": "4:10p", + "home_team": "New York Mets", + "away_team": "Miami Marlins", + "home_team_abbrev": "NYM", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_mia", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260801_min_sea_2", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Minnesota Twins", + "home_team_abbrev": "SEA", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_min", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100224,10 +97437,35 @@ "canonical_id": "game_mlb_2026_20260801_chw_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-01T20:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-08-01", + "time": "4:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Chicago White Sox", + "home_team_abbrev": "TB", + "away_team_abbrev": "CHW", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_chw", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260801_ang_kcc", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-01", + "time": "5:30p", + "home_team": "Kansas City Kansas City Current", + "away_team": "Los Angeles Angel City FC", + "home_team_abbrev": "KCC", + "away_team_abbrev": "ANG", + "home_team_canonical_id": "team_nwsl_kcc", + "away_team_canonical_id": "team_nwsl_ang", + "venue": "CPKC Stadium", + "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100235,10 +97473,17 @@ "canonical_id": "game_mlb_2026_20260801_pit_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-01T22:40:00Z", + "date": "2026-08-01", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "CIN", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_pit", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100246,10 +97491,17 @@ "canonical_id": "game_mlb_2026_20260801_phi_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-01T23:05:00Z", + "date": "2026-08-01", + "time": "7:05p", + "home_team": "Baltimore Orioles", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "BAL", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_phi", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100257,32 +97509,17 @@ "canonical_id": "game_mlb_2026_20260801_tex_hou_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-01T23:10:00Z", + "date": "2026-08-01", + "time": "6:10p", + "home_team": "Houston Astros", + "away_team": "Texas Rangers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_tex", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260801_wsn_atl", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-01T23:15:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260801_nyy_chc", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-01T23:15:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100290,10 +97527,197 @@ "canonical_id": "game_mlb_2026_20260801_ari_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-01T23:15:00Z", + "date": "2026-08-01", + "time": "7:15p", + "home_team": "Cleveland Guardians", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "CLE", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_ari", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260801_wsn_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Washington Nationals", + "home_team_abbrev": "ATL", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "Truist Park", + "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260801_nyy_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-01", + "time": "6:15p", + "home_team": "Chicago Cubs", + "away_team": "New York Yankees", + "home_team_abbrev": "CHC", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Wrigley Field", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260801_orl_ny", + "sport": "MLS", + "season": "2026", + "date": "2026-08-01", + "time": "7:30p", + "home_team": "New York New York Red Bulls", + "away_team": "Orlando Orlando City", + "home_team_abbrev": "RB", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_mls_ny", + "away_team_canonical_id": "team_mls_orl", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_mls_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260801_atl_phi", + "sport": "MLS", + "season": "2026", + "date": "2026-08-01", + "time": "7:30p", + "home_team": "Philadelphia Philadelphia Union", + "away_team": "Atlanta Atlanta United", + "home_team_abbrev": "PHI", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mls_phi", + "away_team_canonical_id": "team_mls_atl", + "venue": "Subaru Park", + "stadium_canonical_id": "stadium_mls_subaru_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260801_lafc_van", + "sport": "MLS", + "season": "2026", + "date": "2026-08-01", + "time": "4:30p", + "home_team": "Vancouver Vancouver Whitecaps", + "away_team": "Los Angeles Los Angeles FC", + "home_team_abbrev": "VAN", + "away_team_abbrev": "LAFC", + "home_team_canonical_id": "team_mls_van", + "away_team_canonical_id": "team_mls_lafc", + "venue": "BC Place", + "stadium_canonical_id": "stadium_mls_bc_place", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260801_nsh_dc", + "sport": "MLS", + "season": "2026", + "date": "2026-08-01", + "time": "7:30p", + "home_team": "Washington D.C. United", + "away_team": "Nashville Nashville SC", + "home_team_abbrev": "DC", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_mls_dc", + "away_team_canonical_id": "team_mls_nsh", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_mls_audi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260801_clb_mia", + "sport": "MLS", + "season": "2026", + "date": "2026-08-01", + "time": "7:30p", + "home_team": "Miami Inter Miami", + "away_team": "Columbus Columbus Crew", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CLB", + "home_team_canonical_id": "team_mls_mia", + "away_team_canonical_id": "team_mls_clb", + "venue": "Miami Freedom Park", + "stadium_canonical_id": "stadium_mls_miami_freedom_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260801_sj_cin", + "sport": "MLS", + "season": "2026", + "date": "2026-08-01", + "time": "7:30p", + "home_team": "Cincinnati FC Cincinnati", + "away_team": "San Jose San Jose Earthquakes", + "home_team_abbrev": "CIN", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_mls_cin", + "away_team_canonical_id": "team_mls_sj", + "venue": "TQL Stadium", + "stadium_canonical_id": "stadium_mls_tql_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260801_ne_mtl", + "sport": "MLS", + "season": "2026", + "date": "2026-08-01", + "time": "7:30p", + "home_team": "Montreal CF Montreal", + "away_team": "New England New England Revolution", + "home_team_abbrev": "MTL", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_mls_mtl", + "away_team_canonical_id": "team_mls_ne", + "venue": "Stade Saputo", + "stadium_canonical_id": "stadium_mls_stade_saputo", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260802_njy_hou", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-01", + "time": "7p", + "home_team": "Houston Houston Dash", + "away_team": "New Jersey NJ/NY Gotham FC", + "home_team_abbrev": "HOU", + "away_team_abbrev": "NJY", + "home_team_canonical_id": "team_nwsl_hou", + "away_team_canonical_id": "team_nwsl_njy", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100301,10 +97725,89 @@ "canonical_id": "game_mlb_2026_20260802_kc_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-02T00:10:00Z", + "date": "2026-08-01", + "time": "6:10p", + "home_team": "Colorado Rockies", + "away_team": "Kansas City Royals", + "home_team_abbrev": "COL", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_kc", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260802_hou_skc", + "sport": "MLS", + "season": "2026", + "date": "2026-08-01", + "time": "7:30p", + "home_team": "Kansas City Sporting Kansas City", + "away_team": "Houston Houston Dynamo", + "home_team_abbrev": "SKC", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mls_skc", + "away_team_canonical_id": "team_mls_hou", + "venue": "Children's Mercy Park", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260802_slc_stl", + "sport": "MLS", + "season": "2026", + "date": "2026-08-01", + "time": "7:30p", + "home_team": "St. Louis St. Louis City SC", + "away_team": "Salt Lake Real Salt Lake", + "home_team_abbrev": "STL", + "away_team_abbrev": "SLC", + "home_team_canonical_id": "team_mls_stl", + "away_team_canonical_id": "team_mls_slc", + "venue": "CITYPARK", + "stadium_canonical_id": "stadium_mls_citypark", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260802_sd_min", + "sport": "MLS", + "season": "2026", + "date": "2026-08-01", + "time": "7:30p", + "home_team": "Minnesota Minnesota United", + "away_team": "San Diego San Diego FC", + "home_team_abbrev": "MIN", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mls_min", + "away_team_canonical_id": "team_mls_sd", + "venue": "Allianz Field", + "stadium_canonical_id": "stadium_mls_allianz_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260802_clt_chi", + "sport": "MLS", + "season": "2026", + "date": "2026-08-01", + "time": "7:30p", + "home_team": "Chicago Chicago Fire", + "away_team": "Charlotte Charlotte FC", + "home_team_abbrev": "CHI", + "away_team_abbrev": "CLT", + "home_team_canonical_id": "team_mls_chi", + "away_team_canonical_id": "team_mls_clt", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_mls_soldier_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100312,10 +97815,35 @@ "canonical_id": "game_mlb_2026_20260802_sf_sd_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-02T00:40:00Z", + "date": "2026-08-01", + "time": "5:40p", + "home_team": "San Diego Padres", + "away_team": "San Francisco Giants", + "home_team_abbrev": "SD", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_sf", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260802_sea_bay", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-01", + "time": "5:45p", + "home_team": "San Francisco Bay FC", + "away_team": "Seattle Seattle Reign", + "home_team_abbrev": "BAY", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nwsl_bay", + "away_team_canonical_id": "team_nwsl_sea", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_nwsl_paypal_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100323,10 +97851,35 @@ "canonical_id": "game_mlb_2026_20260802_bos_lad_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-02T01:10:00Z", + "date": "2026-08-01", + "time": "6:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Boston Red Sox", + "home_team_abbrev": "LAD", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_bos", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260802_aus_col", + "sport": "MLS", + "season": "2026", + "date": "2026-08-01", + "time": "7:30p", + "home_team": "Colorado Colorado Rapids", + "away_team": "Austin Austin FC", + "home_team_abbrev": "COL", + "away_team_abbrev": "AUS", + "home_team_canonical_id": "team_mls_col", + "away_team_canonical_id": "team_mls_aus", + "venue": "Dick's Sporting Goods Park", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100334,10 +97887,17 @@ "canonical_id": "game_mlb_2026_20260802_mil_laa_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-02T01:38:00Z", + "date": "2026-08-01", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "LAA", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_mil", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100345,21 +97905,71 @@ "canonical_id": "game_mlb_2026_20260802_det_oak_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-02T01:40:00Z", + "date": "2026-08-01", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Detroit Tigers", + "home_team_abbrev": "OAK", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_det", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260802_wsn_atl", - "sport": "MLB", + "canonical_id": "game_mls_2026_20260802_sea_por", + "sport": "MLS", "season": "2026", - "game_datetime_utc": "2026-08-02T17:35:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_truist_park", + "date": "2026-08-01", + "time": "7:30p", + "home_team": "Portland Portland Timbers", + "away_team": "Seattle Seattle Sounders", + "home_team_abbrev": "POR", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mls_por", + "away_team_canonical_id": "team_mls_sea", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_mls_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260802_dal_lag", + "sport": "MLS", + "season": "2026", + "date": "2026-08-01", + "time": "7:30p", + "home_team": "Los Angeles LA Galaxy", + "away_team": "Dallas FC Dallas", + "home_team_abbrev": "LAG", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_mls_lag", + "away_team_canonical_id": "team_mls_dal", + "venue": "Dignity Health Sports Park", + "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260802_ind_min", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-02", + "time": "12p", + "home_team": "Minnesota Lynx", + "away_team": "Indiana Fever", + "home_team_abbrev": "MIN", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_wnba_min", + "away_team_canonical_id": "team_wnba_ind", + "venue": "Target Center", + "stadium_canonical_id": "stadium_wnba_target_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100367,10 +97977,35 @@ "canonical_id": "game_mlb_2026_20260802_phi_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-02T17:35:00Z", + "date": "2026-08-02", + "time": "1:35p", + "home_team": "Baltimore Orioles", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "BAL", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_phi", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260802_wsn_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "1:35p", + "home_team": "Atlanta Braves", + "away_team": "Washington Nationals", + "home_team_abbrev": "ATL", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "Truist Park", + "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100378,32 +98013,17 @@ "canonical_id": "game_mlb_2026_20260802_stl_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-02T17:37:00Z", + "date": "2026-08-02", + "time": "1:37p", + "home_team": "Toronto Blue Jays", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "TOR", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_stl", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260802_pit_cin", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-02T17:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260802_mia_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-02T17:40:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100411,10 +98031,17 @@ "canonical_id": "game_mlb_2026_20260802_chw_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-02T17:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-08-02", + "time": "1:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Chicago White Sox", + "home_team_abbrev": "TB", + "away_team_abbrev": "CHW", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_chw", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100422,10 +98049,53 @@ "canonical_id": "game_mlb_2026_20260802_ari_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-02T17:40:00Z", + "date": "2026-08-02", + "time": "1:40p", + "home_team": "Cleveland Guardians", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "CLE", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_ari", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260802_mia_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "1:40p", + "home_team": "New York Mets", + "away_team": "Miami Marlins", + "home_team_abbrev": "NYM", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_mia", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260802_pit_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-02", + "time": "1:40p", + "home_team": "Cincinnati Reds", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "CIN", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_pit", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100433,10 +98103,17 @@ "canonical_id": "game_mlb_2026_20260802_tex_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-02T18:10:00Z", + "date": "2026-08-02", + "time": "1:10p", + "home_team": "Houston Astros", + "away_team": "Texas Rangers", + "home_team_abbrev": "HOU", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_tex", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100444,10 +98121,17 @@ "canonical_id": "game_mlb_2026_20260802_nyy_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-02T18:20:00Z", + "date": "2026-08-02", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "New York Yankees", + "home_team_abbrev": "CHC", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100455,10 +98139,17 @@ "canonical_id": "game_mlb_2026_20260802_kc_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-02T19:10:00Z", + "date": "2026-08-02", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Kansas City Royals", + "home_team_abbrev": "COL", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_kc", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100466,10 +98157,35 @@ "canonical_id": "game_mlb_2026_20260802_mil_laa_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-02T19:15:00Z", + "date": "2026-08-02", + "time": "12:10p", + "home_team": "Los Angeles Angels", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "LAA", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_mil", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260802_sdw_wsh", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-02", + "time": "4p", + "home_team": "Washington Washington Spirit", + "away_team": "San Diego San Diego Wave", + "home_team_abbrev": "WSH", + "away_team_abbrev": "SDW", + "home_team_canonical_id": "team_nwsl_wsh", + "away_team_canonical_id": "team_nwsl_sdw", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_nwsl_audi_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100477,10 +98193,17 @@ "canonical_id": "game_mlb_2026_20260802_det_oak_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-02T20:05:00Z", + "date": "2026-08-02", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Detroit Tigers", + "home_team_abbrev": "OAK", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_det", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100488,10 +98211,17 @@ "canonical_id": "game_mlb_2026_20260802_sf_sd_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-02T20:10:00Z", + "date": "2026-08-02", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "San Francisco Giants", + "home_team_abbrev": "SD", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_sf", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100499,10 +98229,53 @@ "canonical_id": "game_mlb_2026_20260802_min_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-02T20:10:00Z", + "date": "2026-08-02", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Minnesota Twins", + "home_team_abbrev": "SEA", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260802_por_uta", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-02", + "time": "5p", + "home_team": "Utah Utah Royals", + "away_team": "Portland Portland Thorns", + "home_team_abbrev": "UTA", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nwsl_uta", + "away_team_canonical_id": "team_nwsl_por", + "venue": "America First Field", + "stadium_canonical_id": "stadium_nwsl_america_first_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260802_con_dal", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-02", + "time": "6p", + "home_team": "Dallas Wings", + "away_team": "Connecticut Sun", + "home_team_abbrev": "DAL", + "away_team_abbrev": "CON", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_con", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100510,10 +98283,35 @@ "canonical_id": "game_mlb_2026_20260802_bos_lad_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-02T23:20:00Z", + "date": "2026-08-02", + "time": "4:20p", + "home_team": "Los Angeles Dodgers", + "away_team": "Boston Red Sox", + "home_team_abbrev": "LAD", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_bos", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260803_bos_den", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-02", + "time": "7p", + "home_team": "Denver Denver Summit FC", + "away_team": "Boston Boston Legacy FC", + "home_team_abbrev": "DEN", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nwsl_den", + "away_team_canonical_id": "team_nwsl_bos", + "venue": "Centennial Stadium", + "stadium_canonical_id": "stadium_nwsl_centennial_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100521,10 +98319,17 @@ "canonical_id": "game_mlb_2026_20260803_wsn_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-03T22:40:00Z", + "date": "2026-08-03", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Washington Nationals", + "home_team_abbrev": "PHI", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100532,10 +98337,35 @@ "canonical_id": "game_mlb_2026_20260803_stl_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-03T23:05:00Z", + "date": "2026-08-03", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "NYY", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_stl", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260803_lv_atl", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-03", + "time": "7:30p", + "home_team": "Atlanta Dream", + "away_team": "Las Vegas Aces", + "home_team_abbrev": "ATL", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_wnba_atl", + "away_team_canonical_id": "team_wnba_lv", + "venue": "Gateway Center Arena", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100543,10 +98373,53 @@ "canonical_id": "game_mlb_2026_20260803_pit_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-03T23:40:00Z", + "date": "2026-08-03", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "MIL", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_pit", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260804_phx_chi", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-03", + "time": "7p", + "home_team": "Chicago Sky", + "away_team": "Phoenix Mercury", + "home_team_abbrev": "CHI", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_wnba_chi", + "away_team_canonical_id": "team_wnba_phx", + "venue": "Wintrust Arena", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260804_sea_ny", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-03", + "time": "8p", + "home_team": "New York Liberty", + "away_team": "Seattle Storm", + "home_team_abbrev": "NY", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_sea", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100554,10 +98427,17 @@ "canonical_id": "game_mlb_2026_20260804_sf_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-04T00:05:00Z", + "date": "2026-08-03", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "San Francisco Giants", + "home_team_abbrev": "TEX", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_sf", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100565,10 +98445,17 @@ "canonical_id": "game_mlb_2026_20260804_lad_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-04T00:05:00Z", + "date": "2026-08-03", + "time": "7:05p", + "home_team": "Chicago Cubs", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "CHC", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_lad", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100576,10 +98463,17 @@ "canonical_id": "game_mlb_2026_20260804_tor_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-04T00:10:00Z", + "date": "2026-08-03", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "HOU", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_tor", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100587,10 +98481,17 @@ "canonical_id": "game_mlb_2026_20260804_tbr_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-04T00:40:00Z", + "date": "2026-08-03", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "COL", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100598,10 +98499,17 @@ "canonical_id": "game_mlb_2026_20260804_sd_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-04T01:40:00Z", + "date": "2026-08-03", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "San Diego Padres", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_sd", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100609,10 +98517,17 @@ "canonical_id": "game_mlb_2026_20260804_laa_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-04T22:35:00Z", + "date": "2026-08-04", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "BAL", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_laa", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100620,10 +98535,17 @@ "canonical_id": "game_mlb_2026_20260804_wsn_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-04T22:40:00Z", + "date": "2026-08-04", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Washington Nationals", + "home_team_abbrev": "PHI", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100631,10 +98553,17 @@ "canonical_id": "game_mlb_2026_20260804_oak_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-04T22:40:00Z", + "date": "2026-08-04", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Oakland Athletics", + "home_team_abbrev": "CIN", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_oak", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100642,10 +98571,17 @@ "canonical_id": "game_mlb_2026_20260804_nym_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-04T22:40:00Z", + "date": "2026-08-04", + "time": "6:40p", + "home_team": "Cleveland Guardians", + "away_team": "New York Mets", + "home_team_abbrev": "CLE", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_nym", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100653,10 +98589,17 @@ "canonical_id": "game_mlb_2026_20260804_stl_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-04T23:05:00Z", + "date": "2026-08-04", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "NYY", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_stl", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100664,10 +98607,17 @@ "canonical_id": "game_mlb_2026_20260804_chw_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-04T23:10:00Z", + "date": "2026-08-04", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Chicago White Sox", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_chw", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100675,10 +98625,17 @@ "canonical_id": "game_mlb_2026_20260804_mia_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-04T23:15:00Z", + "date": "2026-08-04", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Miami Marlins", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_mia", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100686,10 +98643,17 @@ "canonical_id": "game_mlb_2026_20260804_pit_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-04T23:40:00Z", + "date": "2026-08-04", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "MIL", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_pit", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100697,21 +98661,17 @@ "canonical_id": "game_mlb_2026_20260804_min_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-04T23:40:00Z", + "date": "2026-08-04", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Minnesota Twins", + "home_team_abbrev": "KC", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_min", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260805_sf_tex_1", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-05T00:05:00Z", - "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100719,10 +98679,35 @@ "canonical_id": "game_mlb_2026_20260805_lad_chc_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-05T00:05:00Z", + "date": "2026-08-04", + "time": "7:05p", + "home_team": "Chicago Cubs", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "CHC", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_lad", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260805_sf_tex_1", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "San Francisco Giants", + "home_team_abbrev": "TEX", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_tex", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Globe Life Field", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100730,10 +98715,17 @@ "canonical_id": "game_mlb_2026_20260805_tor_hou_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-05T00:10:00Z", + "date": "2026-08-04", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "HOU", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_tor", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100741,21 +98733,17 @@ "canonical_id": "game_mlb_2026_20260805_tbr_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-05T00:40:00Z", + "date": "2026-08-04", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "COL", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260805_sd_ari", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-05T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100763,10 +98751,35 @@ "canonical_id": "game_mlb_2026_20260805_det_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-05T01:40:00Z", + "date": "2026-08-04", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Detroit Tigers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260805_sd_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-04", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "San Diego Padres", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sd", + "venue": "Chase Field", + "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100774,10 +98787,17 @@ "canonical_id": "game_mlb_2026_20260805_tor_hou_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-05T18:10:00Z", + "date": "2026-08-05", + "time": "1:10p", + "home_team": "Houston Astros", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "HOU", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_tor", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100785,10 +98805,17 @@ "canonical_id": "game_mlb_2026_20260805_lad_chc_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-05T18:20:00Z", + "date": "2026-08-05", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "CHC", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_lad", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100796,10 +98823,17 @@ "canonical_id": "game_mlb_2026_20260805_sf_tex_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-05T18:35:00Z", + "date": "2026-08-05", + "time": "1:35p", + "home_team": "Texas Rangers", + "away_team": "San Francisco Giants", + "home_team_abbrev": "TEX", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_sf", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100807,10 +98841,17 @@ "canonical_id": "game_mlb_2026_20260805_tbr_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-05T19:10:00Z", + "date": "2026-08-05", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "COL", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100818,10 +98859,17 @@ "canonical_id": "game_mlb_2026_20260805_laa_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-05T22:35:00Z", + "date": "2026-08-05", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "BAL", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_laa", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100829,21 +98877,17 @@ "canonical_id": "game_mlb_2026_20260805_wsn_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-05T22:40:00Z", + "date": "2026-08-05", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Washington Nationals", + "home_team_abbrev": "PHI", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260805_oak_cin", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-05T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100851,10 +98895,71 @@ "canonical_id": "game_mlb_2026_20260805_nym_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-05T22:40:00Z", + "date": "2026-08-05", + "time": "6:40p", + "home_team": "Cleveland Guardians", + "away_team": "New York Mets", + "home_team_abbrev": "CLE", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_nym", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260805_oak_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Oakland Athletics", + "home_team_abbrev": "CIN", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260805_sea_ny", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-05", + "time": "7p", + "home_team": "New York Liberty", + "away_team": "Seattle Storm", + "home_team_abbrev": "NY", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_sea", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260805_phx_atl", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-05", + "time": "7p", + "home_team": "Atlanta Dream", + "away_team": "Phoenix Mercury", + "home_team_abbrev": "ATL", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_wnba_atl", + "away_team_canonical_id": "team_wnba_phx", + "venue": "Gateway Center Arena", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100862,10 +98967,17 @@ "canonical_id": "game_mlb_2026_20260805_stl_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-05T23:05:00Z", + "date": "2026-08-05", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "NYY", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_stl", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100873,10 +98985,17 @@ "canonical_id": "game_mlb_2026_20260805_chw_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-05T23:10:00Z", + "date": "2026-08-05", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Chicago White Sox", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_chw", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100884,21 +99003,35 @@ "canonical_id": "game_mlb_2026_20260805_mia_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-05T23:15:00Z", + "date": "2026-08-05", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Miami Marlins", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_mia", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260805_pit_mil", - "sport": "MLB", + "canonical_id": "game_wnba_2026_20260805_dal_was", + "sport": "WNBA", "season": "2026", - "game_datetime_utc": "2026-08-05T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "date": "2026-08-05", + "time": "7:30p", + "home_team": "Washington Mystics", + "away_team": "Dallas Wings", + "home_team_abbrev": "WAS", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_wnba_was", + "away_team_canonical_id": "team_wnba_dal", + "venue": "Entertainment & Sports Arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100906,21 +99039,53 @@ "canonical_id": "game_mlb_2026_20260805_min_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-05T23:40:00Z", + "date": "2026-08-05", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Minnesota Twins", + "home_team_abbrev": "KC", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_min", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260806_sd_ari", + "canonical_id": "game_mlb_2026_20260805_pit_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-06T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_chase_field", + "date": "2026-08-05", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "MIL", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_pit", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260806_la_chi", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-05", + "time": "8p", + "home_team": "Chicago Sky", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "CHI", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_chi", + "away_team_canonical_id": "team_wnba_la", + "venue": "Wintrust Arena", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100928,10 +99093,53 @@ "canonical_id": "game_mlb_2026_20260806_det_sea_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-06T01:40:00Z", + "date": "2026-08-05", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Detroit Tigers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260806_sd_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-05", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "San Diego Padres", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_sd", + "venue": "Chase Field", + "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260806_ncc_den", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-05", + "time": "8p", + "home_team": "Denver Denver Summit FC", + "away_team": "North Carolina North Carolina Courage", + "home_team_abbrev": "DEN", + "away_team_abbrev": "NCC", + "home_team_canonical_id": "team_nwsl_den", + "away_team_canonical_id": "team_nwsl_ncc", + "venue": "Centennial Stadium", + "stadium_canonical_id": "stadium_nwsl_centennial_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -100939,10 +99147,17 @@ "canonical_id": "game_mlb_2026_20260806_laa_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-06T16:35:00Z", + "date": "2026-08-06", + "time": "12:35p", + "home_team": "Baltimore Orioles", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "BAL", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_laa", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100950,10 +99165,17 @@ "canonical_id": "game_mlb_2026_20260806_oak_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-06T16:40:00Z", + "date": "2026-08-06", + "time": "12:40p", + "home_team": "Cincinnati Reds", + "away_team": "Oakland Athletics", + "home_team_abbrev": "CIN", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_oak", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100961,10 +99183,17 @@ "canonical_id": "game_mlb_2026_20260806_nym_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-06T17:10:00Z", + "date": "2026-08-06", + "time": "1:10p", + "home_team": "Cleveland Guardians", + "away_team": "New York Mets", + "home_team_abbrev": "CLE", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_nym", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100972,10 +99201,17 @@ "canonical_id": "game_mlb_2026_20260806_pit_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-06T18:10:00Z", + "date": "2026-08-06", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "MIL", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_pit", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100983,10 +99219,17 @@ "canonical_id": "game_mlb_2026_20260806_det_sea_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-06T20:10:00Z", + "date": "2026-08-06", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Detroit Tigers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -100994,10 +99237,35 @@ "canonical_id": "game_mlb_2026_20260806_wsn_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-06T22:05:00Z", + "date": "2026-08-06", + "time": "6:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Washington Nationals", + "home_team_abbrev": "PHI", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260806_lv_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-06", + "time": "7p", + "home_team": "Indiana Fever", + "away_team": "Las Vegas Aces", + "home_team_abbrev": "IND", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_lv", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -101005,10 +99273,17 @@ "canonical_id": "game_mlb_2026_20260806_chw_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-06T23:10:00Z", + "date": "2026-08-06", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Chicago White Sox", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_chw", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101016,10 +99291,17 @@ "canonical_id": "game_mlb_2026_20260806_mia_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-06T23:15:00Z", + "date": "2026-08-06", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Miami Marlins", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_mia", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101027,10 +99309,35 @@ "canonical_id": "game_mlb_2026_20260806_min_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-06T23:40:00Z", + "date": "2026-08-06", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Minnesota Twins", + "home_team_abbrev": "KC", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_min", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260807_la_min", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-06", + "time": "8p", + "home_team": "Minnesota Lynx", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "MIN", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_min", + "away_team_canonical_id": "team_wnba_la", + "venue": "Target Center", + "stadium_canonical_id": "stadium_wnba_target_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -101038,10 +99345,17 @@ "canonical_id": "game_mlb_2026_20260807_sd_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-07T01:40:00Z", + "date": "2026-08-06", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "San Diego Padres", + "home_team_abbrev": "ARI", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_sd", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101049,10 +99363,17 @@ "canonical_id": "game_mlb_2026_20260807_tor_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-07T22:40:00Z", + "date": "2026-08-07", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_tor", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101060,10 +99381,17 @@ "canonical_id": "game_mlb_2026_20260807_nym_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-07T22:40:00Z", + "date": "2026-08-07", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "New York Mets", + "home_team_abbrev": "PIT", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_nym", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101071,10 +99399,17 @@ "canonical_id": "game_mlb_2026_20260807_cin_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-07T22:45:00Z", + "date": "2026-08-07", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "WSN", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_cin", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101082,21 +99417,17 @@ "canonical_id": "game_mlb_2026_20260807_atl_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-07T23:05:00Z", + "date": "2026-08-07", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Atlanta Braves", + "home_team_abbrev": "NYY", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_atl", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260807_oak_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-07T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101104,21 +99435,71 @@ "canonical_id": "game_mlb_2026_20260807_laa_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-07T23:10:00Z", + "date": "2026-08-07", + "time": "7:10p", + "home_team": "Miami Marlins", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "MIA", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_laa", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260807_min_mil", + "canonical_id": "game_mlb_2026_20260807_oak_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-07T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "date": "2026-08-07", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Oakland Athletics", + "home_team_abbrev": "BOS", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260807_atl_was", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-07", + "time": "7:30p", + "home_team": "Washington Mystics", + "away_team": "Atlanta Dream", + "home_team_abbrev": "WAS", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_wnba_was", + "away_team_canonical_id": "team_wnba_atl", + "venue": "Entertainment & Sports Arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260807_phx_con", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-07", + "time": "7:30p", + "home_team": "Connecticut Sun", + "away_team": "Phoenix Mercury", + "home_team_abbrev": "CON", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_wnba_con", + "away_team_canonical_id": "team_wnba_phx", + "venue": "Mohegan Sun Arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -101126,10 +99507,53 @@ "canonical_id": "game_mlb_2026_20260807_cle_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-07T23:40:00Z", + "date": "2026-08-07", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "CHW", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_cle", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260807_min_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Minnesota Twins", + "home_team_abbrev": "MIL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_min", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260808_sdw_njy", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-07", + "time": "8p", + "home_team": "New Jersey NJ/NY Gotham FC", + "away_team": "San Diego San Diego Wave", + "home_team_abbrev": "NJY", + "away_team_abbrev": "SDW", + "home_team_canonical_id": "team_nwsl_njy", + "away_team_canonical_id": "team_nwsl_sdw", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_nwsl_red_bull_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -101137,10 +99561,17 @@ "canonical_id": "game_mlb_2026_20260808_bal_tex_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-08T00:05:00Z", + "date": "2026-08-07", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "TEX", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_bal", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101148,10 +99579,17 @@ "canonical_id": "game_mlb_2026_20260808_chc_kc_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-08T00:10:00Z", + "date": "2026-08-07", + "time": "7:10p", + "home_team": "Kansas City Royals", + "away_team": "Chicago Cubs", + "home_team_abbrev": "KC", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_chc", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101159,21 +99597,35 @@ "canonical_id": "game_mlb_2026_20260808_col_stl_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-08T00:15:00Z", + "date": "2026-08-07", + "time": "7:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Colorado Rockies", + "home_team_abbrev": "STL", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_col", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260808_lad_ari", - "sport": "MLB", + "canonical_id": "game_wnba_2026_20260808_gsv_dal", + "sport": "WNBA", "season": "2026", - "game_datetime_utc": "2026-08-08T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_chase_field", + "date": "2026-08-07", + "time": "8:30p", + "home_team": "Dallas Wings", + "away_team": "Golden State Valkyries", + "home_team_abbrev": "DAL", + "away_team_abbrev": "GSV", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_gsv", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -101181,10 +99633,35 @@ "canonical_id": "game_mlb_2026_20260808_hou_sd_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-08T01:40:00Z", + "date": "2026-08-07", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Houston Astros", + "home_team_abbrev": "SD", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_hou", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260808_lad_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-08-07", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "LAD", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_lad", + "venue": "Chase Field", + "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101192,10 +99669,17 @@ "canonical_id": "game_mlb_2026_20260808_tbr_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-08T02:10:00Z", + "date": "2026-08-07", + "time": "7:10p", + "home_team": "Seattle Mariners", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "SEA", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101203,10 +99687,35 @@ "canonical_id": "game_mlb_2026_20260808_det_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-08T02:15:00Z", + "date": "2026-08-07", + "time": "7:15p", + "home_team": "San Francisco Giants", + "away_team": "Detroit Tigers", + "home_team_abbrev": "SF", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_det", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260808_lv_min", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-08", + "time": "12p", + "home_team": "Minnesota Lynx", + "away_team": "Las Vegas Aces", + "home_team_abbrev": "MIN", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_wnba_min", + "away_team_canonical_id": "team_wnba_lv", + "venue": "Target Center", + "stadium_canonical_id": "stadium_wnba_target_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -101214,21 +99723,53 @@ "canonical_id": "game_mlb_2026_20260808_atl_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-08T19:05:00Z", + "date": "2026-08-08", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Atlanta Braves", + "home_team_abbrev": "NYY", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_atl", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260808_oak_bos", - "sport": "MLB", + "canonical_id": "game_wnba_2026_20260808_ind_chi", + "sport": "WNBA", "season": "2026", - "game_datetime_utc": "2026-08-08T20:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_fenway_park", + "date": "2026-08-08", + "time": "2p", + "home_team": "Chicago Sky", + "away_team": "Indiana Fever", + "home_team_abbrev": "CHI", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_wnba_chi", + "away_team_canonical_id": "team_wnba_ind", + "venue": "Wintrust Arena", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260808_uta_den", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-08", + "time": "2p", + "home_team": "Denver Denver Summit FC", + "away_team": "Utah Utah Royals", + "home_team_abbrev": "DEN", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nwsl_den", + "away_team_canonical_id": "team_nwsl_uta", + "venue": "Centennial Stadium", + "stadium_canonical_id": "stadium_nwsl_centennial_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -101236,10 +99777,35 @@ "canonical_id": "game_mlb_2026_20260808_laa_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-08T20:10:00Z", + "date": "2026-08-08", + "time": "4:10p", + "home_team": "Miami Marlins", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "MIA", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_laa", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260808_oak_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "4:10p", + "home_team": "Boston Red Sox", + "away_team": "Oakland Athletics", + "home_team_abbrev": "BOS", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101247,10 +99813,35 @@ "canonical_id": "game_mlb_2026_20260808_tor_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-08T22:05:00Z", + "date": "2026-08-08", + "time": "6:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_tor", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260808_ncc_wsh", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-08", + "time": "6:30p", + "home_team": "Washington Washington Spirit", + "away_team": "North Carolina North Carolina Courage", + "home_team_abbrev": "WSH", + "away_team_abbrev": "NCC", + "home_team_canonical_id": "team_nwsl_wsh", + "away_team_canonical_id": "team_nwsl_ncc", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_nwsl_audi_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -101258,10 +99849,17 @@ "canonical_id": "game_mlb_2026_20260808_nym_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-08T22:40:00Z", + "date": "2026-08-08", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "New York Mets", + "home_team_abbrev": "PIT", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_nym", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101269,21 +99867,35 @@ "canonical_id": "game_mlb_2026_20260808_cin_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-08T22:45:00Z", + "date": "2026-08-08", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "WSN", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_cin", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260808_min_mil", - "sport": "MLB", + "canonical_id": "game_nwsl_2026_20260808_rgn_orl", + "sport": "NWSL", "season": "2026", - "game_datetime_utc": "2026-08-08T23:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "date": "2026-08-08", + "time": "7p", + "home_team": "Orlando Orlando Pride", + "away_team": "Louisville Racing Louisville", + "home_team_abbrev": "ORL", + "away_team_abbrev": "RGN", + "home_team_canonical_id": "team_nwsl_orl", + "away_team_canonical_id": "team_nwsl_rgn", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -101291,10 +99903,35 @@ "canonical_id": "game_mlb_2026_20260808_cle_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-08T23:10:00Z", + "date": "2026-08-08", + "time": "6:10p", + "home_team": "Chicago White Sox", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "CHW", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_cle", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260808_min_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "6:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Minnesota Twins", + "home_team_abbrev": "MIL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_min", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101302,10 +99939,17 @@ "canonical_id": "game_mlb_2026_20260808_chc_kc_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-08T23:10:00Z", + "date": "2026-08-08", + "time": "6:10p", + "home_team": "Kansas City Royals", + "away_team": "Chicago Cubs", + "home_team_abbrev": "KC", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_chc", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101313,21 +99957,17 @@ "canonical_id": "game_mlb_2026_20260808_hou_sd_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-08T23:15:00Z", + "date": "2026-08-08", + "time": "4:15p", + "home_team": "San Diego Padres", + "away_team": "Houston Astros", + "home_team_abbrev": "SD", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_hou", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260808_det_sf_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-08T23:15:00Z", - "home_team_canonical_id": "team_mlb_sf", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101335,10 +99975,35 @@ "canonical_id": "game_mlb_2026_20260808_col_stl_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-08T23:15:00Z", + "date": "2026-08-08", + "time": "6:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Colorado Rockies", + "home_team_abbrev": "STL", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_col", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260808_det_sf_2", + "sport": "MLB", + "season": "2026", + "date": "2026-08-08", + "time": "4:15p", + "home_team": "San Francisco Giants", + "away_team": "Detroit Tigers", + "home_team_abbrev": "SF", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_mlb_sf", + "away_team_canonical_id": "team_mlb_det", + "venue": "Oracle Park", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101346,10 +100011,17 @@ "canonical_id": "game_mlb_2026_20260808_bal_tex_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-08T23:15:00Z", + "date": "2026-08-08", + "time": "6:15p", + "home_team": "Texas Rangers", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "TEX", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_bal", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101357,10 +100029,35 @@ "canonical_id": "game_mlb_2026_20260809_lad_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-09T00:10:00Z", + "date": "2026-08-08", + "time": "5:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_lad", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260809_kcc_hou", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-08", + "time": "7:45p", + "home_team": "Houston Houston Dash", + "away_team": "Kansas City Kansas City Current", + "home_team_abbrev": "HOU", + "away_team_abbrev": "KCC", + "home_team_canonical_id": "team_nwsl_hou", + "away_team_canonical_id": "team_nwsl_kcc", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -101368,10 +100065,17 @@ "canonical_id": "game_mlb_2026_20260809_tbr_sea_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-09T01:50:00Z", + "date": "2026-08-08", + "time": "6:50p", + "home_team": "Seattle Mariners", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "SEA", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101379,32 +100083,35 @@ "canonical_id": "game_mlb_2026_20260809_cin_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-09T16:15:00Z", + "date": "2026-08-09", + "time": "12:10p", + "home_team": "Washington Nationals", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "WSN", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_cin", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260809_tor_phi", - "sport": "MLB", + "canonical_id": "game_wnba_2026_20260809_lv_ny", + "sport": "WNBA", "season": "2026", - "game_datetime_utc": "2026-08-09T17:35:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260809_oak_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-09T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_fenway_park", + "date": "2026-08-09", + "time": "12:30p", + "home_team": "New York Liberty", + "away_team": "Las Vegas Aces", + "home_team_abbrev": "NY", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_lv", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -101412,10 +100119,35 @@ "canonical_id": "game_mlb_2026_20260809_nym_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-09T17:35:00Z", + "date": "2026-08-09", + "time": "1:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "New York Mets", + "home_team_abbrev": "PIT", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_nym", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260809_tor_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "1:35p", + "home_team": "Philadelphia Phillies", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_tor", + "venue": "Citizens Bank Park", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101423,10 +100155,35 @@ "canonical_id": "game_mlb_2026_20260809_atl_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-09T17:35:00Z", + "date": "2026-08-09", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Atlanta Braves", + "home_team_abbrev": "NYY", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_atl", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260809_oak_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "1:35p", + "home_team": "Boston Red Sox", + "away_team": "Oakland Athletics", + "home_team_abbrev": "BOS", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101434,21 +100191,17 @@ "canonical_id": "game_mlb_2026_20260809_laa_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-09T17:40:00Z", + "date": "2026-08-09", + "time": "1:40p", + "home_team": "Miami Marlins", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "MIA", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_laa", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260809_min_mil", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-09T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101456,10 +100209,35 @@ "canonical_id": "game_mlb_2026_20260809_cle_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-09T18:10:00Z", + "date": "2026-08-09", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "CHW", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_cle", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260809_min_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Minnesota Twins", + "home_team_abbrev": "MIL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_min", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101467,10 +100245,17 @@ "canonical_id": "game_mlb_2026_20260809_chc_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-09T18:10:00Z", + "date": "2026-08-09", + "time": "1:10p", + "home_team": "Kansas City Royals", + "away_team": "Chicago Cubs", + "home_team_abbrev": "KC", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_chc", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101478,10 +100263,17 @@ "canonical_id": "game_mlb_2026_20260809_col_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-09T18:15:00Z", + "date": "2026-08-09", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Colorado Rockies", + "home_team_abbrev": "STL", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_col", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101489,10 +100281,71 @@ "canonical_id": "game_mlb_2026_20260809_bal_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-09T18:35:00Z", + "date": "2026-08-09", + "time": "1:35p", + "home_team": "Texas Rangers", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "TEX", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_bal", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260809_phx_was", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-09", + "time": "3p", + "home_team": "Washington Mystics", + "away_team": "Phoenix Mercury", + "home_team_abbrev": "WAS", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_wnba_was", + "away_team_canonical_id": "team_wnba_phx", + "venue": "Entertainment & Sports Arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260809_dal_min", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-09", + "time": "2:30p", + "home_team": "Minnesota Lynx", + "away_team": "Dallas Wings", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_wnba_min", + "away_team_canonical_id": "team_wnba_dal", + "venue": "Target Center", + "stadium_canonical_id": "stadium_wnba_target_center", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260809_por_bos", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-09", + "time": "4p", + "home_team": "Boston Boston Legacy FC", + "away_team": "Portland Portland Thorns", + "home_team_abbrev": "BOS", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nwsl_bos", + "away_team_canonical_id": "team_nwsl_por", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_nwsl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -101500,21 +100353,17 @@ "canonical_id": "game_mlb_2026_20260809_det_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-09T20:05:00Z", + "date": "2026-08-09", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Detroit Tigers", + "home_team_abbrev": "SF", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_det", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260809_tbr_sea_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-09T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101522,10 +100371,71 @@ "canonical_id": "game_mlb_2026_20260809_lad_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-09T20:10:00Z", + "date": "2026-08-09", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_lad", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260809_tbr_sea_2", + "sport": "MLB", + "season": "2026", + "date": "2026-08-09", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "SEA", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260809_bay_chi", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-09", + "time": "6p", + "home_team": "Chicago Chicago Red Stars", + "away_team": "San Francisco Bay FC", + "home_team_abbrev": "CHI", + "away_team_abbrev": "BAY", + "home_team_canonical_id": "team_nwsl_chi", + "away_team_canonical_id": "team_nwsl_bay", + "venue": "Northwestern Medicine Field at Martin Stadium", + "stadium_canonical_id": "stadium_nwsl_northwestern_medicine_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260809_gsv_la", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-09", + "time": "4p", + "home_team": "Los Angeles Sparks", + "away_team": "Golden State Valkyries", + "home_team_abbrev": "LA", + "away_team_abbrev": "GSV", + "home_team_canonical_id": "team_wnba_la", + "away_team_canonical_id": "team_wnba_gsv", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -101533,10 +100443,35 @@ "canonical_id": "game_mlb_2026_20260810_hou_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-10T00:20:00Z", + "date": "2026-08-09", + "time": "5:20p", + "home_team": "San Diego Padres", + "away_team": "Houston Astros", + "home_team_abbrev": "SD", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_hou", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260810_ang_sea", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-09", + "time": "6p", + "home_team": "Seattle Seattle Reign", + "away_team": "Los Angeles Angel City FC", + "home_team_abbrev": "SEA", + "away_team_abbrev": "ANG", + "home_team_canonical_id": "team_nwsl_sea", + "away_team_canonical_id": "team_nwsl_ang", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_nwsl_lumen_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -101544,10 +100479,17 @@ "canonical_id": "game_mlb_2026_20260810_bos_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-10T23:07:00Z", + "date": "2026-08-10", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Boston Red Sox", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_bos", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101555,10 +100497,17 @@ "canonical_id": "game_mlb_2026_20260810_nym_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-10T23:15:00Z", + "date": "2026-08-10", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "New York Mets", + "home_team_abbrev": "ATL", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_nym", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101566,10 +100515,17 @@ "canonical_id": "game_mlb_2026_20260810_bal_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-10T23:40:00Z", + "date": "2026-08-10", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "MIN", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_bal", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101577,10 +100533,17 @@ "canonical_id": "game_mlb_2026_20260810_phi_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-10T23:45:00Z", + "date": "2026-08-10", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "STL", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_phi", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101588,21 +100551,17 @@ "canonical_id": "game_mlb_2026_20260811_tex_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-11T01:38:00Z", + "date": "2026-08-10", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Texas Rangers", + "home_team_abbrev": "LAA", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_tex", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260811_tbr_oak", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-11T01:40:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101610,10 +100569,17 @@ "canonical_id": "game_mlb_2026_20260811_mil_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-11T01:40:00Z", + "date": "2026-08-10", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "SD", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_mil", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101621,10 +100587,35 @@ "canonical_id": "game_mlb_2026_20260811_col_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-11T01:40:00Z", + "date": "2026-08-10", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Colorado Rockies", + "home_team_abbrev": "ARI", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_col", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260811_tbr_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-08-10", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "OAK", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Sutter Health Park", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101632,10 +100623,35 @@ "canonical_id": "game_mlb_2026_20260811_hou_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-11T01:45:00Z", + "date": "2026-08-10", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Houston Astros", + "home_team_abbrev": "SF", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_hou", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260811_chi_sea", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-10", + "time": "7p", + "home_team": "Seattle Storm", + "away_team": "Chicago Sky", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_sea", + "away_team_canonical_id": "team_wnba_chi", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -101643,21 +100659,17 @@ "canonical_id": "game_mlb_2026_20260811_kc_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-11T02:10:00Z", + "date": "2026-08-10", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Kansas City Royals", + "home_team_abbrev": "LAD", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_kc", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260811_pit_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-11T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101665,10 +100677,35 @@ "canonical_id": "game_mlb_2026_20260811_cle_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-11T22:40:00Z", + "date": "2026-08-11", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "DET", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_cle", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260811_pit_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "MIA", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_pit", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101676,10 +100713,17 @@ "canonical_id": "game_mlb_2026_20260811_chc_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-11T22:45:00Z", + "date": "2026-08-11", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Chicago Cubs", + "home_team_abbrev": "WSN", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_chc", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101687,10 +100731,17 @@ "canonical_id": "game_mlb_2026_20260811_sea_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-11T23:05:00Z", + "date": "2026-08-11", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Seattle Mariners", + "home_team_abbrev": "NYY", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_sea", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101698,10 +100749,17 @@ "canonical_id": "game_mlb_2026_20260811_bos_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-11T23:07:00Z", + "date": "2026-08-11", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Boston Red Sox", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_bos", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101709,10 +100767,35 @@ "canonical_id": "game_mlb_2026_20260811_nym_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-11T23:15:00Z", + "date": "2026-08-11", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "New York Mets", + "home_team_abbrev": "ATL", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_nym", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260811_ny_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-11", + "time": "7:30p", + "home_team": "Indiana Fever", + "away_team": "New York Liberty", + "home_team_abbrev": "IND", + "away_team_abbrev": "NY", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_ny", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -101720,10 +100803,17 @@ "canonical_id": "game_mlb_2026_20260811_cin_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-11T23:40:00Z", + "date": "2026-08-11", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "CHW", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_cin", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101731,10 +100821,17 @@ "canonical_id": "game_mlb_2026_20260811_bal_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-11T23:40:00Z", + "date": "2026-08-11", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "MIN", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_bal", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101742,10 +100839,17 @@ "canonical_id": "game_mlb_2026_20260811_phi_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-11T23:45:00Z", + "date": "2026-08-11", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "STL", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_phi", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101753,10 +100857,17 @@ "canonical_id": "game_mlb_2026_20260812_tex_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-12T01:38:00Z", + "date": "2026-08-11", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Texas Rangers", + "home_team_abbrev": "LAA", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_tex", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101764,21 +100875,17 @@ "canonical_id": "game_mlb_2026_20260812_tbr_oak_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-12T01:40:00Z", + "date": "2026-08-11", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "OAK", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260812_mil_sd_1", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-12T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101786,10 +100893,35 @@ "canonical_id": "game_mlb_2026_20260812_col_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-12T01:40:00Z", + "date": "2026-08-11", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Colorado Rockies", + "home_team_abbrev": "ARI", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_col", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260812_mil_sd_1", + "sport": "MLB", + "season": "2026", + "date": "2026-08-11", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "SD", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_mlb_sd", + "away_team_canonical_id": "team_mlb_mil", + "venue": "Petco Park", + "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101797,10 +100929,53 @@ "canonical_id": "game_mlb_2026_20260812_hou_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-12T01:45:00Z", + "date": "2026-08-11", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Houston Astros", + "home_team_abbrev": "SF", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_hou", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260812_phx_la", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-11", + "time": "7p", + "home_team": "Los Angeles Sparks", + "away_team": "Phoenix Mercury", + "home_team_abbrev": "LA", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_wnba_la", + "away_team_canonical_id": "team_wnba_phx", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260812_was_lv", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-11", + "time": "7p", + "home_team": "Las Vegas Aces", + "away_team": "Washington Mystics", + "home_team_abbrev": "LV", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_was", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -101808,10 +100983,17 @@ "canonical_id": "game_mlb_2026_20260812_kc_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-12T02:10:00Z", + "date": "2026-08-11", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Kansas City Royals", + "home_team_abbrev": "LAD", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_kc", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101819,10 +101001,17 @@ "canonical_id": "game_mlb_2026_20260812_bal_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-12T17:40:00Z", + "date": "2026-08-12", + "time": "12:40p", + "home_team": "Minnesota Twins", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "MIN", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_bal", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101830,10 +101019,17 @@ "canonical_id": "game_mlb_2026_20260812_phi_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-12T18:15:00Z", + "date": "2026-08-12", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "STL", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_phi", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101841,10 +101037,17 @@ "canonical_id": "game_mlb_2026_20260812_tbr_oak_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-12T19:05:00Z", + "date": "2026-08-12", + "time": "12:05p", + "home_team": "Oakland Athletics", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "OAK", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101852,10 +101055,17 @@ "canonical_id": "game_mlb_2026_20260812_col_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-12T19:40:00Z", + "date": "2026-08-12", + "time": "12:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Colorado Rockies", + "home_team_abbrev": "ARI", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_col", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101863,10 +101073,17 @@ "canonical_id": "game_mlb_2026_20260812_hou_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-12T19:45:00Z", + "date": "2026-08-12", + "time": "12:45p", + "home_team": "San Francisco Giants", + "away_team": "Houston Astros", + "home_team_abbrev": "SF", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_hou", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101874,21 +101091,17 @@ "canonical_id": "game_mlb_2026_20260812_mil_sd_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-12T20:10:00Z", + "date": "2026-08-12", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "SD", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_mil", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260812_pit_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-12T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101896,10 +101109,35 @@ "canonical_id": "game_mlb_2026_20260812_cle_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-12T22:40:00Z", + "date": "2026-08-12", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "DET", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_cle", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260812_pit_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "MIA", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_pit", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101907,10 +101145,17 @@ "canonical_id": "game_mlb_2026_20260812_chc_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-12T22:45:00Z", + "date": "2026-08-12", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Chicago Cubs", + "home_team_abbrev": "WSN", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_chc", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101918,10 +101163,17 @@ "canonical_id": "game_mlb_2026_20260812_sea_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-12T23:05:00Z", + "date": "2026-08-12", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Seattle Mariners", + "home_team_abbrev": "NYY", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_sea", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101929,10 +101181,17 @@ "canonical_id": "game_mlb_2026_20260812_bos_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-12T23:07:00Z", + "date": "2026-08-12", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Boston Red Sox", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_bos", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101940,10 +101199,17 @@ "canonical_id": "game_mlb_2026_20260812_nym_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-12T23:15:00Z", + "date": "2026-08-12", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "New York Mets", + "home_team_abbrev": "ATL", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_nym", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101951,21 +101217,35 @@ "canonical_id": "game_mlb_2026_20260812_cin_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-12T23:40:00Z", + "date": "2026-08-12", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "CHW", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_cin", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260813_tex_laa", - "sport": "MLB", + "canonical_id": "game_wnba_2026_20260813_chi_gsv", + "sport": "WNBA", "season": "2026", - "game_datetime_utc": "2026-08-13T02:10:00Z", - "home_team_canonical_id": "team_mlb_laa", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_angel_stadium", + "date": "2026-08-12", + "time": "7p", + "home_team": "Golden State Valkyries", + "away_team": "Chicago Sky", + "home_team_abbrev": "GSV", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_gsv", + "away_team_canonical_id": "team_wnba_chi", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_wnba_chase_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -101973,10 +101253,35 @@ "canonical_id": "game_mlb_2026_20260813_kc_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-13T02:10:00Z", + "date": "2026-08-12", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Kansas City Royals", + "home_team_abbrev": "LAD", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_kc", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260813_tex_laa", + "sport": "MLB", + "season": "2026", + "date": "2026-08-12", + "time": "7:10p", + "home_team": "Los Angeles Angels", + "away_team": "Texas Rangers", + "home_team_abbrev": "LAA", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_laa", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Angel Stadium", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101984,10 +101289,17 @@ "canonical_id": "game_mlb_2026_20260813_pit_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-13T17:10:00Z", + "date": "2026-08-13", + "time": "1:10p", + "home_team": "Miami Marlins", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "MIA", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_pit", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -101995,10 +101307,17 @@ "canonical_id": "game_mlb_2026_20260813_cle_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-13T17:10:00Z", + "date": "2026-08-13", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "DET", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_cle", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102006,10 +101325,17 @@ "canonical_id": "game_mlb_2026_20260813_sea_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-13T17:35:00Z", + "date": "2026-08-13", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Seattle Mariners", + "home_team_abbrev": "NYY", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_sea", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102017,10 +101343,17 @@ "canonical_id": "game_mlb_2026_20260813_cin_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-13T18:10:00Z", + "date": "2026-08-13", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "CHW", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_cin", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102028,10 +101361,17 @@ "canonical_id": "game_mlb_2026_20260813_bos_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-13T19:07:00Z", + "date": "2026-08-13", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Boston Red Sox", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_bos", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102039,10 +101379,35 @@ "canonical_id": "game_mlb_2026_20260813_chc_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-13T20:05:00Z", + "date": "2026-08-13", + "time": "4:05p", + "home_team": "Washington Nationals", + "away_team": "Chicago Cubs", + "home_team_abbrev": "WSN", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_chc", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260813_atl_con", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-13", + "time": "7p", + "home_team": "Connecticut Sun", + "away_team": "Atlanta Dream", + "home_team_abbrev": "CON", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_wnba_con", + "away_team_canonical_id": "team_wnba_atl", + "venue": "Mohegan Sun Arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -102050,10 +101415,53 @@ "canonical_id": "game_mlb_2026_20260813_phi_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-13T23:30:00Z", + "date": "2026-08-13", + "time": "6:30p", + "home_team": "Minnesota Twins", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "MIN", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_phi", + "venue": "Field of Dreams", "stadium_canonical_id": "stadium_mlb_field_of_dreams", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260814_la_ny", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-13", + "time": "8p", + "home_team": "New York Liberty", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "NY", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_la", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260814_was_lv", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-13", + "time": "7p", + "home_team": "Las Vegas Aces", + "away_team": "Washington Mystics", + "home_team_abbrev": "LV", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_was", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -102061,10 +101469,17 @@ "canonical_id": "game_mlb_2026_20260814_tex_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-14T02:07:00Z", + "date": "2026-08-13", + "time": "7:07p", + "home_team": "Los Angeles Angels", + "away_team": "Texas Rangers", + "home_team_abbrev": "LAA", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_tex", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102072,10 +101487,17 @@ "canonical_id": "game_mlb_2026_20260814_mil_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-14T02:10:00Z", + "date": "2026-08-13", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "LAD", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_mil", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102083,10 +101505,17 @@ "canonical_id": "game_mlb_2026_20260814_stl_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-14T18:20:00Z", + "date": "2026-08-14", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "CHC", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_stl", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102094,21 +101523,17 @@ "canonical_id": "game_mlb_2026_20260814_mia_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-14T22:10:00Z", + "date": "2026-08-14", + "time": "6:10p", + "home_team": "Cincinnati Reds", + "away_team": "Miami Marlins", + "home_team_abbrev": "CIN", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_mia", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260814_chw_det", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-14T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_chw", - "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102116,10 +101541,35 @@ "canonical_id": "game_mlb_2026_20260814_bos_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-14T22:40:00Z", + "date": "2026-08-14", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Boston Red Sox", + "home_team_abbrev": "PIT", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_bos", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260814_chw_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Chicago White Sox", + "home_team_abbrev": "DET", + "away_team_abbrev": "CHW", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_chw", + "venue": "Comerica Park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102127,10 +101577,17 @@ "canonical_id": "game_mlb_2026_20260814_nyy_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-14T23:07:00Z", + "date": "2026-08-14", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "New York Yankees", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102138,21 +101595,17 @@ "canonical_id": "game_mlb_2026_20260814_wsn_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-14T23:10:00Z", + "date": "2026-08-14", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Washington Nationals", + "home_team_abbrev": "NYM", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260814_sd_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-14T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102160,10 +101613,35 @@ "canonical_id": "game_mlb_2026_20260814_bal_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-14T23:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-08-14", + "time": "7:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "TB", + "away_team_abbrev": "BAL", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_bal", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260814_sd_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-14", + "time": "7:10p", + "home_team": "Cleveland Guardians", + "away_team": "San Diego Padres", + "home_team_abbrev": "CLE", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sd", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102171,10 +101649,53 @@ "canonical_id": "game_mlb_2026_20260814_ari_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-14T23:15:00Z", + "date": "2026-08-14", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "ATL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_ari", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260814_dal_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-14", + "time": "7:30p", + "home_team": "Indiana Fever", + "away_team": "Dallas Wings", + "home_team_abbrev": "IND", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_dal", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260815_kcc_njy", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-14", + "time": "8p", + "home_team": "New Jersey NJ/NY Gotham FC", + "away_team": "Kansas City Kansas City Current", + "home_team_abbrev": "NJY", + "away_team_abbrev": "KCC", + "home_team_canonical_id": "team_nwsl_njy", + "away_team_canonical_id": "team_nwsl_kcc", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_nwsl_red_bull_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -102182,10 +101703,17 @@ "canonical_id": "game_mlb_2026_20260815_sea_hou_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-15T00:10:00Z", + "date": "2026-08-14", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Seattle Mariners", + "home_team_abbrev": "HOU", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_sea", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102193,10 +101721,17 @@ "canonical_id": "game_mlb_2026_20260815_kc_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-15T01:38:00Z", + "date": "2026-08-14", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Kansas City Royals", + "home_team_abbrev": "LAA", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_kc", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102204,10 +101739,71 @@ "canonical_id": "game_mlb_2026_20260815_tex_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-15T01:40:00Z", + "date": "2026-08-14", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Texas Rangers", + "home_team_abbrev": "OAK", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_tex", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260815_bay_uta", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-14", + "time": "8p", + "home_team": "Utah Utah Royals", + "away_team": "San Francisco Bay FC", + "home_team_abbrev": "UTA", + "away_team_abbrev": "BAY", + "home_team_canonical_id": "team_nwsl_uta", + "away_team_canonical_id": "team_nwsl_bay", + "venue": "America First Field", + "stadium_canonical_id": "stadium_nwsl_america_first_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260815_chi_sea", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-14", + "time": "7p", + "home_team": "Seattle Seattle Reign", + "away_team": "Chicago Chicago Red Stars", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nwsl_sea", + "away_team_canonical_id": "team_nwsl_chi", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_nwsl_lumen_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260815_den_sdw", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-14", + "time": "7p", + "home_team": "San Diego San Diego Wave", + "away_team": "Denver Denver Summit FC", + "home_team_abbrev": "SDW", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nwsl_sdw", + "away_team_canonical_id": "team_nwsl_den", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -102215,10 +101811,17 @@ "canonical_id": "game_mlb_2026_20260815_mil_lad_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-15T02:10:00Z", + "date": "2026-08-14", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "LAD", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_mil", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102226,10 +101829,35 @@ "canonical_id": "game_mlb_2026_20260815_col_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-15T02:15:00Z", + "date": "2026-08-14", + "time": "7:15p", + "home_team": "San Francisco Giants", + "away_team": "Colorado Rockies", + "home_team_abbrev": "SF", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_col", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260815_ny_con", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-15", + "time": "1p", + "home_team": "Connecticut Sun", + "away_team": "New York Liberty", + "home_team_abbrev": "CON", + "away_team_abbrev": "NY", + "home_team_canonical_id": "team_wnba_con", + "away_team_canonical_id": "team_wnba_ny", + "venue": "Mohegan Sun Arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -102237,10 +101865,17 @@ "canonical_id": "game_mlb_2026_20260815_chw_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-15T17:10:00Z", + "date": "2026-08-15", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Chicago White Sox", + "home_team_abbrev": "DET", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_chw", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102248,10 +101883,17 @@ "canonical_id": "game_mlb_2026_20260815_stl_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-15T18:20:00Z", + "date": "2026-08-15", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "CHC", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_stl", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102259,10 +101901,17 @@ "canonical_id": "game_mlb_2026_20260815_nyy_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-15T19:07:00Z", + "date": "2026-08-15", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "New York Yankees", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102270,10 +101919,17 @@ "canonical_id": "game_mlb_2026_20260815_col_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-15T20:05:00Z", + "date": "2026-08-15", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Colorado Rockies", + "home_team_abbrev": "SF", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_col", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102281,10 +101937,17 @@ "canonical_id": "game_mlb_2026_20260815_wsn_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-15T20:10:00Z", + "date": "2026-08-15", + "time": "4:10p", + "home_team": "New York Mets", + "away_team": "Washington Nationals", + "home_team_abbrev": "NYM", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102292,21 +101955,35 @@ "canonical_id": "game_mlb_2026_20260815_bal_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-15T22:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-08-15", + "time": "6:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "TB", + "away_team_abbrev": "BAL", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_bal", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260815_mia_cin", - "sport": "MLB", + "canonical_id": "game_nwsl_2026_20260815_bos_rgn", + "sport": "NWSL", "season": "2026", - "game_datetime_utc": "2026-08-15T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "date": "2026-08-15", + "time": "6:30p", + "home_team": "Louisville Racing Louisville", + "away_team": "Boston Boston Legacy FC", + "home_team_abbrev": "RGN", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nwsl_rgn", + "away_team_canonical_id": "team_nwsl_bos", + "venue": "Lynn Family Stadium", + "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -102314,10 +101991,35 @@ "canonical_id": "game_mlb_2026_20260815_bos_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-15T22:40:00Z", + "date": "2026-08-15", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Boston Red Sox", + "home_team_abbrev": "PIT", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_bos", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260815_mia_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Miami Marlins", + "home_team_abbrev": "CIN", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mia", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102325,10 +102027,17 @@ "canonical_id": "game_mlb_2026_20260815_sea_hou_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-15T23:10:00Z", + "date": "2026-08-15", + "time": "6:10p", + "home_team": "Houston Astros", + "away_team": "Seattle Mariners", + "home_team_abbrev": "HOU", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_sea", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102336,10 +102045,17 @@ "canonical_id": "game_mlb_2026_20260815_sd_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-15T23:10:00Z", + "date": "2026-08-15", + "time": "7:10p", + "home_team": "Cleveland Guardians", + "away_team": "San Diego Padres", + "home_team_abbrev": "CLE", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_sd", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102347,21 +102063,17 @@ "canonical_id": "game_mlb_2026_20260815_phi_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-15T23:10:00Z", + "date": "2026-08-15", + "time": "6:10p", + "home_team": "Minnesota Twins", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "MIN", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_phi", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260815_mil_lad_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-15T23:15:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102369,10 +102081,269 @@ "canonical_id": "game_mlb_2026_20260815_ari_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-15T23:15:00Z", + "date": "2026-08-15", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "ATL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_ari", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260815_mil_lad_2", + "sport": "MLB", + "season": "2026", + "date": "2026-08-15", + "time": "4:15p", + "home_team": "Los Angeles Dodgers", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "LAD", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_mil", + "venue": "Dodger Stadium", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260815_cin_orl", + "sport": "MLS", + "season": "2026", + "date": "2026-08-15", + "time": "7:30p", + "home_team": "Orlando Orlando City", + "away_team": "Cincinnati FC Cincinnati", + "home_team_abbrev": "ORL", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mls_orl", + "away_team_canonical_id": "team_mls_cin", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260815_ne_tor", + "sport": "MLS", + "season": "2026", + "date": "2026-08-15", + "time": "7:30p", + "home_team": "Toronto Toronto FC", + "away_team": "New England New England Revolution", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_mls_tor", + "away_team_canonical_id": "team_mls_ne", + "venue": "BMO Field", + "stadium_canonical_id": "stadium_mls_bmo_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260815_clb_clt", + "sport": "MLS", + "season": "2026", + "date": "2026-08-15", + "time": "7:30p", + "home_team": "Charlotte Charlotte FC", + "away_team": "Columbus Columbus Crew", + "home_team_abbrev": "CLT", + "away_team_abbrev": "CLB", + "home_team_canonical_id": "team_mls_clt", + "away_team_canonical_id": "team_mls_clb", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260815_dc_mtl", + "sport": "MLS", + "season": "2026", + "date": "2026-08-15", + "time": "7:30p", + "home_team": "Montreal CF Montreal", + "away_team": "Washington D.C. United", + "home_team_abbrev": "MTL", + "away_team_abbrev": "DC", + "home_team_canonical_id": "team_mls_mtl", + "away_team_canonical_id": "team_mls_dc", + "venue": "Stade Saputo", + "stadium_canonical_id": "stadium_mls_stade_saputo", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260815_ny_atl", + "sport": "MLS", + "season": "2026", + "date": "2026-08-15", + "time": "7:30p", + "home_team": "Atlanta Atlanta United", + "away_team": "New York New York Red Bulls", + "home_team_abbrev": "ATL", + "away_team_abbrev": "RB", + "home_team_canonical_id": "team_mls_atl", + "away_team_canonical_id": "team_mls_ny", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260815_la_was", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-15", + "time": "7:30p", + "home_team": "Washington Mystics", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "WAS", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_was", + "away_team_canonical_id": "team_wnba_la", + "venue": "Entertainment & Sports Arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260816_min_lv", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-15", + "time": "5p", + "home_team": "Las Vegas Aces", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "LV", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_min", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260816_mia_nsh", + "sport": "MLS", + "season": "2026", + "date": "2026-08-15", + "time": "7:30p", + "home_team": "Nashville Nashville SC", + "away_team": "Miami Inter Miami", + "home_team_abbrev": "NSH", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mls_nsh", + "away_team_canonical_id": "team_mls_mia", + "venue": "GEODIS Park", + "stadium_canonical_id": "stadium_mls_geodis_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260816_lag_hou", + "sport": "MLS", + "season": "2026", + "date": "2026-08-15", + "time": "7:30p", + "home_team": "Houston Houston Dynamo", + "away_team": "Los Angeles LA Galaxy", + "home_team_abbrev": "HOU", + "away_team_abbrev": "LAG", + "home_team_canonical_id": "team_mls_hou", + "away_team_canonical_id": "team_mls_lag", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_mls_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260816_dal_aus", + "sport": "MLS", + "season": "2026", + "date": "2026-08-15", + "time": "7:30p", + "home_team": "Austin Austin FC", + "away_team": "Dallas FC Dallas", + "home_team_abbrev": "AUS", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_mls_aus", + "away_team_canonical_id": "team_mls_dal", + "venue": "Q2 Stadium", + "stadium_canonical_id": "stadium_mls_q2_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260816_orl_por", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-15", + "time": "5:45p", + "home_team": "Portland Portland Thorns", + "away_team": "Orlando Orlando Pride", + "home_team_abbrev": "POR", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nwsl_por", + "away_team_canonical_id": "team_nwsl_orl", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_nwsl_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260816_min_slc", + "sport": "MLS", + "season": "2026", + "date": "2026-08-15", + "time": "7:30p", + "home_team": "Salt Lake Real Salt Lake", + "away_team": "Minnesota Minnesota United", + "home_team_abbrev": "SLC", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mls_slc", + "away_team_canonical_id": "team_mls_min", + "venue": "America First Field", + "stadium_canonical_id": "stadium_mls_america_first_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260816_skc_col", + "sport": "MLS", + "season": "2026", + "date": "2026-08-15", + "time": "7:30p", + "home_team": "Colorado Colorado Rapids", + "away_team": "Kansas City Sporting Kansas City", + "home_team_abbrev": "COL", + "away_team_abbrev": "SKC", + "home_team_canonical_id": "team_mls_col", + "away_team_canonical_id": "team_mls_skc", + "venue": "Dick's Sporting Goods Park", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -102380,10 +102351,17 @@ "canonical_id": "game_mlb_2026_20260816_kc_laa_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-16T01:38:00Z", + "date": "2026-08-15", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Kansas City Royals", + "home_team_abbrev": "LAA", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_kc", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102391,10 +102369,53 @@ "canonical_id": "game_mlb_2026_20260816_tex_oak_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-16T01:40:00Z", + "date": "2026-08-15", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Texas Rangers", + "home_team_abbrev": "OAK", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_tex", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260816_sd_lafc", + "sport": "MLS", + "season": "2026", + "date": "2026-08-15", + "time": "7:30p", + "home_team": "Los Angeles Los Angeles FC", + "away_team": "San Diego San Diego FC", + "home_team_abbrev": "LAFC", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mls_lafc", + "away_team_canonical_id": "team_mls_sd", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260816_stl_sj", + "sport": "MLS", + "season": "2026", + "date": "2026-08-15", + "time": "7:30p", + "home_team": "San Jose San Jose Earthquakes", + "away_team": "St. Louis St. Louis City SC", + "home_team_abbrev": "SJ", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mls_sj", + "away_team_canonical_id": "team_mls_stl", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_mls_paypal_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -102402,21 +102423,17 @@ "canonical_id": "game_mlb_2026_20260816_bal_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-16T16:15:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-08-16", + "time": "12:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "TB", + "away_team_abbrev": "BAL", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_bal", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260816_bos_pit", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-16T17:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102424,10 +102441,35 @@ "canonical_id": "game_mlb_2026_20260816_ari_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-16T17:35:00Z", + "date": "2026-08-16", + "time": "1:35p", + "home_team": "Atlanta Braves", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "ATL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_ari", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260816_bos_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "1:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "Boston Red Sox", + "home_team_abbrev": "PIT", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_bos", + "venue": "PNC Park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102435,21 +102477,17 @@ "canonical_id": "game_mlb_2026_20260816_nyy_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-16T17:37:00Z", + "date": "2026-08-16", + "time": "1:37p", + "home_team": "Toronto Blue Jays", + "away_team": "New York Yankees", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260816_wsn_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-16T17:40:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_wsn", - "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102457,21 +102495,35 @@ "canonical_id": "game_mlb_2026_20260816_sd_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-16T17:40:00Z", + "date": "2026-08-16", + "time": "1:40p", + "home_team": "Cleveland Guardians", + "away_team": "San Diego Padres", + "home_team_abbrev": "CLE", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_sd", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260816_mia_cin", + "canonical_id": "game_mlb_2026_20260816_wsn_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-16T17:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "date": "2026-08-16", + "time": "1:40p", + "home_team": "New York Mets", + "away_team": "Washington Nationals", + "home_team_abbrev": "NYM", + "away_team_abbrev": "WSN", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_wsn", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102479,10 +102531,35 @@ "canonical_id": "game_mlb_2026_20260816_chw_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-16T17:40:00Z", + "date": "2026-08-16", + "time": "1:40p", + "home_team": "Detroit Tigers", + "away_team": "Chicago White Sox", + "home_team_abbrev": "DET", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_chw", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260816_mia_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-16", + "time": "1:40p", + "home_team": "Cincinnati Reds", + "away_team": "Miami Marlins", + "home_team_abbrev": "CIN", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mia", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102490,10 +102567,17 @@ "canonical_id": "game_mlb_2026_20260816_phi_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-16T18:10:00Z", + "date": "2026-08-16", + "time": "1:10p", + "home_team": "Minnesota Twins", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "MIN", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_phi", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102501,10 +102585,17 @@ "canonical_id": "game_mlb_2026_20260816_stl_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-16T19:10:00Z", + "date": "2026-08-16", + "time": "2:10p", + "home_team": "Chicago Cubs", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "CHC", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_stl", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102512,10 +102603,17 @@ "canonical_id": "game_mlb_2026_20260816_tex_oak_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-16T20:05:00Z", + "date": "2026-08-16", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Texas Rangers", + "home_team_abbrev": "OAK", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_tex", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102523,10 +102621,17 @@ "canonical_id": "game_mlb_2026_20260816_col_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-16T20:05:00Z", + "date": "2026-08-16", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Colorado Rockies", + "home_team_abbrev": "SF", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_col", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102534,10 +102639,17 @@ "canonical_id": "game_mlb_2026_20260816_kc_laa_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-16T20:07:00Z", + "date": "2026-08-16", + "time": "1:07p", + "home_team": "Los Angeles Angels", + "away_team": "Kansas City Royals", + "home_team_abbrev": "LAA", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_kc", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102545,10 +102657,107 @@ "canonical_id": "game_mlb_2026_20260816_mil_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-16T20:10:00Z", + "date": "2026-08-16", + "time": "1:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "LAD", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_mil", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260816_chi_sea", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-16", + "time": "2p", + "home_team": "Seattle Storm", + "away_team": "Chicago Sky", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_sea", + "away_team_canonical_id": "team_wnba_chi", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260816_phi_nyc", + "sport": "MLS", + "season": "2026", + "date": "2026-08-16", + "time": "6:30p", + "home_team": "New York New York City FC", + "away_team": "Philadelphia Philadelphia Union", + "home_team_abbrev": "NYC", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mls_nyc", + "away_team_canonical_id": "team_mls_phi", + "venue": "Yankee Stadium", + "stadium_canonical_id": "stadium_mls_yankee_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260816_por_chi", + "sport": "MLS", + "season": "2026", + "date": "2026-08-16", + "time": "5:30p", + "home_team": "Chicago Chicago Fire", + "away_team": "Portland Portland Timbers", + "home_team_abbrev": "CHI", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_mls_chi", + "away_team_canonical_id": "team_mls_por", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_mls_soldier_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260816_hou_ncc", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-16", + "time": "7p", + "home_team": "North Carolina North Carolina Courage", + "away_team": "Houston Houston Dash", + "home_team_abbrev": "NCC", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nwsl_ncc", + "away_team_canonical_id": "team_nwsl_hou", + "venue": "WakeMed Soccer Park", + "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260816_ind_atl", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-16", + "time": "7p", + "home_team": "Atlanta Dream", + "away_team": "Indiana Fever", + "home_team_abbrev": "ATL", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_wnba_atl", + "away_team_canonical_id": "team_wnba_ind", + "venue": "Gateway Center Arena", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -102556,21 +102765,53 @@ "canonical_id": "game_mlb_2026_20260816_sea_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-16T23:20:00Z", + "date": "2026-08-16", + "time": "6:20p", + "home_team": "Houston Astros", + "away_team": "Seattle Mariners", + "home_team_abbrev": "HOU", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_sea", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260817_stl_cin", - "sport": "MLB", + "canonical_id": "game_mls_2026_20260817_van_sea", + "sport": "MLS", "season": "2026", - "game_datetime_utc": "2026-08-17T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "date": "2026-08-16", + "time": "6p", + "home_team": "Seattle Seattle Sounders", + "away_team": "Vancouver Vancouver Whitecaps", + "home_team_abbrev": "SEA", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_mls_sea", + "away_team_canonical_id": "team_mls_van", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_mls_lumen_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260817_wsh_ang", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-16", + "time": "6p", + "home_team": "Los Angeles Angel City FC", + "away_team": "Washington Washington Spirit", + "home_team_abbrev": "ANG", + "away_team_abbrev": "WSH", + "home_team_canonical_id": "team_nwsl_ang", + "away_team_canonical_id": "team_nwsl_wsh", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_nwsl_bmo_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -102578,10 +102819,17 @@ "canonical_id": "game_mlb_2026_20260817_mia_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-17T22:40:00Z", + "date": "2026-08-17", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Miami Marlins", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_mia", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102589,10 +102837,35 @@ "canonical_id": "game_mlb_2026_20260817_bal_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-17T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-08-17", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "TB", + "away_team_abbrev": "BAL", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_bal", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260817_stl_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-08-17", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "CIN", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_stl", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102600,10 +102873,17 @@ "canonical_id": "game_mlb_2026_20260817_det_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-17T23:05:00Z", + "date": "2026-08-17", + "time": "7:05p", + "home_team": "Pittsburgh Pirates", + "away_team": "Detroit Tigers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_det", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102611,10 +102891,17 @@ "canonical_id": "game_mlb_2026_20260817_sd_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-17T23:10:00Z", + "date": "2026-08-17", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "San Diego Padres", + "home_team_abbrev": "NYM", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_sd", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102622,10 +102909,17 @@ "canonical_id": "game_mlb_2026_20260817_ari_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-17T23:10:00Z", + "date": "2026-08-17", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "BOS", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_ari", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102633,10 +102927,17 @@ "canonical_id": "game_mlb_2026_20260817_oak_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-17T23:40:00Z", + "date": "2026-08-17", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Oakland Athletics", + "home_team_abbrev": "KC", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_oak", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102644,10 +102945,17 @@ "canonical_id": "game_mlb_2026_20260817_atl_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-17T23:40:00Z", + "date": "2026-08-17", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Atlanta Braves", + "home_team_abbrev": "MIN", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_atl", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102655,10 +102963,17 @@ "canonical_id": "game_mlb_2026_20260818_chw_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-18T00:05:00Z", + "date": "2026-08-17", + "time": "7:05p", + "home_team": "Chicago Cubs", + "away_team": "Chicago White Sox", + "home_team_abbrev": "CHC", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_chw", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102666,10 +102981,35 @@ "canonical_id": "game_mlb_2026_20260818_lad_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-18T00:40:00Z", + "date": "2026-08-17", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "COL", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_lad", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260818_dal_gsv", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-17", + "time": "7p", + "home_team": "Golden State Valkyries", + "away_team": "Dallas Wings", + "home_team_abbrev": "GSV", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_wnba_gsv", + "away_team_canonical_id": "team_wnba_dal", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_wnba_chase_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -102677,21 +103017,17 @@ "canonical_id": "game_mlb_2026_20260818_nyy_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-18T22:35:00Z", + "date": "2026-08-18", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "New York Yankees", + "home_team_abbrev": "BAL", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260818_tor_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-18T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102699,32 +103035,17 @@ "canonical_id": "game_mlb_2026_20260818_stl_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-18T22:40:00Z", + "date": "2026-08-18", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "CIN", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_stl", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260818_sf_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-18T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260818_mia_phi", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-18T22:40:00Z", - "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102732,10 +103053,89 @@ "canonical_id": "game_mlb_2026_20260818_det_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-18T22:40:00Z", + "date": "2026-08-18", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Detroit Tigers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_det", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260818_mia_phi", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Miami Marlins", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_phi", + "away_team_canonical_id": "team_mlb_mia", + "venue": "Citizens Bank Park", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260818_tor_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "TB", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tor", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260818_sf_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "6:40p", + "home_team": "Cleveland Guardians", + "away_team": "San Francisco Giants", + "home_team_abbrev": "CLE", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260818_la_con", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-18", + "time": "7p", + "home_team": "Connecticut Sun", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "CON", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_con", + "away_team_canonical_id": "team_wnba_la", + "venue": "Mohegan Sun Arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -102743,10 +103143,17 @@ "canonical_id": "game_mlb_2026_20260818_sd_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-18T23:10:00Z", + "date": "2026-08-18", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "San Diego Padres", + "home_team_abbrev": "NYM", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_sd", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102754,10 +103161,17 @@ "canonical_id": "game_mlb_2026_20260818_ari_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-18T23:10:00Z", + "date": "2026-08-18", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "BOS", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_ari", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102765,21 +103179,17 @@ "canonical_id": "game_mlb_2026_20260818_sea_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-18T23:40:00Z", + "date": "2026-08-18", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Seattle Mariners", + "home_team_abbrev": "MIL", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_sea", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260818_oak_kc", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-18T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102787,10 +103197,35 @@ "canonical_id": "game_mlb_2026_20260818_atl_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-18T23:40:00Z", + "date": "2026-08-18", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Atlanta Braves", + "home_team_abbrev": "MIN", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_atl", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260818_oak_kc", + "sport": "MLB", + "season": "2026", + "date": "2026-08-18", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Oakland Athletics", + "home_team_abbrev": "KC", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_kc", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Kauffman Stadium", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102798,10 +103233,17 @@ "canonical_id": "game_mlb_2026_20260819_wsn_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-19T00:05:00Z", + "date": "2026-08-18", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Washington Nationals", + "home_team_abbrev": "TEX", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102809,10 +103251,17 @@ "canonical_id": "game_mlb_2026_20260819_chw_chc_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-19T00:05:00Z", + "date": "2026-08-18", + "time": "7:05p", + "home_team": "Chicago Cubs", + "away_team": "Chicago White Sox", + "home_team_abbrev": "CHC", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_chw", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102820,10 +103269,17 @@ "canonical_id": "game_mlb_2026_20260819_laa_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-19T00:10:00Z", + "date": "2026-08-18", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "HOU", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_laa", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102831,10 +103287,53 @@ "canonical_id": "game_mlb_2026_20260819_lad_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-19T00:40:00Z", + "date": "2026-08-18", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "COL", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_lad", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260819_ny_chi", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-18", + "time": "8p", + "home_team": "Chicago Sky", + "away_team": "New York Liberty", + "home_team_abbrev": "CHI", + "away_team_abbrev": "NY", + "home_team_canonical_id": "team_wnba_chi", + "away_team_canonical_id": "team_wnba_ny", + "venue": "Wintrust Arena", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260819_atl_lv", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-18", + "time": "7p", + "home_team": "Las Vegas Aces", + "away_team": "Atlanta Dream", + "home_team_abbrev": "LV", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_atl", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -102842,10 +103341,17 @@ "canonical_id": "game_mlb_2026_20260819_det_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-19T16:35:00Z", + "date": "2026-08-19", + "time": "12:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "Detroit Tigers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_det", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102853,10 +103359,17 @@ "canonical_id": "game_mlb_2026_20260819_sd_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-19T17:10:00Z", + "date": "2026-08-19", + "time": "1:10p", + "home_team": "New York Mets", + "away_team": "San Diego Padres", + "home_team_abbrev": "NYM", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_sd", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102864,10 +103377,17 @@ "canonical_id": "game_mlb_2026_20260819_atl_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-19T17:40:00Z", + "date": "2026-08-19", + "time": "12:40p", + "home_team": "Minnesota Twins", + "away_team": "Atlanta Braves", + "home_team_abbrev": "MIN", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_atl", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102875,10 +103395,17 @@ "canonical_id": "game_mlb_2026_20260819_chw_chc_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-19T18:20:00Z", + "date": "2026-08-19", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Chicago White Sox", + "home_team_abbrev": "CHC", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_chw", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102886,10 +103413,17 @@ "canonical_id": "game_mlb_2026_20260819_ari_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-19T20:10:00Z", + "date": "2026-08-19", + "time": "4:10p", + "home_team": "Boston Red Sox", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "BOS", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_ari", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102897,10 +103431,35 @@ "canonical_id": "game_mlb_2026_20260819_mia_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-19T22:05:00Z", + "date": "2026-08-19", + "time": "6:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Miami Marlins", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_mia", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260819_sea_rgn", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-19", + "time": "6:30p", + "home_team": "Louisville Racing Louisville", + "away_team": "Seattle Seattle Reign", + "home_team_abbrev": "RGN", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nwsl_rgn", + "away_team_canonical_id": "team_nwsl_sea", + "venue": "Lynn Family Stadium", + "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -102908,10 +103467,17 @@ "canonical_id": "game_mlb_2026_20260819_nyy_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-19T22:35:00Z", + "date": "2026-08-19", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "New York Yankees", + "home_team_abbrev": "BAL", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102919,21 +103485,17 @@ "canonical_id": "game_mlb_2026_20260819_tor_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-19T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-08-19", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "TB", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_tor", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260819_stl_cin", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-19T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102941,21 +103503,161 @@ "canonical_id": "game_mlb_2026_20260819_sf_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-19T22:40:00Z", + "date": "2026-08-19", + "time": "6:40p", + "home_team": "Cleveland Guardians", + "away_team": "San Francisco Giants", + "home_team_abbrev": "CLE", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_sf", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260819_sea_mil", + "canonical_id": "game_mlb_2026_20260819_stl_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-19T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "date": "2026-08-19", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "CIN", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_stl", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260819_ne_dc", + "sport": "MLS", + "season": "2026", + "date": "2026-08-19", + "time": "7:30p", + "home_team": "Washington D.C. United", + "away_team": "New England New England Revolution", + "home_team_abbrev": "DC", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_mls_dc", + "away_team_canonical_id": "team_mls_ne", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_mls_audi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260819_mtl_clb", + "sport": "MLS", + "season": "2026", + "date": "2026-08-19", + "time": "7:30p", + "home_team": "Columbus Columbus Crew", + "away_team": "Montreal CF Montreal", + "home_team_abbrev": "CLB", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_mls_clb", + "away_team_canonical_id": "team_mls_mtl", + "venue": "Lower.com Field", + "stadium_canonical_id": "stadium_mls_lowercom_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260819_clt_tor", + "sport": "MLS", + "season": "2026", + "date": "2026-08-19", + "time": "7:30p", + "home_team": "Toronto Toronto FC", + "away_team": "Charlotte Charlotte FC", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CLT", + "home_team_canonical_id": "team_mls_tor", + "away_team_canonical_id": "team_mls_clt", + "venue": "BMO Field", + "stadium_canonical_id": "stadium_mls_bmo_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260819_mia_phi", + "sport": "MLS", + "season": "2026", + "date": "2026-08-19", + "time": "7:30p", + "home_team": "Philadelphia Philadelphia Union", + "away_team": "Miami Inter Miami", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mls_phi", + "away_team_canonical_id": "team_mls_mia", + "venue": "Subaru Park", + "stadium_canonical_id": "stadium_mls_subaru_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260819_chi_orl", + "sport": "MLS", + "season": "2026", + "date": "2026-08-19", + "time": "7:30p", + "home_team": "Orlando Orlando City", + "away_team": "Chicago Chicago Fire", + "home_team_abbrev": "ORL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_mls_orl", + "away_team_canonical_id": "team_mls_chi", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260819_nsh_ny", + "sport": "MLS", + "season": "2026", + "date": "2026-08-19", + "time": "7:30p", + "home_team": "New York New York Red Bulls", + "away_team": "Nashville Nashville SC", + "home_team_abbrev": "RB", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_mls_ny", + "away_team_canonical_id": "team_mls_nsh", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_mls_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260819_nyc_cin", + "sport": "MLS", + "season": "2026", + "date": "2026-08-19", + "time": "7:30p", + "home_team": "Cincinnati FC Cincinnati", + "away_team": "New York New York City FC", + "home_team_abbrev": "CIN", + "away_team_abbrev": "NYC", + "home_team_canonical_id": "team_mls_cin", + "away_team_canonical_id": "team_mls_nyc", + "venue": "TQL Stadium", + "stadium_canonical_id": "stadium_mls_tql_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -102963,10 +103665,71 @@ "canonical_id": "game_mlb_2026_20260819_oak_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-19T23:40:00Z", + "date": "2026-08-19", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Oakland Athletics", + "home_team_abbrev": "KC", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_oak", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260819_sea_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-19", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Seattle Mariners", + "home_team_abbrev": "MIL", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sea", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260820_stl_skc", + "sport": "MLS", + "season": "2026", + "date": "2026-08-19", + "time": "7p", + "home_team": "Kansas City Sporting Kansas City", + "away_team": "St. Louis St. Louis City SC", + "home_team_abbrev": "SKC", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mls_skc", + "away_team_canonical_id": "team_mls_stl", + "venue": "Children's Mercy Park", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260820_chi_hou", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-19", + "time": "7p", + "home_team": "Houston Houston Dash", + "away_team": "Chicago Chicago Red Stars", + "home_team_abbrev": "HOU", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nwsl_hou", + "away_team_canonical_id": "team_nwsl_chi", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -102974,10 +103737,17 @@ "canonical_id": "game_mlb_2026_20260820_wsn_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-20T00:05:00Z", + "date": "2026-08-19", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Washington Nationals", + "home_team_abbrev": "TEX", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -102985,10 +103755,35 @@ "canonical_id": "game_mlb_2026_20260820_laa_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-20T00:10:00Z", + "date": "2026-08-19", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "HOU", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_laa", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260820_atl_min", + "sport": "MLS", + "season": "2026", + "date": "2026-08-19", + "time": "7:30p", + "home_team": "Minnesota Minnesota United", + "away_team": "Atlanta Atlanta United", + "home_team_abbrev": "MIN", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mls_min", + "away_team_canonical_id": "team_mls_atl", + "venue": "Allianz Field", + "stadium_canonical_id": "stadium_mls_allianz_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -102996,10 +103791,143 @@ "canonical_id": "game_mlb_2026_20260820_lad_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-20T00:40:00Z", + "date": "2026-08-19", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "COL", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_lad", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260820_lafc_col", + "sport": "MLS", + "season": "2026", + "date": "2026-08-19", + "time": "7:30p", + "home_team": "Colorado Colorado Rapids", + "away_team": "Los Angeles Los Angeles FC", + "home_team_abbrev": "COL", + "away_team_abbrev": "LAFC", + "home_team_canonical_id": "team_mls_col", + "away_team_canonical_id": "team_mls_lafc", + "venue": "Dick's Sporting Goods Park", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260820_aus_sea", + "sport": "MLS", + "season": "2026", + "date": "2026-08-19", + "time": "6:30p", + "home_team": "Seattle Seattle Sounders", + "away_team": "Austin Austin FC", + "home_team_abbrev": "SEA", + "away_team_abbrev": "AUS", + "home_team_canonical_id": "team_mls_sea", + "away_team_canonical_id": "team_mls_aus", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_mls_lumen_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260820_dal_slc", + "sport": "MLS", + "season": "2026", + "date": "2026-08-19", + "time": "7:30p", + "home_team": "Salt Lake Real Salt Lake", + "away_team": "Dallas FC Dallas", + "home_team_abbrev": "SLC", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_mls_slc", + "away_team_canonical_id": "team_mls_dal", + "venue": "America First Field", + "stadium_canonical_id": "stadium_mls_america_first_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260820_min_gsv", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-19", + "time": "7p", + "home_team": "Golden State Valkyries", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "GSV", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_gsv", + "away_team_canonical_id": "team_wnba_min", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_wnba_chase_center", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260820_hou_van", + "sport": "MLS", + "season": "2026", + "date": "2026-08-19", + "time": "7:30p", + "home_team": "Vancouver Vancouver Whitecaps", + "away_team": "Houston Houston Dynamo", + "home_team_abbrev": "VAN", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mls_van", + "away_team_canonical_id": "team_mls_hou", + "venue": "BC Place", + "stadium_canonical_id": "stadium_mls_bc_place", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260820_sd_por", + "sport": "MLS", + "season": "2026", + "date": "2026-08-19", + "time": "7:30p", + "home_team": "Portland Portland Timbers", + "away_team": "San Diego San Diego FC", + "home_team_abbrev": "POR", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mls_por", + "away_team_canonical_id": "team_mls_sd", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_mls_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260820_sj_lag", + "sport": "MLS", + "season": "2026", + "date": "2026-08-19", + "time": "7:30p", + "home_team": "Los Angeles LA Galaxy", + "away_team": "San Jose San Jose Earthquakes", + "home_team_abbrev": "LAG", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_mls_lag", + "away_team_canonical_id": "team_mls_sj", + "venue": "Dignity Health Sports Park", + "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -103007,21 +103935,17 @@ "canonical_id": "game_mlb_2026_20260820_stl_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-20T16:40:00Z", + "date": "2026-08-20", + "time": "12:40p", + "home_team": "Cincinnati Reds", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "CIN", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_stl", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260820_tor_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-20T17:10:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103029,21 +103953,35 @@ "canonical_id": "game_mlb_2026_20260820_sf_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-20T17:10:00Z", + "date": "2026-08-20", + "time": "1:10p", + "home_team": "Cleveland Guardians", + "away_team": "San Francisco Giants", + "home_team_abbrev": "CLE", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_sf", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260820_sea_mil", + "canonical_id": "game_mlb_2026_20260820_tor_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-20T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "date": "2026-08-20", + "time": "1:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "TB", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_tor", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103051,10 +103989,35 @@ "canonical_id": "game_mlb_2026_20260820_oak_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-20T18:10:00Z", + "date": "2026-08-20", + "time": "1:10p", + "home_team": "Kansas City Royals", + "away_team": "Oakland Athletics", + "home_team_abbrev": "KC", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_oak", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260820_sea_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-08-20", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Seattle Mariners", + "home_team_abbrev": "MIL", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_sea", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103062,10 +104025,35 @@ "canonical_id": "game_mlb_2026_20260820_nyy_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-20T22:35:00Z", + "date": "2026-08-20", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "New York Yankees", + "home_team_abbrev": "BAL", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260821_ind_dal", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-20", + "time": "7p", + "home_team": "Dallas Wings", + "away_team": "Indiana Fever", + "home_team_abbrev": "DAL", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_ind", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -103073,10 +104061,17 @@ "canonical_id": "game_mlb_2026_20260821_wsn_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-21T00:05:00Z", + "date": "2026-08-20", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Washington Nationals", + "home_team_abbrev": "TEX", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103084,10 +104079,53 @@ "canonical_id": "game_mlb_2026_20260821_laa_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-21T00:10:00Z", + "date": "2026-08-20", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "HOU", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_laa", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260821_con_lv", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-20", + "time": "7p", + "home_team": "Las Vegas Aces", + "away_team": "Connecticut Sun", + "home_team_abbrev": "LV", + "away_team_abbrev": "CON", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_con", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260821_atl_la", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-20", + "time": "7p", + "home_team": "Los Angeles Sparks", + "away_team": "Atlanta Dream", + "home_team_abbrev": "LA", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_wnba_la", + "away_team_canonical_id": "team_wnba_atl", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -103095,10 +104133,17 @@ "canonical_id": "game_mlb_2026_20260821_atl_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-21T20:10:00Z", + "date": "2026-08-21", + "time": "3:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Atlanta Braves", + "home_team_abbrev": "MIL", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_atl", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103106,10 +104151,17 @@ "canonical_id": "game_mlb_2026_20260821_stl_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-21T22:40:00Z", + "date": "2026-08-21", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "PHI", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_stl", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103117,10 +104169,17 @@ "canonical_id": "game_mlb_2026_20260821_tor_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-21T23:05:00Z", + "date": "2026-08-21", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "NYY", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_tor", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103128,10 +104187,17 @@ "canonical_id": "game_mlb_2026_20260821_tbr_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-21T23:05:00Z", + "date": "2026-08-21", + "time": "7:05p", + "home_team": "Baltimore Orioles", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "BAL", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103139,10 +104205,17 @@ "canonical_id": "game_mlb_2026_20260821_wsn_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-21T23:10:00Z", + "date": "2026-08-21", + "time": "7:10p", + "home_team": "Miami Marlins", + "away_team": "Washington Nationals", + "home_team_abbrev": "MIA", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_wsn", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103150,10 +104223,53 @@ "canonical_id": "game_mlb_2026_20260821_sf_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-21T23:10:00Z", + "date": "2026-08-21", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "San Francisco Giants", + "home_team_abbrev": "BOS", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_sf", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260821_gsv_chi", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-21", + "time": "6:30p", + "home_team": "Chicago Sky", + "away_team": "Golden State Valkyries", + "home_team_abbrev": "CHI", + "away_team_abbrev": "GSV", + "home_team_canonical_id": "team_wnba_chi", + "away_team_canonical_id": "team_wnba_gsv", + "venue": "Wintrust Arena", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260821_min_was", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-21", + "time": "7:30p", + "home_team": "Washington Mystics", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "WAS", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_was", + "away_team_canonical_id": "team_wnba_min", + "venue": "Entertainment & Sports Arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -103161,10 +104277,17 @@ "canonical_id": "game_mlb_2026_20260821_nym_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-21T23:40:00Z", + "date": "2026-08-21", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "New York Mets", + "home_team_abbrev": "CHW", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_nym", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103172,21 +104295,17 @@ "canonical_id": "game_mlb_2026_20260822_laa_tex_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-22T00:05:00Z", + "date": "2026-08-21", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "TEX", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_laa", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260822_oak_hou_1", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-22T00:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103194,10 +104313,35 @@ "canonical_id": "game_mlb_2026_20260822_det_kc_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-22T00:10:00Z", + "date": "2026-08-21", + "time": "7:10p", + "home_team": "Kansas City Royals", + "away_team": "Detroit Tigers", + "home_team_abbrev": "KC", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_det", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260822_oak_hou_1", + "sport": "MLB", + "season": "2026", + "date": "2026-08-21", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Oakland Athletics", + "home_team_abbrev": "HOU", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Minute Maid Park", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103205,10 +104349,17 @@ "canonical_id": "game_mlb_2026_20260822_cle_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-22T00:40:00Z", + "date": "2026-08-21", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "COL", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_cle", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103216,10 +104367,17 @@ "canonical_id": "game_mlb_2026_20260822_min_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-22T01:40:00Z", + "date": "2026-08-21", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Minnesota Twins", + "home_team_abbrev": "SD", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_min", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103227,10 +104385,35 @@ "canonical_id": "game_mlb_2026_20260822_cin_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-22T01:40:00Z", + "date": "2026-08-21", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_cin", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260822_uta_sdw", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-21", + "time": "7p", + "home_team": "San Diego San Diego Wave", + "away_team": "Utah Utah Royals", + "home_team_abbrev": "SDW", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nwsl_sdw", + "away_team_canonical_id": "team_nwsl_uta", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -103238,10 +104421,17 @@ "canonical_id": "game_mlb_2026_20260822_pit_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-22T02:10:00Z", + "date": "2026-08-21", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "LAD", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_pit", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103249,10 +104439,17 @@ "canonical_id": "game_mlb_2026_20260822_chc_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-22T02:10:00Z", + "date": "2026-08-21", + "time": "7:10p", + "home_team": "Seattle Mariners", + "away_team": "Chicago Cubs", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103260,10 +104457,17 @@ "canonical_id": "game_mlb_2026_20260822_tor_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-22T17:35:00Z", + "date": "2026-08-22", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "NYY", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_tor", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103271,10 +104475,17 @@ "canonical_id": "game_mlb_2026_20260822_atl_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-22T18:10:00Z", + "date": "2026-08-22", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Atlanta Braves", + "home_team_abbrev": "MIL", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_atl", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103282,10 +104493,17 @@ "canonical_id": "game_mlb_2026_20260822_wsn_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-22T20:10:00Z", + "date": "2026-08-22", + "time": "4:10p", + "home_team": "Miami Marlins", + "away_team": "Washington Nationals", + "home_team_abbrev": "MIA", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_wsn", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103293,10 +104511,53 @@ "canonical_id": "game_mlb_2026_20260822_stl_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-22T22:05:00Z", + "date": "2026-08-22", + "time": "6:05p", + "home_team": "Philadelphia Phillies", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "PHI", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_stl", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260822_sea_kcc", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-22", + "time": "5:30p", + "home_team": "Kansas City Kansas City Current", + "away_team": "Seattle Seattle Reign", + "home_team_abbrev": "KCC", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nwsl_kcc", + "away_team_canonical_id": "team_nwsl_sea", + "venue": "CPKC Stadium", + "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260822_ind_ny", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-22", + "time": "7p", + "home_team": "New York Liberty", + "away_team": "Indiana Fever", + "home_team_abbrev": "NY", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_ind", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -103304,10 +104565,17 @@ "canonical_id": "game_mlb_2026_20260822_tbr_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-22T23:05:00Z", + "date": "2026-08-22", + "time": "7:05p", + "home_team": "Baltimore Orioles", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "BAL", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103315,10 +104583,17 @@ "canonical_id": "game_mlb_2026_20260822_laa_tex_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-22T23:05:00Z", + "date": "2026-08-22", + "time": "6:05p", + "home_team": "Texas Rangers", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "TEX", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_laa", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103326,10 +104601,17 @@ "canonical_id": "game_mlb_2026_20260822_oak_hou_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-22T23:10:00Z", + "date": "2026-08-22", + "time": "6:10p", + "home_team": "Houston Astros", + "away_team": "Oakland Athletics", + "home_team_abbrev": "HOU", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_oak", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103337,10 +104619,17 @@ "canonical_id": "game_mlb_2026_20260822_nym_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-22T23:10:00Z", + "date": "2026-08-22", + "time": "6:10p", + "home_team": "Chicago White Sox", + "away_team": "New York Mets", + "home_team_abbrev": "CHW", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_nym", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103348,10 +104637,17 @@ "canonical_id": "game_mlb_2026_20260822_sf_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-22T23:15:00Z", + "date": "2026-08-22", + "time": "7:15p", + "home_team": "Boston Red Sox", + "away_team": "San Francisco Giants", + "home_team_abbrev": "BOS", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_sf", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103359,10 +104655,143 @@ "canonical_id": "game_mlb_2026_20260822_det_kc_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-22T23:15:00Z", + "date": "2026-08-22", + "time": "6:15p", + "home_team": "Kansas City Royals", + "away_team": "Detroit Tigers", + "home_team_abbrev": "KC", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_det", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260822_slc_orl", + "sport": "MLS", + "season": "2026", + "date": "2026-08-22", + "time": "7:30p", + "home_team": "Orlando Orlando City", + "away_team": "Salt Lake Real Salt Lake", + "home_team_abbrev": "ORL", + "away_team_abbrev": "SLC", + "home_team_canonical_id": "team_mls_orl", + "away_team_canonical_id": "team_mls_slc", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260822_tor_mia", + "sport": "MLS", + "season": "2026", + "date": "2026-08-22", + "time": "7:30p", + "home_team": "Miami Inter Miami", + "away_team": "Toronto Toronto FC", + "home_team_abbrev": "MIA", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mls_mia", + "away_team_canonical_id": "team_mls_tor", + "venue": "Miami Freedom Park", + "stadium_canonical_id": "stadium_mls_miami_freedom_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260822_chi_ny", + "sport": "MLS", + "season": "2026", + "date": "2026-08-22", + "time": "7:30p", + "home_team": "New York New York Red Bulls", + "away_team": "Chicago Chicago Fire", + "home_team_abbrev": "RB", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_mls_ny", + "away_team_canonical_id": "team_mls_chi", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_mls_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260822_lag_mtl", + "sport": "MLS", + "season": "2026", + "date": "2026-08-22", + "time": "7:30p", + "home_team": "Montreal CF Montreal", + "away_team": "Los Angeles LA Galaxy", + "home_team_abbrev": "MTL", + "away_team_abbrev": "LAG", + "home_team_canonical_id": "team_mls_mtl", + "away_team_canonical_id": "team_mls_lag", + "venue": "Stade Saputo", + "stadium_canonical_id": "stadium_mls_stade_saputo", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260822_dc_clt", + "sport": "MLS", + "season": "2026", + "date": "2026-08-22", + "time": "7:30p", + "home_team": "Charlotte Charlotte FC", + "away_team": "Washington D.C. United", + "home_team_abbrev": "CLT", + "away_team_abbrev": "DC", + "home_team_canonical_id": "team_mls_clt", + "away_team_canonical_id": "team_mls_dc", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260822_sea_cin", + "sport": "MLS", + "season": "2026", + "date": "2026-08-22", + "time": "7:30p", + "home_team": "Cincinnati FC Cincinnati", + "away_team": "Seattle Seattle Sounders", + "home_team_abbrev": "CIN", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mls_cin", + "away_team_canonical_id": "team_mls_sea", + "venue": "TQL Stadium", + "stadium_canonical_id": "stadium_mls_tql_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260822_bos_ncc", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-22", + "time": "7:30p", + "home_team": "North Carolina North Carolina Courage", + "away_team": "Boston Boston Legacy FC", + "home_team_abbrev": "NCC", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nwsl_ncc", + "away_team_canonical_id": "team_nwsl_bos", + "venue": "WakeMed Soccer Park", + "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -103370,10 +104799,17 @@ "canonical_id": "game_mlb_2026_20260823_cle_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-23T00:10:00Z", + "date": "2026-08-22", + "time": "6:10p", + "home_team": "Colorado Rockies", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "COL", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_cle", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103381,10 +104817,71 @@ "canonical_id": "game_mlb_2026_20260823_cin_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-23T00:10:00Z", + "date": "2026-08-22", + "time": "5:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_cin", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260823_phi_aus", + "sport": "MLS", + "season": "2026", + "date": "2026-08-22", + "time": "7:30p", + "home_team": "Austin Austin FC", + "away_team": "Philadelphia Philadelphia Union", + "home_team_abbrev": "AUS", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mls_aus", + "away_team_canonical_id": "team_mls_phi", + "venue": "Q2 Stadium", + "stadium_canonical_id": "stadium_mls_q2_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260823_clb_nsh", + "sport": "MLS", + "season": "2026", + "date": "2026-08-22", + "time": "7:30p", + "home_team": "Nashville Nashville SC", + "away_team": "Columbus Columbus Crew", + "home_team_abbrev": "NSH", + "away_team_abbrev": "CLB", + "home_team_canonical_id": "team_mls_nsh", + "away_team_canonical_id": "team_mls_clb", + "venue": "GEODIS Park", + "stadium_canonical_id": "stadium_mls_geodis_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260823_hou_stl", + "sport": "MLS", + "season": "2026", + "date": "2026-08-22", + "time": "7:30p", + "home_team": "St. Louis St. Louis City SC", + "away_team": "Houston Houston Dynamo", + "home_team_abbrev": "STL", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mls_stl", + "away_team_canonical_id": "team_mls_hou", + "venue": "CITYPARK", + "stadium_canonical_id": "stadium_mls_citypark", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -103392,10 +104889,53 @@ "canonical_id": "game_mlb_2026_20260823_min_sd_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-23T00:40:00Z", + "date": "2026-08-22", + "time": "5:40p", + "home_team": "San Diego Padres", + "away_team": "Minnesota Twins", + "home_team_abbrev": "SD", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_min", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260823_den_por", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-22", + "time": "5:45p", + "home_team": "Portland Portland Thorns", + "away_team": "Denver Denver Summit FC", + "home_team_abbrev": "POR", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nwsl_por", + "away_team_canonical_id": "team_nwsl_den", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_nwsl_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260823_con_la", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-22", + "time": "6p", + "home_team": "Los Angeles Sparks", + "away_team": "Connecticut Sun", + "home_team_abbrev": "LA", + "away_team_abbrev": "CON", + "home_team_canonical_id": "team_wnba_la", + "away_team_canonical_id": "team_wnba_con", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -103403,10 +104943,35 @@ "canonical_id": "game_mlb_2026_20260823_pit_lad_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-23T01:10:00Z", + "date": "2026-08-22", + "time": "6:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "LAD", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_pit", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260823_dal_van", + "sport": "MLS", + "season": "2026", + "date": "2026-08-22", + "time": "6:30p", + "home_team": "Vancouver Vancouver Whitecaps", + "away_team": "Dallas FC Dallas", + "home_team_abbrev": "VAN", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_mls_van", + "away_team_canonical_id": "team_mls_dal", + "venue": "BC Place", + "stadium_canonical_id": "stadium_mls_bc_place", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -103414,32 +104979,89 @@ "canonical_id": "game_mlb_2026_20260823_chc_sea_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-23T01:40:00Z", + "date": "2026-08-22", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Chicago Cubs", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260823_tor_nyy", - "sport": "MLB", + "canonical_id": "game_wnba_2026_20260823_atl_phx", + "sport": "WNBA", "season": "2026", - "game_datetime_utc": "2026-08-23T17:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "date": "2026-08-22", + "time": "10p", + "home_team": "Phoenix Mercury", + "away_team": "Atlanta Dream", + "home_team_abbrev": "PHX", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_wnba_phx", + "away_team_canonical_id": "team_wnba_atl", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260823_tbr_bal", - "sport": "MLB", + "canonical_id": "game_mls_2026_20260823_min_sj", + "sport": "MLS", "season": "2026", - "game_datetime_utc": "2026-08-23T17:35:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "date": "2026-08-22", + "time": "7:30p", + "home_team": "San Jose San Jose Earthquakes", + "away_team": "Minnesota Minnesota United", + "home_team_abbrev": "SJ", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mls_sj", + "away_team_canonical_id": "team_mls_min", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_mls_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260823_por_lafc", + "sport": "MLS", + "season": "2026", + "date": "2026-08-22", + "time": "7:30p", + "home_team": "Los Angeles Los Angeles FC", + "away_team": "Portland Portland Timbers", + "home_team_abbrev": "LAFC", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_mls_lafc", + "away_team_canonical_id": "team_mls_por", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260823_col_sd", + "sport": "MLS", + "season": "2026", + "date": "2026-08-22", + "time": "7:30p", + "home_team": "San Diego San Diego FC", + "away_team": "Colorado Colorado Rapids", + "home_team_abbrev": "SD", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mls_sd", + "away_team_canonical_id": "team_mls_col", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -103447,10 +105069,53 @@ "canonical_id": "game_mlb_2026_20260823_stl_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-23T17:35:00Z", + "date": "2026-08-23", + "time": "1:35p", + "home_team": "Philadelphia Phillies", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "PHI", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_stl", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260823_tor_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "NYY", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_tor", + "venue": "Yankee Stadium", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260823_tbr_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "1:35p", + "home_team": "Baltimore Orioles", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "BAL", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Oriole Park at Camden Yards", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103458,21 +105123,35 @@ "canonical_id": "game_mlb_2026_20260823_wsn_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-23T17:40:00Z", + "date": "2026-08-23", + "time": "1:40p", + "home_team": "Miami Marlins", + "away_team": "Washington Nationals", + "home_team_abbrev": "MIA", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_wsn", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260823_oak_hou", - "sport": "MLB", + "canonical_id": "game_nwsl_2026_20260823_rgn_chi", + "sport": "NWSL", "season": "2026", - "game_datetime_utc": "2026-08-23T18:10:00Z", - "home_team_canonical_id": "team_mlb_hou", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "date": "2026-08-23", + "time": "1p", + "home_team": "Chicago Chicago Red Stars", + "away_team": "Louisville Racing Louisville", + "home_team_abbrev": "CHI", + "away_team_abbrev": "RGN", + "home_team_canonical_id": "team_nwsl_chi", + "away_team_canonical_id": "team_nwsl_rgn", + "venue": "Northwestern Medicine Field at Martin Stadium", + "stadium_canonical_id": "stadium_nwsl_northwestern_medicine_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -103480,10 +105159,17 @@ "canonical_id": "game_mlb_2026_20260823_nym_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-23T18:10:00Z", + "date": "2026-08-23", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "New York Mets", + "home_team_abbrev": "CHW", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_nym", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103491,10 +105177,35 @@ "canonical_id": "game_mlb_2026_20260823_det_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-23T18:10:00Z", + "date": "2026-08-23", + "time": "1:10p", + "home_team": "Kansas City Royals", + "away_team": "Detroit Tigers", + "home_team_abbrev": "KC", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_det", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260823_oak_hou", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "1:10p", + "home_team": "Houston Astros", + "away_team": "Oakland Athletics", + "home_team_abbrev": "HOU", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_hou", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Minute Maid Park", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103502,10 +105213,17 @@ "canonical_id": "game_mlb_2026_20260823_laa_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-23T18:35:00Z", + "date": "2026-08-23", + "time": "1:35p", + "home_team": "Texas Rangers", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "TEX", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_laa", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103513,10 +105231,17 @@ "canonical_id": "game_mlb_2026_20260823_sf_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-23T19:10:00Z", + "date": "2026-08-23", + "time": "3:10p", + "home_team": "Boston Red Sox", + "away_team": "San Francisco Giants", + "home_team_abbrev": "BOS", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_sf", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103524,10 +105249,53 @@ "canonical_id": "game_mlb_2026_20260823_cle_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-23T19:10:00Z", + "date": "2026-08-23", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "COL", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_cle", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260823_orl_wsh", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-23", + "time": "4p", + "home_team": "Washington Washington Spirit", + "away_team": "Orlando Orlando Pride", + "home_team_abbrev": "WSH", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nwsl_wsh", + "away_team_canonical_id": "team_nwsl_orl", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_nwsl_audi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260823_sea_dal", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-23", + "time": "3p", + "home_team": "Dallas Wings", + "away_team": "Seattle Storm", + "home_team_abbrev": "DAL", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_sea", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -103535,10 +105303,17 @@ "canonical_id": "game_mlb_2026_20260823_pit_lad_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-23T20:10:00Z", + "date": "2026-08-23", + "time": "1:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "LAD", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_pit", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103546,21 +105321,17 @@ "canonical_id": "game_mlb_2026_20260823_min_sd_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-23T20:10:00Z", + "date": "2026-08-23", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Minnesota Twins", + "home_team_abbrev": "SD", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_min", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260823_chc_sea_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-23T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103568,10 +105339,107 @@ "canonical_id": "game_mlb_2026_20260823_cin_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-23T20:15:00Z", + "date": "2026-08-23", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_cin", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260823_chc_sea_2", + "sport": "MLB", + "season": "2026", + "date": "2026-08-23", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Chicago Cubs", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CHC", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_chc", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260823_nyc_ne", + "sport": "MLS", + "season": "2026", + "date": "2026-08-23", + "time": "4:30p", + "home_team": "New England New England Revolution", + "away_team": "New York New York City FC", + "home_team_abbrev": "NE", + "away_team_abbrev": "NYC", + "home_team_canonical_id": "team_mls_ne", + "away_team_canonical_id": "team_mls_nyc", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_mls_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260823_hou_bay", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-23", + "time": "3p", + "home_team": "San Francisco Bay FC", + "away_team": "Houston Houston Dash", + "home_team_abbrev": "BAY", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nwsl_bay", + "away_team_canonical_id": "team_nwsl_hou", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_nwsl_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260823_skc_atl", + "sport": "MLS", + "season": "2026", + "date": "2026-08-23", + "time": "7p", + "home_team": "Atlanta Atlanta United", + "away_team": "Kansas City Sporting Kansas City", + "home_team_abbrev": "ATL", + "away_team_abbrev": "SKC", + "home_team_canonical_id": "team_mls_atl", + "away_team_canonical_id": "team_mls_skc", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260823_ind_chi", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-23", + "time": "6p", + "home_team": "Chicago Sky", + "away_team": "Indiana Fever", + "home_team_abbrev": "CHI", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_wnba_chi", + "away_team_canonical_id": "team_wnba_ind", + "venue": "Wintrust Arena", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -103579,21 +105447,35 @@ "canonical_id": "game_mlb_2026_20260823_atl_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-23T23:10:00Z", + "date": "2026-08-23", + "time": "7:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Atlanta Braves", + "home_team_abbrev": "MIL", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_atl", + "venue": "Journey Bank Ballpark", "stadium_canonical_id": "stadium_mlb_journey_bank_ballpark", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260824_tbr_det", - "sport": "MLB", + "canonical_id": "game_nwsl_2026_20260824_njy_ang", + "sport": "NWSL", "season": "2026", - "game_datetime_utc": "2026-08-24T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_tb", - "stadium_canonical_id": "stadium_mlb_comerica_park", + "date": "2026-08-23", + "time": "5p", + "home_team": "Los Angeles Angel City FC", + "away_team": "New Jersey NJ/NY Gotham FC", + "home_team_abbrev": "ANG", + "away_team_abbrev": "NJY", + "home_team_canonical_id": "team_nwsl_ang", + "away_team_canonical_id": "team_nwsl_njy", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_nwsl_bmo_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -103601,10 +105483,35 @@ "canonical_id": "game_mlb_2026_20260824_bos_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-24T22:40:00Z", + "date": "2026-08-24", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Boston Red Sox", + "home_team_abbrev": "MIA", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_bos", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260824_tbr_det", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "DET", + "away_team_abbrev": "TB", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Comerica Park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103612,10 +105519,17 @@ "canonical_id": "game_mlb_2026_20260824_col_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-24T22:45:00Z", + "date": "2026-08-24", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Colorado Rockies", + "home_team_abbrev": "WSN", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_col", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103623,10 +105537,35 @@ "canonical_id": "game_mlb_2026_20260824_tex_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-24T23:40:00Z", + "date": "2026-08-24", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Texas Rangers", + "home_team_abbrev": "CHW", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_tex", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260825_gsv_min", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-24", + "time": "7p", + "home_team": "Minnesota Lynx", + "away_team": "Golden State Valkyries", + "home_team_abbrev": "MIN", + "away_team_abbrev": "GSV", + "home_team_canonical_id": "team_wnba_min", + "away_team_canonical_id": "team_wnba_gsv", + "venue": "Target Center", + "stadium_canonical_id": "stadium_wnba_target_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -103634,32 +105573,17 @@ "canonical_id": "game_mlb_2026_20260825_cle_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-25T01:38:00Z", + "date": "2026-08-24", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "LAA", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_cle", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260825_pit_sd", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-25T01:40:00Z", - "home_team_canonical_id": "team_mlb_sd", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260825_phi_sea", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-25T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103667,10 +105591,17 @@ "canonical_id": "game_mlb_2026_20260825_min_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-25T01:40:00Z", + "date": "2026-08-24", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Minnesota Twins", + "home_team_abbrev": "OAK", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_min", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103678,10 +105609,53 @@ "canonical_id": "game_mlb_2026_20260825_chc_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-25T01:40:00Z", + "date": "2026-08-24", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Chicago Cubs", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_chc", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260825_pit_sd", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "SD", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_sd", + "away_team_canonical_id": "team_mlb_pit", + "venue": "Petco Park", + "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260825_phi_sea", + "sport": "MLB", + "season": "2026", + "date": "2026-08-24", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "SEA", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_phi", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103689,10 +105663,35 @@ "canonical_id": "game_mlb_2026_20260825_cin_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-25T01:45:00Z", + "date": "2026-08-24", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "SF", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_cin", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260825_atl_la", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-24", + "time": "7p", + "home_team": "Los Angeles Sparks", + "away_team": "Atlanta Dream", + "home_team_abbrev": "LA", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_wnba_la", + "away_team_canonical_id": "team_wnba_atl", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -103700,10 +105699,17 @@ "canonical_id": "game_mlb_2026_20260825_tbr_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-25T22:40:00Z", + "date": "2026-08-25", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "DET", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103711,10 +105717,17 @@ "canonical_id": "game_mlb_2026_20260825_bos_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-25T22:40:00Z", + "date": "2026-08-25", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Boston Red Sox", + "home_team_abbrev": "MIA", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_bos", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103722,10 +105735,35 @@ "canonical_id": "game_mlb_2026_20260825_col_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-25T22:45:00Z", + "date": "2026-08-25", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Colorado Rockies", + "home_team_abbrev": "WSN", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_col", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260825_chi_con", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-25", + "time": "7p", + "home_team": "Connecticut Sun", + "away_team": "Chicago Sky", + "home_team_abbrev": "CON", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_con", + "away_team_canonical_id": "team_wnba_chi", + "venue": "Mohegan Sun Arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -103733,10 +105771,17 @@ "canonical_id": "game_mlb_2026_20260825_hou_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-25T23:05:00Z", + "date": "2026-08-25", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Houston Astros", + "home_team_abbrev": "NYY", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_hou", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103744,10 +105789,17 @@ "canonical_id": "game_mlb_2026_20260825_kc_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-25T23:07:00Z", + "date": "2026-08-25", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Kansas City Royals", + "home_team_abbrev": "TOR", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_kc", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103755,10 +105807,17 @@ "canonical_id": "game_mlb_2026_20260825_mil_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-25T23:10:00Z", + "date": "2026-08-25", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "NYM", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_mil", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103766,10 +105825,17 @@ "canonical_id": "game_mlb_2026_20260825_lad_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-25T23:15:00Z", + "date": "2026-08-25", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_lad", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103777,10 +105843,17 @@ "canonical_id": "game_mlb_2026_20260825_tex_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-25T23:40:00Z", + "date": "2026-08-25", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Texas Rangers", + "home_team_abbrev": "CHW", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_tex", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103788,10 +105861,17 @@ "canonical_id": "game_mlb_2026_20260825_bal_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-25T23:45:00Z", + "date": "2026-08-25", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "STL", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_bal", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103799,10 +105879,17 @@ "canonical_id": "game_mlb_2026_20260826_cle_laa_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-26T01:38:00Z", + "date": "2026-08-25", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "LAA", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_cle", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103810,21 +105897,17 @@ "canonical_id": "game_mlb_2026_20260826_pit_sd_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-26T01:40:00Z", + "date": "2026-08-25", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "SD", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_pit", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260826_phi_sea_1", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-26T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103832,10 +105915,35 @@ "canonical_id": "game_mlb_2026_20260826_min_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-26T01:40:00Z", + "date": "2026-08-25", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Minnesota Twins", + "home_team_abbrev": "OAK", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_min", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260826_phi_sea_1", + "sport": "MLB", + "season": "2026", + "date": "2026-08-25", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "SEA", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_phi", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103843,10 +105951,17 @@ "canonical_id": "game_mlb_2026_20260826_chc_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-26T01:40:00Z", + "date": "2026-08-25", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Chicago Cubs", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_chc", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103854,10 +105969,35 @@ "canonical_id": "game_mlb_2026_20260826_cin_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-26T01:45:00Z", + "date": "2026-08-25", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "SF", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_cin", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260826_was_phx", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-25", + "time": "10p", + "home_team": "Phoenix Mercury", + "away_team": "Washington Mystics", + "home_team_abbrev": "PHX", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_wnba_phx", + "away_team_canonical_id": "team_wnba_was", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -103865,10 +106005,17 @@ "canonical_id": "game_mlb_2026_20260826_tbr_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-26T17:10:00Z", + "date": "2026-08-26", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "DET", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103876,10 +106023,17 @@ "canonical_id": "game_mlb_2026_20260826_chc_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-26T19:40:00Z", + "date": "2026-08-26", + "time": "12:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Chicago Cubs", + "home_team_abbrev": "ARI", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_chc", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103887,10 +106041,17 @@ "canonical_id": "game_mlb_2026_20260826_cin_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-26T19:45:00Z", + "date": "2026-08-26", + "time": "12:45p", + "home_team": "San Francisco Giants", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "SF", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_cin", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103898,10 +106059,17 @@ "canonical_id": "game_mlb_2026_20260826_cle_laa_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-26T20:07:00Z", + "date": "2026-08-26", + "time": "1:07p", + "home_team": "Los Angeles Angels", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "LAA", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_cle", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103909,10 +106077,17 @@ "canonical_id": "game_mlb_2026_20260826_pit_sd_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-26T20:10:00Z", + "date": "2026-08-26", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "SD", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_pit", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103920,10 +106095,17 @@ "canonical_id": "game_mlb_2026_20260826_phi_sea_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-26T20:10:00Z", + "date": "2026-08-26", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "SEA", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103931,10 +106113,17 @@ "canonical_id": "game_mlb_2026_20260826_bos_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-26T22:40:00Z", + "date": "2026-08-26", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "Boston Red Sox", + "home_team_abbrev": "MIA", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_bos", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103942,10 +106131,17 @@ "canonical_id": "game_mlb_2026_20260826_col_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-26T22:45:00Z", + "date": "2026-08-26", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Colorado Rockies", + "home_team_abbrev": "WSN", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_col", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103953,10 +106149,17 @@ "canonical_id": "game_mlb_2026_20260826_hou_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-26T23:05:00Z", + "date": "2026-08-26", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Houston Astros", + "home_team_abbrev": "NYY", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_hou", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103964,10 +106167,17 @@ "canonical_id": "game_mlb_2026_20260826_kc_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-26T23:07:00Z", + "date": "2026-08-26", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Kansas City Royals", + "home_team_abbrev": "TOR", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_kc", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103975,10 +106185,17 @@ "canonical_id": "game_mlb_2026_20260826_mil_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-26T23:10:00Z", + "date": "2026-08-26", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "NYM", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_mil", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103986,10 +106203,17 @@ "canonical_id": "game_mlb_2026_20260826_lad_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-26T23:15:00Z", + "date": "2026-08-26", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_lad", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -103997,10 +106221,17 @@ "canonical_id": "game_mlb_2026_20260826_tex_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-26T23:40:00Z", + "date": "2026-08-26", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Texas Rangers", + "home_team_abbrev": "CHW", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_tex", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104008,10 +106239,53 @@ "canonical_id": "game_mlb_2026_20260826_bal_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-26T23:45:00Z", + "date": "2026-08-26", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "STL", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_bal", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260827_ang_ncc", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-26", + "time": "8p", + "home_team": "North Carolina North Carolina Courage", + "away_team": "Los Angeles Angel City FC", + "home_team_abbrev": "NCC", + "away_team_abbrev": "ANG", + "home_team_canonical_id": "team_nwsl_ncc", + "away_team_canonical_id": "team_nwsl_ang", + "venue": "WakeMed Soccer Park", + "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260827_gsv_con", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-26", + "time": "8p", + "home_team": "Connecticut Sun", + "away_team": "Golden State Valkyries", + "home_team_abbrev": "CON", + "away_team_abbrev": "GSV", + "home_team_canonical_id": "team_wnba_con", + "away_team_canonical_id": "team_wnba_gsv", + "venue": "Mohegan Sun Arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -104019,10 +106293,17 @@ "canonical_id": "game_mlb_2026_20260827_min_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-27T01:05:00Z", + "date": "2026-08-26", + "time": "6:05p", + "home_team": "Oakland Athletics", + "away_team": "Minnesota Twins", + "home_team_abbrev": "OAK", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_min", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104030,10 +106311,17 @@ "canonical_id": "game_mlb_2026_20260827_col_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-27T17:05:00Z", + "date": "2026-08-27", + "time": "1:05p", + "home_team": "Washington Nationals", + "away_team": "Colorado Rockies", + "home_team_abbrev": "WSN", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_col", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104041,10 +106329,17 @@ "canonical_id": "game_mlb_2026_20260827_bal_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-27T18:15:00Z", + "date": "2026-08-27", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "STL", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_bal", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104052,10 +106347,17 @@ "canonical_id": "game_mlb_2026_20260827_hou_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-27T23:05:00Z", + "date": "2026-08-27", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Houston Astros", + "home_team_abbrev": "NYY", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_hou", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104063,10 +106365,17 @@ "canonical_id": "game_mlb_2026_20260827_kc_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-27T23:07:00Z", + "date": "2026-08-27", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Kansas City Royals", + "home_team_abbrev": "TOR", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_kc", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104074,10 +106383,17 @@ "canonical_id": "game_mlb_2026_20260827_mil_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-27T23:10:00Z", + "date": "2026-08-27", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "NYM", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_mil", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104085,10 +106401,35 @@ "canonical_id": "game_mlb_2026_20260827_lad_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-27T23:15:00Z", + "date": "2026-08-27", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "ATL", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_lad", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260828_gsv_ny", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-27", + "time": "8p", + "home_team": "New York Liberty", + "away_team": "Golden State Valkyries", + "home_team_abbrev": "NY", + "away_team_abbrev": "GSV", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_gsv", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -104096,10 +106437,35 @@ "canonical_id": "game_mlb_2026_20260828_ari_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-28T01:45:00Z", + "date": "2026-08-27", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "SF", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_ari", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260828_was_phx", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-27", + "time": "10p", + "home_team": "Phoenix Mercury", + "away_team": "Washington Mystics", + "home_team_abbrev": "PHX", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_wnba_phx", + "away_team_canonical_id": "team_wnba_was", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -104107,10 +106473,17 @@ "canonical_id": "game_mlb_2026_20260828_cin_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-28T18:20:00Z", + "date": "2026-08-28", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "CHC", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_cin", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104118,10 +106491,17 @@ "canonical_id": "game_mlb_2026_20260828_lad_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-28T22:40:00Z", + "date": "2026-08-28", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "DET", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_lad", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104129,10 +106509,17 @@ "canonical_id": "game_mlb_2026_20260828_mia_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-28T22:45:00Z", + "date": "2026-08-28", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Miami Marlins", + "home_team_abbrev": "WSN", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_mia", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104140,10 +106527,17 @@ "canonical_id": "game_mlb_2026_20260828_bos_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-28T23:05:00Z", + "date": "2026-08-28", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Boston Red Sox", + "home_team_abbrev": "NYY", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_bos", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104151,10 +106545,17 @@ "canonical_id": "game_mlb_2026_20260828_sea_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-28T23:07:00Z", + "date": "2026-08-28", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Seattle Mariners", + "home_team_abbrev": "TOR", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_sea", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104162,21 +106563,17 @@ "canonical_id": "game_mlb_2026_20260828_sd_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-28T23:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-08-28", + "time": "7:10p", + "home_team": "Tampa Bay Rays", + "away_team": "San Diego Padres", + "home_team_abbrev": "TB", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_sd", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260828_kc_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-28T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104184,10 +106581,35 @@ "canonical_id": "game_mlb_2026_20260828_hou_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-28T23:10:00Z", + "date": "2026-08-28", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Houston Astros", + "home_team_abbrev": "NYM", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_hou", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260828_kc_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-08-28", + "time": "7:10p", + "home_team": "Cleveland Guardians", + "away_team": "Kansas City Royals", + "home_team_abbrev": "CLE", + "away_team_abbrev": "KC", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_kc", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104195,10 +106617,35 @@ "canonical_id": "game_mlb_2026_20260828_col_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-28T23:15:00Z", + "date": "2026-08-28", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Colorado Rockies", + "home_team_abbrev": "ATL", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_col", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260828_con_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-28", + "time": "7:30p", + "home_team": "Indiana Fever", + "away_team": "Connecticut Sun", + "home_team_abbrev": "IND", + "away_team_abbrev": "CON", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_con", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -104206,10 +106653,35 @@ "canonical_id": "game_mlb_2026_20260828_tex_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-28T23:40:00Z", + "date": "2026-08-28", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Texas Rangers", + "home_team_abbrev": "MIL", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_tex", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260829_por_njy", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-28", + "time": "8p", + "home_team": "New Jersey NJ/NY Gotham FC", + "away_team": "Portland Portland Thorns", + "home_team_abbrev": "NJY", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nwsl_njy", + "away_team_canonical_id": "team_nwsl_por", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_nwsl_red_bull_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -104217,10 +106689,17 @@ "canonical_id": "game_mlb_2026_20260829_chw_min_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-29T00:10:00Z", + "date": "2026-08-28", + "time": "7:10p", + "home_team": "Minnesota Twins", + "away_team": "Chicago White Sox", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_chw", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104228,10 +106707,17 @@ "canonical_id": "game_mlb_2026_20260829_pit_stl_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-29T00:15:00Z", + "date": "2026-08-28", + "time": "7:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "STL", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_pit", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104239,10 +106725,17 @@ "canonical_id": "game_mlb_2026_20260829_phi_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-29T01:38:00Z", + "date": "2026-08-28", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "LAA", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_phi", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104250,10 +106743,53 @@ "canonical_id": "game_mlb_2026_20260829_bal_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-29T01:40:00Z", + "date": "2026-08-28", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "OAK", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_bal", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260829_rgn_sdw", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-28", + "time": "7p", + "home_team": "San Diego San Diego Wave", + "away_team": "Louisville Racing Louisville", + "home_team_abbrev": "SDW", + "away_team_abbrev": "RGN", + "home_team_canonical_id": "team_nwsl_sdw", + "away_team_canonical_id": "team_nwsl_rgn", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260829_was_la", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-28", + "time": "7p", + "home_team": "Los Angeles Sparks", + "away_team": "Washington Mystics", + "home_team_abbrev": "LA", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_wnba_la", + "away_team_canonical_id": "team_wnba_was", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -104261,10 +106797,35 @@ "canonical_id": "game_mlb_2026_20260829_ari_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-29T02:15:00Z", + "date": "2026-08-28", + "time": "7:15p", + "home_team": "San Francisco Giants", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "SF", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_ari", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260829_chi_ny", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-29", + "time": "1p", + "home_team": "New York Liberty", + "away_team": "Chicago Sky", + "home_team_abbrev": "NY", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_chi", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -104272,10 +106833,17 @@ "canonical_id": "game_mlb_2026_20260829_lad_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-29T17:10:00Z", + "date": "2026-08-29", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "DET", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_lad", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104283,10 +106851,17 @@ "canonical_id": "game_mlb_2026_20260829_chw_min_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-29T18:10:00Z", + "date": "2026-08-29", + "time": "1:10p", + "home_team": "Minnesota Twins", + "away_team": "Chicago White Sox", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_chw", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104294,10 +106869,17 @@ "canonical_id": "game_mlb_2026_20260829_pit_stl_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-29T18:15:00Z", + "date": "2026-08-29", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "STL", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_pit", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104305,10 +106887,17 @@ "canonical_id": "game_mlb_2026_20260829_cin_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-29T18:20:00Z", + "date": "2026-08-29", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "CHC", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_cin", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104316,10 +106905,17 @@ "canonical_id": "game_mlb_2026_20260829_sea_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-29T19:07:00Z", + "date": "2026-08-29", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Seattle Mariners", + "home_team_abbrev": "TOR", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_sea", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104327,10 +106923,17 @@ "canonical_id": "game_mlb_2026_20260829_mia_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-29T20:05:00Z", + "date": "2026-08-29", + "time": "4:05p", + "home_team": "Washington Nationals", + "away_team": "Miami Marlins", + "home_team_abbrev": "WSN", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_mia", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104338,21 +106941,17 @@ "canonical_id": "game_mlb_2026_20260829_sd_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-29T20:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-08-29", + "time": "4:10p", + "home_team": "Tampa Bay Rays", + "away_team": "San Diego Padres", + "home_team_abbrev": "TB", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_sd", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260829_kc_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-29T20:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104360,10 +106959,17 @@ "canonical_id": "game_mlb_2026_20260829_hou_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-29T20:10:00Z", + "date": "2026-08-29", + "time": "4:10p", + "home_team": "New York Mets", + "away_team": "Houston Astros", + "home_team_abbrev": "NYM", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_hou", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104371,21 +106977,89 @@ "canonical_id": "game_mlb_2026_20260829_col_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-29T20:10:00Z", + "date": "2026-08-29", + "time": "4:10p", + "home_team": "Atlanta Braves", + "away_team": "Colorado Rockies", + "home_team_abbrev": "ATL", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_col", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260829_tex_mil", + "canonical_id": "game_mlb_2026_20260829_kc_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-29T23:15:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "date": "2026-08-29", + "time": "4:10p", + "home_team": "Cleveland Guardians", + "away_team": "Kansas City Royals", + "home_team_abbrev": "CLE", + "away_team_abbrev": "KC", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_kc", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260829_chi_sea", + "sport": "MLS", + "season": "2026", + "date": "2026-08-29", + "time": "1:30p", + "home_team": "Seattle Seattle Sounders", + "away_team": "Chicago Chicago Fire", + "home_team_abbrev": "SEA", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_mls_sea", + "away_team_canonical_id": "team_mls_chi", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_mls_lumen_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260829_ncc_kcc", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-29", + "time": "5:30p", + "home_team": "Kansas City Kansas City Current", + "away_team": "North Carolina North Carolina Courage", + "home_team_abbrev": "KCC", + "away_team_abbrev": "NCC", + "home_team_canonical_id": "team_nwsl_kcc", + "away_team_canonical_id": "team_nwsl_ncc", + "venue": "CPKC Stadium", + "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260829_uta_orl", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-29", + "time": "7p", + "home_team": "Orlando Orlando Pride", + "away_team": "Utah Utah Royals", + "home_team_abbrev": "ORL", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nwsl_orl", + "away_team_canonical_id": "team_nwsl_uta", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -104393,21 +107067,251 @@ "canonical_id": "game_mlb_2026_20260829_bos_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-29T23:15:00Z", + "date": "2026-08-29", + "time": "7:15p", + "home_team": "New York Yankees", + "away_team": "Boston Red Sox", + "home_team_abbrev": "NYY", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_bos", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260830_bal_oak_1", + "canonical_id": "game_mlb_2026_20260829_tex_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-30T02:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "date": "2026-08-29", + "time": "6:15p", + "home_team": "Milwaukee Brewers", + "away_team": "Texas Rangers", + "home_team_abbrev": "MIL", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_tex", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260829_phi_ny", + "sport": "MLS", + "season": "2026", + "date": "2026-08-29", + "time": "7:30p", + "home_team": "New York New York Red Bulls", + "away_team": "Philadelphia Philadelphia Union", + "home_team_abbrev": "RB", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mls_ny", + "away_team_canonical_id": "team_mls_phi", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_mls_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260829_mtl_mia", + "sport": "MLS", + "season": "2026", + "date": "2026-08-29", + "time": "7:30p", + "home_team": "Miami Inter Miami", + "away_team": "Montreal CF Montreal", + "home_team_abbrev": "MIA", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_mls_mia", + "away_team_canonical_id": "team_mls_mtl", + "venue": "Miami Freedom Park", + "stadium_canonical_id": "stadium_mls_miami_freedom_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260829_nyc_tor", + "sport": "MLS", + "season": "2026", + "date": "2026-08-29", + "time": "7:30p", + "home_team": "Toronto Toronto FC", + "away_team": "New York New York City FC", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NYC", + "home_team_canonical_id": "team_mls_tor", + "away_team_canonical_id": "team_mls_nyc", + "venue": "BMO Field", + "stadium_canonical_id": "stadium_mls_bmo_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260829_clt_atl", + "sport": "MLS", + "season": "2026", + "date": "2026-08-29", + "time": "7:30p", + "home_team": "Atlanta Atlanta United", + "away_team": "Charlotte Charlotte FC", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CLT", + "home_team_canonical_id": "team_mls_atl", + "away_team_canonical_id": "team_mls_clt", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260829_ne_clb", + "sport": "MLS", + "season": "2026", + "date": "2026-08-29", + "time": "7:30p", + "home_team": "Columbus Columbus Crew", + "away_team": "New England New England Revolution", + "home_team_abbrev": "CLB", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_mls_clb", + "away_team_canonical_id": "team_mls_ne", + "venue": "Lower.com Field", + "stadium_canonical_id": "stadium_mls_lowercom_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260829_lafc_dc", + "sport": "MLS", + "season": "2026", + "date": "2026-08-29", + "time": "7:30p", + "home_team": "Washington D.C. United", + "away_team": "Los Angeles Los Angeles FC", + "home_team_abbrev": "DC", + "away_team_abbrev": "LAFC", + "home_team_canonical_id": "team_mls_dc", + "away_team_canonical_id": "team_mls_lafc", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_mls_audi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260830_sj_hou", + "sport": "MLS", + "season": "2026", + "date": "2026-08-29", + "time": "7:30p", + "home_team": "Houston Houston Dynamo", + "away_team": "San Jose San Jose Earthquakes", + "home_team_abbrev": "HOU", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_mls_hou", + "away_team_canonical_id": "team_mls_sj", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_mls_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260830_orl_min", + "sport": "MLS", + "season": "2026", + "date": "2026-08-29", + "time": "7:30p", + "home_team": "Minnesota Minnesota United", + "away_team": "Orlando Orlando City", + "home_team_abbrev": "MIN", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_mls_min", + "away_team_canonical_id": "team_mls_orl", + "venue": "Allianz Field", + "stadium_canonical_id": "stadium_mls_allianz_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260830_cin_nsh", + "sport": "MLS", + "season": "2026", + "date": "2026-08-29", + "time": "7:30p", + "home_team": "Nashville Nashville SC", + "away_team": "Cincinnati FC Cincinnati", + "home_team_abbrev": "NSH", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mls_nsh", + "away_team_canonical_id": "team_mls_cin", + "venue": "GEODIS Park", + "stadium_canonical_id": "stadium_mls_geodis_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260830_van_skc", + "sport": "MLS", + "season": "2026", + "date": "2026-08-29", + "time": "7:30p", + "home_team": "Kansas City Sporting Kansas City", + "away_team": "Vancouver Vancouver Whitecaps", + "home_team_abbrev": "SKC", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_mls_skc", + "away_team_canonical_id": "team_mls_van", + "venue": "Children's Mercy Park", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260830_chi_den", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-29", + "time": "6:45p", + "home_team": "Denver Denver Summit FC", + "away_team": "Chicago Chicago Red Stars", + "home_team_abbrev": "DEN", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nwsl_den", + "away_team_canonical_id": "team_nwsl_chi", + "venue": "Centennial Stadium", + "stadium_canonical_id": "stadium_nwsl_centennial_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260830_slc_col", + "sport": "MLS", + "season": "2026", + "date": "2026-08-29", + "time": "7:30p", + "home_team": "Colorado Colorado Rapids", + "away_team": "Salt Lake Real Salt Lake", + "home_team_abbrev": "COL", + "away_team_abbrev": "SLC", + "home_team_canonical_id": "team_mls_col", + "away_team_canonical_id": "team_mls_slc", + "venue": "Dick's Sporting Goods Park", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -104415,10 +107319,35 @@ "canonical_id": "game_mlb_2026_20260830_ari_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-30T02:05:00Z", + "date": "2026-08-29", + "time": "7:05p", + "home_team": "San Francisco Giants", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "SF", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_ari", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260830_bal_oak_1", + "sport": "MLB", + "season": "2026", + "date": "2026-08-29", + "time": "7:05p", + "home_team": "Oakland Athletics", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "OAK", + "away_team_abbrev": "BAL", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_bal", + "venue": "Sutter Health Park", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104426,10 +107355,53 @@ "canonical_id": "game_mlb_2026_20260830_phi_laa_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-30T02:07:00Z", + "date": "2026-08-29", + "time": "7:07p", + "home_team": "Los Angeles Angels", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "LAA", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_phi", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260830_aus_por", + "sport": "MLS", + "season": "2026", + "date": "2026-08-29", + "time": "7:30p", + "home_team": "Portland Portland Timbers", + "away_team": "Austin Austin FC", + "home_team_abbrev": "POR", + "away_team_abbrev": "AUS", + "home_team_canonical_id": "team_mls_por", + "away_team_canonical_id": "team_mls_aus", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_mls_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260830_lag_sd", + "sport": "MLS", + "season": "2026", + "date": "2026-08-29", + "time": "7:30p", + "home_team": "San Diego San Diego FC", + "away_team": "Los Angeles LA Galaxy", + "home_team_abbrev": "SD", + "away_team_abbrev": "LAG", + "home_team_canonical_id": "team_mls_sd", + "away_team_canonical_id": "team_mls_lag", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -104437,21 +107409,35 @@ "canonical_id": "game_mlb_2026_20260830_mia_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-30T16:15:00Z", + "date": "2026-08-30", + "time": "12:10p", + "home_team": "Washington Nationals", + "away_team": "Miami Marlins", + "home_team_abbrev": "WSN", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_mia", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260830_col_atl", - "sport": "MLB", + "canonical_id": "game_nwsl_2026_20260830_bay_wsh", + "sport": "NWSL", "season": "2026", - "game_datetime_utc": "2026-08-30T17:35:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_truist_park", + "date": "2026-08-30", + "time": "12:30p", + "home_team": "Washington Washington Spirit", + "away_team": "San Francisco Bay FC", + "home_team_abbrev": "WSH", + "away_team_abbrev": "BAY", + "home_team_canonical_id": "team_nwsl_wsh", + "away_team_canonical_id": "team_nwsl_bay", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_nwsl_audi_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -104459,10 +107445,35 @@ "canonical_id": "game_mlb_2026_20260830_bos_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-30T17:35:00Z", + "date": "2026-08-30", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "Boston Red Sox", + "home_team_abbrev": "NYY", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_bos", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260830_col_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "1:35p", + "home_team": "Atlanta Braves", + "away_team": "Colorado Rockies", + "home_team_abbrev": "ATL", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_col", + "venue": "Truist Park", + "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104470,21 +107481,17 @@ "canonical_id": "game_mlb_2026_20260830_sea_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-30T17:37:00Z", + "date": "2026-08-30", + "time": "1:37p", + "home_team": "Toronto Blue Jays", + "away_team": "Seattle Mariners", + "home_team_abbrev": "TOR", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_sea", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260830_sd_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-30T17:40:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104492,10 +107499,17 @@ "canonical_id": "game_mlb_2026_20260830_lad_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-30T17:40:00Z", + "date": "2026-08-30", + "time": "1:40p", + "home_team": "Detroit Tigers", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "DET", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_lad", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104503,10 +107517,35 @@ "canonical_id": "game_mlb_2026_20260830_kc_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-30T17:40:00Z", + "date": "2026-08-30", + "time": "1:40p", + "home_team": "Cleveland Guardians", + "away_team": "Kansas City Royals", + "home_team_abbrev": "CLE", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_kc", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260830_sd_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "1:40p", + "home_team": "Tampa Bay Rays", + "away_team": "San Diego Padres", + "home_team_abbrev": "TB", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_sd", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104514,10 +107553,17 @@ "canonical_id": "game_mlb_2026_20260830_tex_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-30T18:10:00Z", + "date": "2026-08-30", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Texas Rangers", + "home_team_abbrev": "MIL", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_tex", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104525,10 +107571,17 @@ "canonical_id": "game_mlb_2026_20260830_chw_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-30T18:10:00Z", + "date": "2026-08-30", + "time": "1:10p", + "home_team": "Minnesota Twins", + "away_team": "Chicago White Sox", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_chw", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104536,10 +107589,35 @@ "canonical_id": "game_mlb_2026_20260830_pit_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-30T18:15:00Z", + "date": "2026-08-30", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "STL", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_pit", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260830_min_atl", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-30", + "time": "3p", + "home_team": "Atlanta Dream", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_atl", + "away_team_canonical_id": "team_wnba_min", + "venue": "Gateway Center Arena", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -104547,21 +107625,17 @@ "canonical_id": "game_mlb_2026_20260830_cin_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-30T19:10:00Z", + "date": "2026-08-30", + "time": "2:10p", + "home_team": "Chicago Cubs", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "CHC", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_cin", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260830_bal_oak_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-08-30T20:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_bal", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104569,10 +107643,35 @@ "canonical_id": "game_mlb_2026_20260830_ari_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-30T20:05:00Z", + "date": "2026-08-30", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "SF", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_ari", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260830_bal_oak_2", + "sport": "MLB", + "season": "2026", + "date": "2026-08-30", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "OAK", + "away_team_abbrev": "BAL", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_bal", + "venue": "Sutter Health Park", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104580,10 +107679,71 @@ "canonical_id": "game_mlb_2026_20260830_phi_laa_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-30T20:07:00Z", + "date": "2026-08-30", + "time": "1:07p", + "home_team": "Los Angeles Angels", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "LAA", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_phi", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260830_la_sea", + "sport": "WNBA", + "season": "2026", + "date": "2026-08-30", + "time": "2p", + "home_team": "Seattle Storm", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "SEA", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_sea", + "away_team_canonical_id": "team_wnba_la", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260830_dal_stl", + "sport": "MLS", + "season": "2026", + "date": "2026-08-30", + "time": "6p", + "home_team": "St. Louis St. Louis City SC", + "away_team": "Dallas FC Dallas", + "home_team_abbrev": "STL", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_mls_stl", + "away_team_canonical_id": "team_mls_dal", + "venue": "CITYPARK", + "stadium_canonical_id": "stadium_mls_citypark", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260830_hou_sea", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-30", + "time": "4p", + "home_team": "Seattle Seattle Reign", + "away_team": "Houston Houston Dash", + "home_team_abbrev": "SEA", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nwsl_sea", + "away_team_canonical_id": "team_nwsl_hou", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_nwsl_lumen_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -104591,21 +107751,35 @@ "canonical_id": "game_mlb_2026_20260830_hou_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-30T23:20:00Z", + "date": "2026-08-30", + "time": "7:20p", + "home_team": "New York Mets", + "away_team": "Houston Astros", + "home_team_abbrev": "NYM", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_hou", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260831_sd_cin", - "sport": "MLB", + "canonical_id": "game_wnba_2026_20260831_con_dal", + "sport": "WNBA", "season": "2026", - "game_datetime_utc": "2026-08-31T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "date": "2026-08-30", + "time": "7p", + "home_team": "Dallas Wings", + "away_team": "Connecticut Sun", + "home_team_abbrev": "DAL", + "away_team_abbrev": "CON", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_con", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -104613,21 +107787,35 @@ "canonical_id": "game_mlb_2026_20260831_nym_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-31T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-08-31", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "New York Mets", + "home_team_abbrev": "TB", + "away_team_abbrev": "NYM", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_nym", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260831_sea_bos", + "canonical_id": "game_mlb_2026_20260831_sd_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-31T22:45:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_fenway_park", + "date": "2026-08-31", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "San Diego Padres", + "home_team_abbrev": "CIN", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_sd", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104635,10 +107823,35 @@ "canonical_id": "game_mlb_2026_20260831_mia_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-31T22:45:00Z", + "date": "2026-08-31", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Miami Marlins", + "home_team_abbrev": "WSN", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_mia", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260831_sea_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-08-31", + "time": "6:45p", + "home_team": "Boston Red Sox", + "away_team": "Seattle Mariners", + "home_team_abbrev": "BOS", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_sea", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104646,10 +107859,17 @@ "canonical_id": "game_mlb_2026_20260831_mil_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-31T23:40:00Z", + "date": "2026-08-31", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "CHC", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_mil", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104657,10 +107877,35 @@ "canonical_id": "game_mlb_2026_20260831_det_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-08-31T23:40:00Z", + "date": "2026-08-31", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Detroit Tigers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_det", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260901_ang_bos", + "sport": "NWSL", + "season": "2026", + "date": "2026-08-31", + "time": "8p", + "home_team": "Boston Boston Legacy FC", + "away_team": "Los Angeles Angel City FC", + "home_team_abbrev": "BOS", + "away_team_abbrev": "ANG", + "home_team_canonical_id": "team_nwsl_bos", + "away_team_canonical_id": "team_nwsl_ang", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_nwsl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -104668,10 +107913,17 @@ "canonical_id": "game_mlb_2026_20260901_oak_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-01T00:05:00Z", + "date": "2026-08-31", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Oakland Athletics", + "home_team_abbrev": "TEX", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_oak", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104679,10 +107931,17 @@ "canonical_id": "game_mlb_2026_20260901_chw_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-01T00:10:00Z", + "date": "2026-08-31", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Chicago White Sox", + "home_team_abbrev": "HOU", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_chw", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104690,10 +107949,17 @@ "canonical_id": "game_mlb_2026_20260901_bal_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-01T00:40:00Z", + "date": "2026-08-31", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "COL", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_bal", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104701,10 +107967,17 @@ "canonical_id": "game_mlb_2026_20260901_nyy_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-01T01:38:00Z", + "date": "2026-08-31", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "New York Yankees", + "home_team_abbrev": "LAA", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104712,32 +107985,17 @@ "canonical_id": "game_mlb_2026_20260901_phi_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-01T01:40:00Z", + "date": "2026-08-31", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "ARI", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_phi", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260901_tor_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-01T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260901_sf_pit", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-01T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104745,10 +108003,35 @@ "canonical_id": "game_mlb_2026_20260901_sd_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-01T22:40:00Z", + "date": "2026-09-01", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "San Diego Padres", + "home_team_abbrev": "CIN", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_sd", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260901_tor_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "6:40p", + "home_team": "Cleveland Guardians", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "CLE", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tor", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104756,10 +108039,35 @@ "canonical_id": "game_mlb_2026_20260901_nym_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-01T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-09-01", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "New York Mets", + "home_team_abbrev": "TB", + "away_team_abbrev": "NYM", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_nym", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260901_sf_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "San Francisco Giants", + "home_team_abbrev": "PIT", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_sf", + "venue": "PNC Park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104767,10 +108075,17 @@ "canonical_id": "game_mlb_2026_20260901_sea_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-01T22:45:00Z", + "date": "2026-09-01", + "time": "6:45p", + "home_team": "Boston Red Sox", + "away_team": "Seattle Mariners", + "home_team_abbrev": "BOS", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_sea", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104778,32 +108093,17 @@ "canonical_id": "game_mlb_2026_20260901_atl_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-01T22:45:00Z", + "date": "2026-09-01", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Atlanta Braves", + "home_team_abbrev": "WSN", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_atl", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260901_mil_chc", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-01T23:40:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260901_mia_kc", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-01T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104811,10 +108111,53 @@ "canonical_id": "game_mlb_2026_20260901_det_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-01T23:40:00Z", + "date": "2026-09-01", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Detroit Tigers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_det", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260901_mil_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "CHC", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mil", + "venue": "Wrigley Field", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260901_mia_kc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-01", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Miami Marlins", + "home_team_abbrev": "KC", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_kc", + "away_team_canonical_id": "team_mlb_mia", + "venue": "Kauffman Stadium", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104822,10 +108165,17 @@ "canonical_id": "game_mlb_2026_20260902_oak_tex_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-02T00:05:00Z", + "date": "2026-09-01", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Oakland Athletics", + "home_team_abbrev": "TEX", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_oak", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104833,10 +108183,17 @@ "canonical_id": "game_mlb_2026_20260902_chw_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-02T00:10:00Z", + "date": "2026-09-01", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Chicago White Sox", + "home_team_abbrev": "HOU", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_chw", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104844,10 +108201,17 @@ "canonical_id": "game_mlb_2026_20260902_bal_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-02T00:40:00Z", + "date": "2026-09-01", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "COL", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_bal", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104855,10 +108219,17 @@ "canonical_id": "game_mlb_2026_20260902_nyy_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-02T01:38:00Z", + "date": "2026-09-01", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "New York Yankees", + "home_team_abbrev": "LAA", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104866,10 +108237,17 @@ "canonical_id": "game_mlb_2026_20260902_phi_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-02T01:40:00Z", + "date": "2026-09-01", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "ARI", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_phi", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104877,10 +108255,17 @@ "canonical_id": "game_mlb_2026_20260902_stl_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-02T02:10:00Z", + "date": "2026-09-01", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "LAD", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_stl", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104888,10 +108273,17 @@ "canonical_id": "game_mlb_2026_20260902_sd_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-02T16:40:00Z", + "date": "2026-09-02", + "time": "12:40p", + "home_team": "Cincinnati Reds", + "away_team": "San Diego Padres", + "home_team_abbrev": "CIN", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_sd", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104899,10 +108291,17 @@ "canonical_id": "game_mlb_2026_20260902_atl_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-02T17:05:00Z", + "date": "2026-09-02", + "time": "1:05p", + "home_team": "Washington Nationals", + "away_team": "Atlanta Braves", + "home_team_abbrev": "WSN", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_atl", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104910,10 +108309,17 @@ "canonical_id": "game_mlb_2026_20260902_oak_tex_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-02T18:35:00Z", + "date": "2026-09-02", + "time": "1:35p", + "home_team": "Texas Rangers", + "away_team": "Oakland Athletics", + "home_team_abbrev": "TEX", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_oak", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104921,10 +108327,17 @@ "canonical_id": "game_mlb_2026_20260902_bal_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-02T19:10:00Z", + "date": "2026-09-02", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "COL", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_bal", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104932,10 +108345,17 @@ "canonical_id": "game_mlb_2026_20260902_phi_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-02T19:40:00Z", + "date": "2026-09-02", + "time": "12:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "ARI", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_phi", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104943,21 +108363,17 @@ "canonical_id": "game_mlb_2026_20260902_sea_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-02T20:10:00Z", + "date": "2026-09-02", + "time": "4:10p", + "home_team": "Boston Red Sox", + "away_team": "Seattle Mariners", + "home_team_abbrev": "BOS", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_sea", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260902_tor_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-02T22:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104965,10 +108381,35 @@ "canonical_id": "game_mlb_2026_20260902_sf_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-02T22:40:00Z", + "date": "2026-09-02", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "San Francisco Giants", + "home_team_abbrev": "PIT", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_sf", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260902_tor_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "6:40p", + "home_team": "Cleveland Guardians", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "CLE", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_tor", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -104976,32 +108417,17 @@ "canonical_id": "game_mlb_2026_20260902_nym_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-02T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-09-02", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "New York Mets", + "home_team_abbrev": "TB", + "away_team_abbrev": "NYM", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_nym", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260902_mil_chc", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-02T23:40:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260902_mia_kc", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-02T23:40:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105009,10 +108435,53 @@ "canonical_id": "game_mlb_2026_20260902_det_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-02T23:40:00Z", + "date": "2026-09-02", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "Detroit Tigers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_det", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260902_mil_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "CHC", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mil", + "venue": "Wrigley Field", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260902_mia_kc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-02", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Miami Marlins", + "home_team_abbrev": "KC", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_kc", + "away_team_canonical_id": "team_mlb_mia", + "venue": "Kauffman Stadium", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105020,10 +108489,17 @@ "canonical_id": "game_mlb_2026_20260903_chw_hou_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-03T00:10:00Z", + "date": "2026-09-02", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Chicago White Sox", + "home_team_abbrev": "HOU", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_chw", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105031,10 +108507,17 @@ "canonical_id": "game_mlb_2026_20260903_nyy_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-03T01:38:00Z", + "date": "2026-09-02", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "New York Yankees", + "home_team_abbrev": "LAA", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105042,10 +108525,17 @@ "canonical_id": "game_mlb_2026_20260903_stl_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-03T02:10:00Z", + "date": "2026-09-02", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "LAD", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_stl", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105053,10 +108543,17 @@ "canonical_id": "game_mlb_2026_20260903_sf_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-03T16:35:00Z", + "date": "2026-09-03", + "time": "12:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "San Francisco Giants", + "home_team_abbrev": "PIT", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_sf", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105064,10 +108561,17 @@ "canonical_id": "game_mlb_2026_20260903_tor_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-03T17:10:00Z", + "date": "2026-09-03", + "time": "1:10p", + "home_team": "Cleveland Guardians", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "CLE", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_tor", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105075,10 +108579,17 @@ "canonical_id": "game_mlb_2026_20260903_chw_hou_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-03T18:10:00Z", + "date": "2026-09-03", + "time": "1:10p", + "home_team": "Houston Astros", + "away_team": "Chicago White Sox", + "home_team_abbrev": "HOU", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_chw", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105086,10 +108597,17 @@ "canonical_id": "game_mlb_2026_20260903_bos_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-03T22:35:00Z", + "date": "2026-09-03", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Boston Red Sox", + "home_team_abbrev": "BAL", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_bos", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105097,10 +108615,17 @@ "canonical_id": "game_mlb_2026_20260903_mil_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-03T23:40:00Z", + "date": "2026-09-03", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "CHC", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_mil", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105108,10 +108633,17 @@ "canonical_id": "game_mlb_2026_20260903_mia_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-03T23:40:00Z", + "date": "2026-09-03", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Miami Marlins", + "home_team_abbrev": "KC", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_mia", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105119,10 +108651,17 @@ "canonical_id": "game_mlb_2026_20260904_tbr_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-04T00:05:00Z", + "date": "2026-09-03", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "TEX", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105130,10 +108669,17 @@ "canonical_id": "game_mlb_2026_20260904_oak_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-04T01:40:00Z", + "date": "2026-09-03", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Oakland Athletics", + "home_team_abbrev": "SEA", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105141,32 +108687,17 @@ "canonical_id": "game_mlb_2026_20260904_stl_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-04T02:10:00Z", + "date": "2026-09-03", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "LAD", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_stl", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260904_mil_cin", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-04T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_mil", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260904_laa_pit", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-04T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105174,10 +108705,53 @@ "canonical_id": "game_mlb_2026_20260904_atl_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-04T22:40:00Z", + "date": "2026-09-04", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Atlanta Braves", + "home_team_abbrev": "PHI", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_atl", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260904_mil_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "CIN", + "away_team_abbrev": "MIL", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_mil", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260904_laa_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "PIT", + "away_team_abbrev": "LAA", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_laa", + "venue": "PNC Park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105185,32 +108759,17 @@ "canonical_id": "game_mlb_2026_20260904_bos_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-04T23:05:00Z", + "date": "2026-09-04", + "time": "7:05p", + "home_team": "Baltimore Orioles", + "away_team": "Boston Red Sox", + "home_team_abbrev": "BAL", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_bos", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260904_sf_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-04T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260904_det_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-04T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105218,10 +108777,71 @@ "canonical_id": "game_mlb_2026_20260904_chc_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-04T23:10:00Z", + "date": "2026-09-04", + "time": "7:10p", + "home_team": "Miami Marlins", + "away_team": "Chicago Cubs", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_chc", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260904_det_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "7:10p", + "home_team": "Cleveland Guardians", + "away_team": "Detroit Tigers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_det", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260904_sf_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-04", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "San Francisco Giants", + "home_team_abbrev": "NYM", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260904_nsh_nyc", + "sport": "MLS", + "season": "2026", + "date": "2026-09-04", + "time": "7:30p", + "home_team": "New York New York City FC", + "away_team": "Nashville Nashville SC", + "home_team_abbrev": "NYC", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_mls_nyc", + "away_team_canonical_id": "team_mls_nsh", + "venue": "Yankee Stadium", + "stadium_canonical_id": "stadium_mls_yankee_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -105229,10 +108849,17 @@ "canonical_id": "game_mlb_2026_20260904_min_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-04T23:40:00Z", + "date": "2026-09-04", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Minnesota Twins", + "home_team_abbrev": "CHW", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_min", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105240,10 +108867,17 @@ "canonical_id": "game_mlb_2026_20260905_tbr_tex_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-05T00:05:00Z", + "date": "2026-09-04", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "TEX", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105251,10 +108885,17 @@ "canonical_id": "game_mlb_2026_20260905_tor_kc_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-05T00:10:00Z", + "date": "2026-09-04", + "time": "7:10p", + "home_team": "Kansas City Royals", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "KC", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_tor", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105262,10 +108903,17 @@ "canonical_id": "game_mlb_2026_20260905_ari_hou_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-05T00:10:00Z", + "date": "2026-09-04", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "HOU", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_ari", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105273,10 +108921,35 @@ "canonical_id": "game_mlb_2026_20260905_stl_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-05T00:40:00Z", + "date": "2026-09-04", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "COL", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_stl", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260905_bos_uta", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-04", + "time": "7:30p", + "home_team": "Utah Utah Royals", + "away_team": "Boston Boston Legacy FC", + "home_team_abbrev": "UTA", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nwsl_uta", + "away_team_canonical_id": "team_nwsl_bos", + "venue": "America First Field", + "stadium_canonical_id": "stadium_nwsl_america_first_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -105284,10 +108957,35 @@ "canonical_id": "game_mlb_2026_20260905_nyy_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-05T01:40:00Z", + "date": "2026-09-04", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "New York Yankees", + "home_team_abbrev": "SD", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260905_kcc_bay", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-04", + "time": "7p", + "home_team": "San Francisco Bay FC", + "away_team": "Kansas City Kansas City Current", + "home_team_abbrev": "BAY", + "away_team_abbrev": "KCC", + "home_team_canonical_id": "team_nwsl_bay", + "away_team_canonical_id": "team_nwsl_kcc", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_nwsl_paypal_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -105295,10 +108993,17 @@ "canonical_id": "game_mlb_2026_20260905_wsn_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-05T02:10:00Z", + "date": "2026-09-04", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Washington Nationals", + "home_team_abbrev": "LAD", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105306,10 +109011,17 @@ "canonical_id": "game_mlb_2026_20260905_oak_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-05T02:10:00Z", + "date": "2026-09-04", + "time": "7:10p", + "home_team": "Seattle Mariners", + "away_team": "Oakland Athletics", + "home_team_abbrev": "SEA", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105317,10 +109029,17 @@ "canonical_id": "game_mlb_2026_20260905_sf_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-05T20:10:00Z", + "date": "2026-09-05", + "time": "4:10p", + "home_team": "New York Mets", + "away_team": "San Francisco Giants", + "home_team_abbrev": "NYM", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_sf", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105328,10 +109047,17 @@ "canonical_id": "game_mlb_2026_20260905_chc_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-05T20:10:00Z", + "date": "2026-09-05", + "time": "4:10p", + "home_team": "Miami Marlins", + "away_team": "Chicago Cubs", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_chc", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105339,10 +109065,35 @@ "canonical_id": "game_mlb_2026_20260905_atl_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-05T22:05:00Z", + "date": "2026-09-05", + "time": "6:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Atlanta Braves", + "home_team_abbrev": "PHI", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_atl", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260905_ang_rgn", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-05", + "time": "6:30p", + "home_team": "Louisville Racing Louisville", + "away_team": "Los Angeles Angel City FC", + "home_team_abbrev": "RGN", + "away_team_abbrev": "ANG", + "home_team_canonical_id": "team_nwsl_rgn", + "away_team_canonical_id": "team_nwsl_ang", + "venue": "Lynn Family Stadium", + "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -105350,10 +109101,17 @@ "canonical_id": "game_mlb_2026_20260905_mil_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-05T22:40:00Z", + "date": "2026-09-05", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "CIN", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_mil", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105361,10 +109119,17 @@ "canonical_id": "game_mlb_2026_20260905_laa_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-05T22:40:00Z", + "date": "2026-09-05", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "PIT", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_laa", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105372,21 +109137,17 @@ "canonical_id": "game_mlb_2026_20260905_tbr_tex_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-05T23:05:00Z", + "date": "2026-09-05", + "time": "6:05p", + "home_team": "Texas Rangers", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "TEX", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260905_tor_kc_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-05T23:10:00Z", - "home_team_canonical_id": "team_mlb_kc", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105394,32 +109155,35 @@ "canonical_id": "game_mlb_2026_20260905_min_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-05T23:10:00Z", + "date": "2026-09-05", + "time": "6:10p", + "home_team": "Chicago White Sox", + "away_team": "Minnesota Twins", + "home_team_abbrev": "CHW", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_min", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260905_det_cle", + "canonical_id": "game_mlb_2026_20260905_tor_kc_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-05T23:15:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_det", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260905_bos_bal", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-05T23:15:00Z", - "home_team_canonical_id": "team_mlb_bal", - "away_team_canonical_id": "team_mlb_bos", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "date": "2026-09-05", + "time": "6:10p", + "home_team": "Kansas City Royals", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "KC", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_kc", + "away_team_canonical_id": "team_mlb_tor", + "venue": "Kauffman Stadium", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105427,10 +109191,179 @@ "canonical_id": "game_mlb_2026_20260905_ari_hou_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-05T23:15:00Z", + "date": "2026-09-05", + "time": "6:15p", + "home_team": "Houston Astros", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "HOU", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_ari", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260905_det_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "7:15p", + "home_team": "Cleveland Guardians", + "away_team": "Detroit Tigers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "DET", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_det", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260905_bos_bal", + "sport": "MLB", + "season": "2026", + "date": "2026-09-05", + "time": "7:15p", + "home_team": "Baltimore Orioles", + "away_team": "Boston Red Sox", + "home_team_abbrev": "BAL", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_mlb_bal", + "away_team_canonical_id": "team_mlb_bos", + "venue": "Oriole Park at Camden Yards", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260905_hou_clt", + "sport": "MLS", + "season": "2026", + "date": "2026-09-05", + "time": "7:30p", + "home_team": "Charlotte Charlotte FC", + "away_team": "Houston Houston Dynamo", + "home_team_abbrev": "CLT", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mls_clt", + "away_team_canonical_id": "team_mls_hou", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260905_chi_tor", + "sport": "MLS", + "season": "2026", + "date": "2026-09-05", + "time": "7:30p", + "home_team": "Toronto Toronto FC", + "away_team": "Chicago Chicago Fire", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_mls_tor", + "away_team_canonical_id": "team_mls_chi", + "venue": "BMO Field", + "stadium_canonical_id": "stadium_mls_bmo_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260905_col_clb", + "sport": "MLS", + "season": "2026", + "date": "2026-09-05", + "time": "7:30p", + "home_team": "Columbus Columbus Crew", + "away_team": "Colorado Colorado Rapids", + "home_team_abbrev": "CLB", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mls_clb", + "away_team_canonical_id": "team_mls_col", + "venue": "Lower.com Field", + "stadium_canonical_id": "stadium_mls_lowercom_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260905_dc_cin", + "sport": "MLS", + "season": "2026", + "date": "2026-09-05", + "time": "7:30p", + "home_team": "Cincinnati FC Cincinnati", + "away_team": "Washington D.C. United", + "home_team_abbrev": "CIN", + "away_team_abbrev": "DC", + "home_team_canonical_id": "team_mls_cin", + "away_team_canonical_id": "team_mls_dc", + "venue": "TQL Stadium", + "stadium_canonical_id": "stadium_mls_tql_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260905_atl_mia", + "sport": "MLS", + "season": "2026", + "date": "2026-09-05", + "time": "7:30p", + "home_team": "Miami Inter Miami", + "away_team": "Atlanta Atlanta United", + "home_team_abbrev": "MIA", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mls_mia", + "away_team_canonical_id": "team_mls_atl", + "venue": "Miami Freedom Park", + "stadium_canonical_id": "stadium_mls_miami_freedom_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260905_mtl_phi", + "sport": "MLS", + "season": "2026", + "date": "2026-09-05", + "time": "7:30p", + "home_team": "Philadelphia Philadelphia Union", + "away_team": "Montreal CF Montreal", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_mls_phi", + "away_team_canonical_id": "team_mls_mtl", + "venue": "Subaru Park", + "stadium_canonical_id": "stadium_mls_subaru_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260905_sd_orl", + "sport": "MLS", + "season": "2026", + "date": "2026-09-05", + "time": "7:30p", + "home_team": "Orlando Orlando City", + "away_team": "San Diego San Diego FC", + "home_team_abbrev": "ORL", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mls_orl", + "away_team_canonical_id": "team_mls_sd", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -105438,10 +109371,71 @@ "canonical_id": "game_mlb_2026_20260906_stl_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-06T00:10:00Z", + "date": "2026-09-05", + "time": "6:10p", + "home_team": "Colorado Rockies", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "COL", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_stl", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260906_sj_aus", + "sport": "MLS", + "season": "2026", + "date": "2026-09-05", + "time": "7:30p", + "home_team": "Austin Austin FC", + "away_team": "San Jose San Jose Earthquakes", + "home_team_abbrev": "AUS", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_mls_aus", + "away_team_canonical_id": "team_mls_sj", + "venue": "Q2 Stadium", + "stadium_canonical_id": "stadium_mls_q2_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260906_skc_dal", + "sport": "MLS", + "season": "2026", + "date": "2026-09-05", + "time": "7:30p", + "home_team": "Dallas FC Dallas", + "away_team": "Kansas City Sporting Kansas City", + "home_team_abbrev": "DAL", + "away_team_abbrev": "SKC", + "home_team_canonical_id": "team_mls_dal", + "away_team_canonical_id": "team_mls_skc", + "venue": "Toyota Stadium", + "stadium_canonical_id": "stadium_mls_toyota_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260906_ny_sea", + "sport": "MLS", + "season": "2026", + "date": "2026-09-05", + "time": "5:30p", + "home_team": "Seattle Seattle Sounders", + "away_team": "New York New York Red Bulls", + "home_team_abbrev": "SEA", + "away_team_abbrev": "RB", + "home_team_canonical_id": "team_mls_sea", + "away_team_canonical_id": "team_mls_ny", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_mls_lumen_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -105449,10 +109443,17 @@ "canonical_id": "game_mlb_2026_20260906_nyy_sd_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-06T00:40:00Z", + "date": "2026-09-05", + "time": "5:40p", + "home_team": "San Diego Padres", + "away_team": "New York Yankees", + "home_team_abbrev": "SD", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105460,10 +109461,53 @@ "canonical_id": "game_mlb_2026_20260906_wsn_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-06T01:10:00Z", + "date": "2026-09-05", + "time": "6:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Washington Nationals", + "home_team_abbrev": "LAD", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260906_ne_lag", + "sport": "MLS", + "season": "2026", + "date": "2026-09-05", + "time": "6:30p", + "home_team": "Los Angeles LA Galaxy", + "away_team": "New England New England Revolution", + "home_team_abbrev": "LAG", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_mls_lag", + "away_team_canonical_id": "team_mls_ne", + "venue": "Dignity Health Sports Park", + "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260906_lafc_slc", + "sport": "MLS", + "season": "2026", + "date": "2026-09-05", + "time": "7:30p", + "home_team": "Salt Lake Real Salt Lake", + "away_team": "Los Angeles Los Angeles FC", + "home_team_abbrev": "SLC", + "away_team_abbrev": "LAFC", + "home_team_canonical_id": "team_mls_slc", + "away_team_canonical_id": "team_mls_lafc", + "venue": "America First Field", + "stadium_canonical_id": "stadium_mls_america_first_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -105471,10 +109515,53 @@ "canonical_id": "game_mlb_2026_20260906_oak_sea_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-06T01:40:00Z", + "date": "2026-09-05", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Oakland Athletics", + "home_team_abbrev": "SEA", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260906_min_por", + "sport": "MLS", + "season": "2026", + "date": "2026-09-05", + "time": "7:30p", + "home_team": "Portland Portland Timbers", + "away_team": "Minnesota Minnesota United", + "home_team_abbrev": "POR", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mls_por", + "away_team_canonical_id": "team_mls_min", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_mls_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260906_stl_van", + "sport": "MLS", + "season": "2026", + "date": "2026-09-05", + "time": "7:30p", + "home_team": "Vancouver Vancouver Whitecaps", + "away_team": "St. Louis St. Louis City SC", + "home_team_abbrev": "VAN", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mls_van", + "away_team_canonical_id": "team_mls_stl", + "venue": "BC Place", + "stadium_canonical_id": "stadium_mls_bc_place", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -105482,21 +109569,17 @@ "canonical_id": "game_mlb_2026_20260906_mil_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-06T16:10:00Z", + "date": "2026-09-06", + "time": "12:10p", + "home_team": "Cincinnati Reds", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "CIN", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_mil", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260906_laa_pit", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-06T17:35:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105504,21 +109587,35 @@ "canonical_id": "game_mlb_2026_20260906_bos_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-06T17:35:00Z", + "date": "2026-09-06", + "time": "1:35p", + "home_team": "Baltimore Orioles", + "away_team": "Boston Red Sox", + "home_team_abbrev": "BAL", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_bos", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260906_sf_nym", + "canonical_id": "game_mlb_2026_20260906_laa_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-06T17:40:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_citi_field", + "date": "2026-09-06", + "time": "1:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "PIT", + "away_team_abbrev": "LAA", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_laa", + "venue": "PNC Park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105526,10 +109623,17 @@ "canonical_id": "game_mlb_2026_20260906_det_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-06T17:40:00Z", + "date": "2026-09-06", + "time": "1:40p", + "home_team": "Cleveland Guardians", + "away_team": "Detroit Tigers", + "home_team_abbrev": "CLE", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_det", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105537,10 +109641,53 @@ "canonical_id": "game_mlb_2026_20260906_chc_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-06T17:40:00Z", + "date": "2026-09-06", + "time": "1:40p", + "home_team": "Miami Marlins", + "away_team": "Chicago Cubs", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_chc", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260906_sf_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "1:40p", + "home_team": "New York Mets", + "away_team": "San Francisco Giants", + "home_team_abbrev": "NYM", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260906_njy_den", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-06", + "time": "12p", + "home_team": "Denver Denver Summit FC", + "away_team": "New Jersey NJ/NY Gotham FC", + "home_team_abbrev": "DEN", + "away_team_abbrev": "NJY", + "home_team_canonical_id": "team_nwsl_den", + "away_team_canonical_id": "team_nwsl_njy", + "venue": "Centennial Stadium", + "stadium_canonical_id": "stadium_nwsl_centennial_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -105548,10 +109695,17 @@ "canonical_id": "game_mlb_2026_20260906_min_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-06T18:10:00Z", + "date": "2026-09-06", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Minnesota Twins", + "home_team_abbrev": "CHW", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_min", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105559,10 +109713,17 @@ "canonical_id": "game_mlb_2026_20260906_ari_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-06T18:10:00Z", + "date": "2026-09-06", + "time": "1:10p", + "home_team": "Houston Astros", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "HOU", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_ari", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105570,10 +109731,17 @@ "canonical_id": "game_mlb_2026_20260906_tbr_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-06T18:35:00Z", + "date": "2026-09-06", + "time": "1:35p", + "home_team": "Texas Rangers", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "TEX", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_tex", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105581,10 +109749,17 @@ "canonical_id": "game_mlb_2026_20260906_stl_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-06T19:10:00Z", + "date": "2026-09-06", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "COL", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_stl", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105592,21 +109767,53 @@ "canonical_id": "game_mlb_2026_20260906_atl_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-06T19:10:00Z", + "date": "2026-09-06", + "time": "3:10p", + "home_team": "Philadelphia Phillies", + "away_team": "Atlanta Braves", + "home_team_abbrev": "PHI", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_atl", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260906_oak_sea_2", - "sport": "MLB", + "canonical_id": "game_nwsl_2026_20260906_wsh_por", + "sport": "NWSL", "season": "2026", - "game_datetime_utc": "2026-09-06T20:10:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "date": "2026-09-06", + "time": "1p", + "home_team": "Portland Portland Thorns", + "away_team": "Washington Washington Spirit", + "home_team_abbrev": "POR", + "away_team_abbrev": "WSH", + "home_team_canonical_id": "team_nwsl_por", + "away_team_canonical_id": "team_nwsl_wsh", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_nwsl_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260906_ncc_chi", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-06", + "time": "3p", + "home_team": "Chicago Chicago Red Stars", + "away_team": "North Carolina North Carolina Courage", + "home_team_abbrev": "CHI", + "away_team_abbrev": "NCC", + "home_team_canonical_id": "team_nwsl_chi", + "away_team_canonical_id": "team_nwsl_ncc", + "venue": "Northwestern Medicine Field at Martin Stadium", + "stadium_canonical_id": "stadium_nwsl_northwestern_medicine_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -105614,10 +109821,53 @@ "canonical_id": "game_mlb_2026_20260906_nyy_sd_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-06T20:10:00Z", + "date": "2026-09-06", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "New York Yankees", + "home_team_abbrev": "SD", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260906_oak_sea_2", + "sport": "MLB", + "season": "2026", + "date": "2026-09-06", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Oakland Athletics", + "home_team_abbrev": "SEA", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_oak", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260906_hou_orl", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-06", + "time": "7p", + "home_team": "Orlando Orlando Pride", + "away_team": "Houston Houston Dash", + "home_team_abbrev": "ORL", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nwsl_orl", + "away_team_canonical_id": "team_nwsl_hou", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -105625,10 +109875,35 @@ "canonical_id": "game_mlb_2026_20260906_tor_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-06T23:20:00Z", + "date": "2026-09-06", + "time": "6:20p", + "home_team": "Kansas City Royals", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "KC", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_tor", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260907_sdw_sea", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-06", + "time": "6p", + "home_team": "Seattle Seattle Reign", + "away_team": "San Diego San Diego Wave", + "home_team_abbrev": "SEA", + "away_team_abbrev": "SDW", + "home_team_canonical_id": "team_nwsl_sea", + "away_team_canonical_id": "team_nwsl_sdw", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_nwsl_lumen_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -105636,10 +109911,17 @@ "canonical_id": "game_mlb_2026_20260907_wsn_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-07T02:10:00Z", + "date": "2026-09-06", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Washington Nationals", + "home_team_abbrev": "LAD", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105647,10 +109929,17 @@ "canonical_id": "game_mlb_2026_20260907_atl_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-07T17:05:00Z", + "date": "2026-09-07", + "time": "1:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Atlanta Braves", + "home_team_abbrev": "PHI", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_atl", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105658,10 +109947,17 @@ "canonical_id": "game_mlb_2026_20260907_nym_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-07T17:10:00Z", + "date": "2026-09-07", + "time": "1:10p", + "home_team": "Miami Marlins", + "away_team": "New York Mets", + "home_team_abbrev": "MIA", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_nym", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105669,21 +109965,17 @@ "canonical_id": "game_mlb_2026_20260907_min_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-07T17:10:00Z", + "date": "2026-09-07", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Minnesota Twins", + "home_team_abbrev": "DET", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_min", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260907_laa_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-07T17:35:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105691,21 +109983,35 @@ "canonical_id": "game_mlb_2026_20260907_cle_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-07T17:35:00Z", + "date": "2026-09-07", + "time": "1:35p", + "home_team": "Baltimore Orioles", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "BAL", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_cle", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260907_chc_mil", + "canonical_id": "game_mlb_2026_20260907_laa_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-07T18:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "date": "2026-09-07", + "time": "1:35p", + "home_team": "Boston Red Sox", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "BOS", + "away_team_abbrev": "LAA", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_laa", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105713,10 +110019,35 @@ "canonical_id": "game_mlb_2026_20260907_ari_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-07T18:10:00Z", + "date": "2026-09-07", + "time": "1:10p", + "home_team": "Kansas City Royals", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "KC", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_ari", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260907_chc_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-07", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Chicago Cubs", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CHC", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chc", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105724,10 +110055,17 @@ "canonical_id": "game_mlb_2026_20260907_wsn_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-07T21:10:00Z", + "date": "2026-09-07", + "time": "2:10p", + "home_team": "San Diego Padres", + "away_team": "Washington Nationals", + "home_team_abbrev": "SD", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105735,10 +110073,17 @@ "canonical_id": "game_mlb_2026_20260908_stl_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-08T00:10:00Z", + "date": "2026-09-07", + "time": "5:10p", + "home_team": "San Francisco Giants", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "SF", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_stl", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105746,10 +110091,17 @@ "canonical_id": "game_mlb_2026_20260908_cin_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-08T01:10:00Z", + "date": "2026-09-07", + "time": "6:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "LAD", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_cin", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105757,10 +110109,17 @@ "canonical_id": "game_mlb_2026_20260908_tor_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-08T02:05:00Z", + "date": "2026-09-07", + "time": "7:05p", + "home_team": "Oakland Athletics", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "OAK", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_tor", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105768,32 +110127,17 @@ "canonical_id": "game_mlb_2026_20260908_cle_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-08T22:35:00Z", + "date": "2026-09-08", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "BAL", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_cle", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260908_nym_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-08T22:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260908_min_det", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-08T22:40:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_min", - "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105801,10 +110145,53 @@ "canonical_id": "game_mlb_2026_20260908_hou_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-08T22:40:00Z", + "date": "2026-09-08", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Houston Astros", + "home_team_abbrev": "PHI", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_hou", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260908_min_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Minnesota Twins", + "home_team_abbrev": "DET", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_min", + "venue": "Comerica Park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260908_nym_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "New York Mets", + "home_team_abbrev": "MIA", + "away_team_abbrev": "NYM", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_nym", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105812,10 +110199,17 @@ "canonical_id": "game_mlb_2026_20260908_laa_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-08T22:45:00Z", + "date": "2026-09-08", + "time": "6:45p", + "home_team": "Boston Red Sox", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "BOS", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_laa", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105823,10 +110217,17 @@ "canonical_id": "game_mlb_2026_20260908_col_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-08T23:05:00Z", + "date": "2026-09-08", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Colorado Rockies", + "home_team_abbrev": "NYY", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_col", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105834,21 +110235,17 @@ "canonical_id": "game_mlb_2026_20260908_tbr_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-08T23:15:00Z", + "date": "2026-09-08", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "ATL", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260908_pit_chw", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-08T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105856,10 +110253,17 @@ "canonical_id": "game_mlb_2026_20260908_chc_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-08T23:40:00Z", + "date": "2026-09-08", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Chicago Cubs", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_chc", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105867,10 +110271,35 @@ "canonical_id": "game_mlb_2026_20260908_ari_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-08T23:40:00Z", + "date": "2026-09-08", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "KC", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_ari", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260908_pit_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "CHW", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_pit", + "venue": "Guaranteed Rate Field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105878,21 +110307,17 @@ "canonical_id": "game_mlb_2026_20260909_wsn_sd_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-09T01:40:00Z", + "date": "2026-09-08", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Washington Nationals", + "home_team_abbrev": "SD", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260909_tor_oak_1", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-09T01:40:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_tor", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105900,10 +110325,35 @@ "canonical_id": "game_mlb_2026_20260909_tex_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-09T01:40:00Z", + "date": "2026-09-08", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Texas Rangers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260909_tor_oak_1", + "sport": "MLB", + "season": "2026", + "date": "2026-09-08", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "OAK", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_tor", + "venue": "Sutter Health Park", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105911,10 +110361,17 @@ "canonical_id": "game_mlb_2026_20260909_stl_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-09T01:45:00Z", + "date": "2026-09-08", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "SF", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_stl", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105922,10 +110379,17 @@ "canonical_id": "game_mlb_2026_20260909_cin_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-09T02:10:00Z", + "date": "2026-09-08", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "LAD", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_cin", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105933,10 +110397,17 @@ "canonical_id": "game_mlb_2026_20260909_min_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-09T17:10:00Z", + "date": "2026-09-09", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Minnesota Twins", + "home_team_abbrev": "DET", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_min", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105944,10 +110415,17 @@ "canonical_id": "game_mlb_2026_20260909_tor_oak_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-09T19:05:00Z", + "date": "2026-09-09", + "time": "12:05p", + "home_team": "Oakland Athletics", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "OAK", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_tor", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105955,10 +110433,17 @@ "canonical_id": "game_mlb_2026_20260909_stl_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-09T19:45:00Z", + "date": "2026-09-09", + "time": "12:45p", + "home_team": "San Francisco Giants", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "SF", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_stl", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105966,10 +110451,17 @@ "canonical_id": "game_mlb_2026_20260909_wsn_sd_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-09T20:10:00Z", + "date": "2026-09-09", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Washington Nationals", + "home_team_abbrev": "SD", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105977,10 +110469,17 @@ "canonical_id": "game_mlb_2026_20260909_cle_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-09T22:35:00Z", + "date": "2026-09-09", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "BAL", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_cle", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105988,10 +110487,17 @@ "canonical_id": "game_mlb_2026_20260909_nym_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-09T22:40:00Z", + "date": "2026-09-09", + "time": "6:40p", + "home_team": "Miami Marlins", + "away_team": "New York Mets", + "home_team_abbrev": "MIA", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_nym", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -105999,10 +110505,17 @@ "canonical_id": "game_mlb_2026_20260909_hou_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-09T22:40:00Z", + "date": "2026-09-09", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Houston Astros", + "home_team_abbrev": "PHI", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_hou", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106010,10 +110523,17 @@ "canonical_id": "game_mlb_2026_20260909_laa_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-09T22:45:00Z", + "date": "2026-09-09", + "time": "6:45p", + "home_team": "Boston Red Sox", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "BOS", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_laa", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106021,10 +110541,17 @@ "canonical_id": "game_mlb_2026_20260909_col_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-09T23:05:00Z", + "date": "2026-09-09", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Colorado Rockies", + "home_team_abbrev": "NYY", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_col", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106032,10 +110559,125 @@ "canonical_id": "game_mlb_2026_20260909_tbr_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-09T23:15:00Z", + "date": "2026-09-09", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "ATL", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260909_orl_atl", + "sport": "MLS", + "season": "2026", + "date": "2026-09-09", + "time": "7:30p", + "home_team": "Atlanta Atlanta United", + "away_team": "Orlando Orlando City", + "home_team_abbrev": "ATL", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_mls_atl", + "away_team_canonical_id": "team_mls_orl", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260909_nsh_tor", + "sport": "MLS", + "season": "2026", + "date": "2026-09-09", + "time": "7:30p", + "home_team": "Toronto Toronto FC", + "away_team": "Nashville Nashville SC", + "home_team_abbrev": "TOR", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_mls_tor", + "away_team_canonical_id": "team_mls_nsh", + "venue": "BMO Field", + "stadium_canonical_id": "stadium_mls_bmo_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260909_clt_mtl", + "sport": "MLS", + "season": "2026", + "date": "2026-09-09", + "time": "7:30p", + "home_team": "Montreal CF Montreal", + "away_team": "Charlotte Charlotte FC", + "home_team_abbrev": "MTL", + "away_team_abbrev": "CLT", + "home_team_canonical_id": "team_mls_mtl", + "away_team_canonical_id": "team_mls_clt", + "venue": "Stade Saputo", + "stadium_canonical_id": "stadium_mls_stade_saputo", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260909_clb_dc", + "sport": "MLS", + "season": "2026", + "date": "2026-09-09", + "time": "7:30p", + "home_team": "Washington D.C. United", + "away_team": "Columbus Columbus Crew", + "home_team_abbrev": "DC", + "away_team_abbrev": "CLB", + "home_team_canonical_id": "team_mls_dc", + "away_team_canonical_id": "team_mls_clb", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_mls_audi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260909_ne_nyc", + "sport": "MLS", + "season": "2026", + "date": "2026-09-09", + "time": "7:30p", + "home_team": "New York New York City FC", + "away_team": "New England New England Revolution", + "home_team_abbrev": "NYC", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_mls_nyc", + "away_team_canonical_id": "team_mls_ne", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mls_citi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260909_cin_phi", + "sport": "MLS", + "season": "2026", + "date": "2026-09-09", + "time": "7:30p", + "home_team": "Philadelphia Philadelphia Union", + "away_team": "Cincinnati FC Cincinnati", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mls_phi", + "away_team_canonical_id": "team_mls_cin", + "venue": "Subaru Park", + "stadium_canonical_id": "stadium_mls_subaru_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -106043,21 +110685,17 @@ "canonical_id": "game_mlb_2026_20260909_pit_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-09T23:40:00Z", + "date": "2026-09-09", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "CHW", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_pit", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260909_chc_mil", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-09T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106065,10 +110703,107 @@ "canonical_id": "game_mlb_2026_20260909_ari_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-09T23:40:00Z", + "date": "2026-09-09", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "KC", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_ari", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260909_chc_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-09", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Chicago Cubs", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CHC", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_chc", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260910_dal_min", + "sport": "MLS", + "season": "2026", + "date": "2026-09-09", + "time": "7:30p", + "home_team": "Minnesota Minnesota United", + "away_team": "Dallas FC Dallas", + "home_team_abbrev": "MIN", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_mls_min", + "away_team_canonical_id": "team_mls_dal", + "venue": "Allianz Field", + "stadium_canonical_id": "stadium_mls_allianz_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260910_col_aus", + "sport": "MLS", + "season": "2026", + "date": "2026-09-09", + "time": "7:30p", + "home_team": "Austin Austin FC", + "away_team": "Colorado Colorado Rapids", + "home_team_abbrev": "AUS", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mls_aus", + "away_team_canonical_id": "team_mls_col", + "venue": "Q2 Stadium", + "stadium_canonical_id": "stadium_mls_q2_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260910_mia_chi", + "sport": "MLS", + "season": "2026", + "date": "2026-09-09", + "time": "7:30p", + "home_team": "Chicago Chicago Fire", + "away_team": "Miami Inter Miami", + "home_team_abbrev": "CHI", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mls_chi", + "away_team_canonical_id": "team_mls_mia", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_mls_soldier_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260910_slc_hou", + "sport": "MLS", + "season": "2026", + "date": "2026-09-09", + "time": "7:30p", + "home_team": "Houston Houston Dynamo", + "away_team": "Salt Lake Real Salt Lake", + "home_team_abbrev": "HOU", + "away_team_abbrev": "SLC", + "home_team_canonical_id": "team_mls_hou", + "away_team_canonical_id": "team_mls_slc", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_mls_shell_energy_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -106076,10 +110811,17 @@ "canonical_id": "game_mlb_2026_20260910_tex_sea_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-10T01:40:00Z", + "date": "2026-09-09", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Texas Rangers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106087,10 +110829,107 @@ "canonical_id": "game_mlb_2026_20260910_cin_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-10T02:10:00Z", + "date": "2026-09-09", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "LAD", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_cin", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260910_ny_lafc", + "sport": "MLS", + "season": "2026", + "date": "2026-09-09", + "time": "7:30p", + "home_team": "Los Angeles Los Angeles FC", + "away_team": "New York New York Red Bulls", + "home_team_abbrev": "LAFC", + "away_team_abbrev": "RB", + "home_team_canonical_id": "team_mls_lafc", + "away_team_canonical_id": "team_mls_ny", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260910_stl_por", + "sport": "MLS", + "season": "2026", + "date": "2026-09-09", + "time": "7:30p", + "home_team": "Portland Portland Timbers", + "away_team": "St. Louis St. Louis City SC", + "home_team_abbrev": "POR", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mls_por", + "away_team_canonical_id": "team_mls_stl", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_mls_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260910_sj_sd", + "sport": "MLS", + "season": "2026", + "date": "2026-09-09", + "time": "7:30p", + "home_team": "San Diego San Diego FC", + "away_team": "San Jose San Jose Earthquakes", + "home_team_abbrev": "SD", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_mls_sd", + "away_team_canonical_id": "team_mls_sj", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260910_skc_sea", + "sport": "MLS", + "season": "2026", + "date": "2026-09-09", + "time": "7:30p", + "home_team": "Seattle Seattle Sounders", + "away_team": "Kansas City Sporting Kansas City", + "home_team_abbrev": "SEA", + "away_team_abbrev": "SKC", + "home_team_canonical_id": "team_mls_sea", + "away_team_canonical_id": "team_mls_skc", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_mls_lumen_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260910_lag_van", + "sport": "MLS", + "season": "2026", + "date": "2026-09-09", + "time": "7:30p", + "home_team": "Vancouver Vancouver Whitecaps", + "away_team": "Los Angeles LA Galaxy", + "home_team_abbrev": "VAN", + "away_team_abbrev": "LAG", + "home_team_canonical_id": "team_mls_van", + "away_team_canonical_id": "team_mls_lag", + "venue": "BC Place", + "stadium_canonical_id": "stadium_mls_bc_place", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -106098,10 +110937,17 @@ "canonical_id": "game_mlb_2026_20260910_tbr_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-10T16:15:00Z", + "date": "2026-09-10", + "time": "12:15p", + "home_team": "Atlanta Braves", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "ATL", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106109,10 +110955,17 @@ "canonical_id": "game_mlb_2026_20260910_hou_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-10T17:05:00Z", + "date": "2026-09-10", + "time": "1:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Houston Astros", + "home_team_abbrev": "PHI", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_hou", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106120,10 +110973,17 @@ "canonical_id": "game_mlb_2026_20260910_tex_sea_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-10T20:10:00Z", + "date": "2026-09-10", + "time": "1:10p", + "home_team": "Seattle Mariners", + "away_team": "Texas Rangers", + "home_team_abbrev": "SEA", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106131,10 +110991,17 @@ "canonical_id": "game_mlb_2026_20260910_col_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-10T23:05:00Z", + "date": "2026-09-10", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Colorado Rockies", + "home_team_abbrev": "NYY", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_col", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106142,10 +111009,17 @@ "canonical_id": "game_mlb_2026_20260910_pit_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-10T23:40:00Z", + "date": "2026-09-10", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "CHW", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_pit", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106153,10 +111027,35 @@ "canonical_id": "game_mlb_2026_20260911_pit_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-11T18:20:00Z", + "date": "2026-09-11", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "CHC", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_pit", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260911_njy_rgn", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-11", + "time": "6:30p", + "home_team": "Louisville Racing Louisville", + "away_team": "New Jersey NJ/NY Gotham FC", + "home_team_abbrev": "RGN", + "away_team_abbrev": "NJY", + "home_team_canonical_id": "team_nwsl_rgn", + "away_team_canonical_id": "team_nwsl_njy", + "venue": "Lynn Family Stadium", + "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -106164,10 +111063,17 @@ "canonical_id": "game_mlb_2026_20260911_col_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-11T22:40:00Z", + "date": "2026-09-11", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Colorado Rockies", + "home_team_abbrev": "DET", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_col", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106175,10 +111081,17 @@ "canonical_id": "game_mlb_2026_20260911_laa_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-11T22:45:00Z", + "date": "2026-09-11", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "WSN", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_laa", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106186,10 +111099,17 @@ "canonical_id": "game_mlb_2026_20260911_nym_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-11T23:05:00Z", + "date": "2026-09-11", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "New York Mets", + "home_team_abbrev": "NYY", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_nym", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106197,10 +111117,17 @@ "canonical_id": "game_mlb_2026_20260911_bal_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-11T23:07:00Z", + "date": "2026-09-11", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_bal", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106208,21 +111135,17 @@ "canonical_id": "game_mlb_2026_20260911_lad_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-11T23:10:00Z", + "date": "2026-09-11", + "time": "7:10p", + "home_team": "Miami Marlins", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "MIA", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_lad", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260911_kc_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-11T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106230,10 +111153,35 @@ "canonical_id": "game_mlb_2026_20260911_hou_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-11T23:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-09-11", + "time": "7:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Houston Astros", + "home_team_abbrev": "TB", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_hou", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260911_kc_bos", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Kansas City Royals", + "home_team_abbrev": "BOS", + "away_team_abbrev": "KC", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_kc", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106241,10 +111189,17 @@ "canonical_id": "game_mlb_2026_20260911_phi_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-11T23:15:00Z", + "date": "2026-09-11", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "ATL", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_phi", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106252,10 +111207,35 @@ "canonical_id": "game_mlb_2026_20260911_cin_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-11T23:40:00Z", + "date": "2026-09-11", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_cin", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260912_orl_kcc", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-11", + "time": "7p", + "home_team": "Kansas City Kansas City Current", + "away_team": "Orlando Orlando Pride", + "home_team_abbrev": "KCC", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nwsl_kcc", + "away_team_canonical_id": "team_nwsl_orl", + "venue": "CPKC Stadium", + "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -106263,10 +111243,17 @@ "canonical_id": "game_mlb_2026_20260912_cle_min_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-12T00:10:00Z", + "date": "2026-09-11", + "time": "7:10p", + "home_team": "Minnesota Twins", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_cle", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106274,21 +111261,35 @@ "canonical_id": "game_mlb_2026_20260912_chw_stl_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-12T00:15:00Z", + "date": "2026-09-11", + "time": "7:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Chicago White Sox", + "home_team_abbrev": "STL", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_chw", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260912_tex_ari", - "sport": "MLB", + "canonical_id": "game_nwsl_2026_20260912_bay_sea", + "sport": "NWSL", "season": "2026", - "game_datetime_utc": "2026-09-12T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_chase_field", + "date": "2026-09-11", + "time": "5:30p", + "home_team": "Seattle Seattle Reign", + "away_team": "San Francisco Bay FC", + "home_team_abbrev": "SEA", + "away_team_abbrev": "BAY", + "home_team_canonical_id": "team_nwsl_sea", + "away_team_canonical_id": "team_nwsl_bay", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_nwsl_lumen_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -106296,10 +111297,53 @@ "canonical_id": "game_mlb_2026_20260912_sea_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-12T01:40:00Z", + "date": "2026-09-11", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Seattle Mariners", + "home_team_abbrev": "OAK", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_sea", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260912_tex_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-11", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Texas Rangers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Chase Field", + "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260912_den_ang", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-11", + "time": "7p", + "home_team": "Los Angeles Angel City FC", + "away_team": "Denver Denver Summit FC", + "home_team_abbrev": "ANG", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nwsl_ang", + "away_team_canonical_id": "team_nwsl_den", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_nwsl_bmo_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -106307,10 +111351,17 @@ "canonical_id": "game_mlb_2026_20260912_sd_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-12T02:15:00Z", + "date": "2026-09-11", + "time": "7:15p", + "home_team": "San Francisco Giants", + "away_team": "San Diego Padres", + "home_team_abbrev": "SF", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_sd", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106318,10 +111369,17 @@ "canonical_id": "game_mlb_2026_20260912_col_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-12T17:10:00Z", + "date": "2026-09-12", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Colorado Rockies", + "home_team_abbrev": "DET", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_col", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106329,10 +111387,17 @@ "canonical_id": "game_mlb_2026_20260912_nym_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-12T17:35:00Z", + "date": "2026-09-12", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "New York Mets", + "home_team_abbrev": "NYY", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_nym", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106340,10 +111405,17 @@ "canonical_id": "game_mlb_2026_20260912_pit_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-12T18:20:00Z", + "date": "2026-09-12", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "CHC", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_pit", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106351,10 +111423,17 @@ "canonical_id": "game_mlb_2026_20260912_bal_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-12T19:07:00Z", + "date": "2026-09-12", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_bal", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106362,10 +111441,17 @@ "canonical_id": "game_mlb_2026_20260912_sd_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-12T20:05:00Z", + "date": "2026-09-12", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "San Diego Padres", + "home_team_abbrev": "SF", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_sd", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106373,10 +111459,17 @@ "canonical_id": "game_mlb_2026_20260912_laa_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-12T20:05:00Z", + "date": "2026-09-12", + "time": "4:05p", + "home_team": "Washington Nationals", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "WSN", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_laa", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106384,10 +111477,17 @@ "canonical_id": "game_mlb_2026_20260912_lad_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-12T20:10:00Z", + "date": "2026-09-12", + "time": "4:10p", + "home_team": "Miami Marlins", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "MIA", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_lad", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106395,10 +111495,17 @@ "canonical_id": "game_mlb_2026_20260912_kc_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-12T20:10:00Z", + "date": "2026-09-12", + "time": "4:10p", + "home_team": "Boston Red Sox", + "away_team": "Kansas City Royals", + "home_team_abbrev": "BOS", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_kc", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106406,10 +111513,17 @@ "canonical_id": "game_mlb_2026_20260912_cle_min_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-12T20:10:00Z", + "date": "2026-09-12", + "time": "3:10p", + "home_team": "Minnesota Twins", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_cle", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106417,10 +111531,35 @@ "canonical_id": "game_mlb_2026_20260912_hou_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-12T22:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-09-12", + "time": "6:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Houston Astros", + "home_team_abbrev": "TB", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_hou", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260912_ncc_sdw", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-12", + "time": "3:30p", + "home_team": "San Diego San Diego Wave", + "away_team": "North Carolina North Carolina Courage", + "home_team_abbrev": "SDW", + "away_team_abbrev": "NCC", + "home_team_canonical_id": "team_nwsl_sdw", + "away_team_canonical_id": "team_nwsl_ncc", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -106428,10 +111567,17 @@ "canonical_id": "game_mlb_2026_20260912_cin_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-12T23:10:00Z", + "date": "2026-09-12", + "time": "6:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_cin", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106439,10 +111585,17 @@ "canonical_id": "game_mlb_2026_20260912_phi_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-12T23:15:00Z", + "date": "2026-09-12", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "ATL", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_phi", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106450,10 +111603,107 @@ "canonical_id": "game_mlb_2026_20260912_chw_stl_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-12T23:15:00Z", + "date": "2026-09-12", + "time": "6:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Chicago White Sox", + "home_team_abbrev": "STL", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_chw", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260912_ny_clb", + "sport": "MLS", + "season": "2026", + "date": "2026-09-12", + "time": "7:30p", + "home_team": "Columbus Columbus Crew", + "away_team": "New York New York Red Bulls", + "home_team_abbrev": "CLB", + "away_team_abbrev": "RB", + "home_team_canonical_id": "team_mls_clb", + "away_team_canonical_id": "team_mls_ny", + "venue": "Lower.com Field", + "stadium_canonical_id": "stadium_mls_lowercom_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260912_atl_dc", + "sport": "MLS", + "season": "2026", + "date": "2026-09-12", + "time": "7:30p", + "home_team": "Washington D.C. United", + "away_team": "Atlanta Atlanta United", + "home_team_abbrev": "DC", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mls_dc", + "away_team_canonical_id": "team_mls_atl", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_mls_audi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260912_clt_cin", + "sport": "MLS", + "season": "2026", + "date": "2026-09-12", + "time": "7:30p", + "home_team": "Cincinnati FC Cincinnati", + "away_team": "Charlotte Charlotte FC", + "home_team_abbrev": "CIN", + "away_team_abbrev": "CLT", + "home_team_canonical_id": "team_mls_cin", + "away_team_canonical_id": "team_mls_clt", + "venue": "TQL Stadium", + "stadium_canonical_id": "stadium_mls_tql_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260912_nsh_mia", + "sport": "MLS", + "season": "2026", + "date": "2026-09-12", + "time": "7:30p", + "home_team": "Miami Inter Miami", + "away_team": "Nashville Nashville SC", + "home_team_abbrev": "MIA", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_mls_mia", + "away_team_canonical_id": "team_mls_nsh", + "venue": "Miami Freedom Park", + "stadium_canonical_id": "stadium_mls_miami_freedom_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260912_tor_orl", + "sport": "MLS", + "season": "2026", + "date": "2026-09-12", + "time": "7:30p", + "home_team": "Orlando Orlando City", + "away_team": "Toronto Toronto FC", + "home_team_abbrev": "ORL", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mls_orl", + "away_team_canonical_id": "team_mls_tor", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -106461,10 +111711,125 @@ "canonical_id": "game_mlb_2026_20260913_tex_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-13T00:10:00Z", + "date": "2026-09-12", + "time": "5:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Texas Rangers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_tex", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260913_lafc_skc", + "sport": "MLS", + "season": "2026", + "date": "2026-09-12", + "time": "7:30p", + "home_team": "Kansas City Sporting Kansas City", + "away_team": "Los Angeles Los Angeles FC", + "home_team_abbrev": "SKC", + "away_team_abbrev": "LAFC", + "home_team_canonical_id": "team_mls_skc", + "away_team_canonical_id": "team_mls_lafc", + "venue": "Children's Mercy Park", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260913_por_dal", + "sport": "MLS", + "season": "2026", + "date": "2026-09-12", + "time": "7:30p", + "home_team": "Dallas FC Dallas", + "away_team": "Portland Portland Timbers", + "home_team_abbrev": "DAL", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_mls_dal", + "away_team_canonical_id": "team_mls_por", + "venue": "Toyota Stadium", + "stadium_canonical_id": "stadium_mls_toyota_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260913_min_stl", + "sport": "MLS", + "season": "2026", + "date": "2026-09-12", + "time": "7:30p", + "home_team": "St. Louis St. Louis City SC", + "away_team": "Minnesota Minnesota United", + "home_team_abbrev": "STL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mls_stl", + "away_team_canonical_id": "team_mls_min", + "venue": "CITYPARK", + "stadium_canonical_id": "stadium_mls_citypark", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260913_uta_hou", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-12", + "time": "7:45p", + "home_team": "Houston Houston Dash", + "away_team": "Utah Utah Royals", + "home_team_abbrev": "HOU", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nwsl_hou", + "away_team_canonical_id": "team_nwsl_uta", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260913_mtl_col", + "sport": "MLS", + "season": "2026", + "date": "2026-09-12", + "time": "7:30p", + "home_team": "Colorado Colorado Rapids", + "away_team": "Montreal CF Montreal", + "home_team_abbrev": "COL", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_mls_col", + "away_team_canonical_id": "team_mls_mtl", + "venue": "Dick's Sporting Goods Park", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260913_nyc_slc", + "sport": "MLS", + "season": "2026", + "date": "2026-09-12", + "time": "7:30p", + "home_team": "Salt Lake Real Salt Lake", + "away_team": "New York New York City FC", + "home_team_abbrev": "SLC", + "away_team_abbrev": "NYC", + "home_team_canonical_id": "team_mls_slc", + "away_team_canonical_id": "team_mls_nyc", + "venue": "America First Field", + "stadium_canonical_id": "stadium_mls_america_first_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -106472,32 +111837,71 @@ "canonical_id": "game_mlb_2026_20260913_sea_oak_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-13T01:40:00Z", + "date": "2026-09-12", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Seattle Mariners", + "home_team_abbrev": "OAK", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_sea", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260913_phi_atl", - "sport": "MLB", + "canonical_id": "game_mls_2026_20260913_sea_lag", + "sport": "MLS", "season": "2026", - "game_datetime_utc": "2026-09-13T17:35:00Z", - "home_team_canonical_id": "team_mlb_atl", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_truist_park", + "date": "2026-09-12", + "time": "7:30p", + "home_team": "Los Angeles LA Galaxy", + "away_team": "Seattle Seattle Sounders", + "home_team_abbrev": "LAG", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mls_lag", + "away_team_canonical_id": "team_mls_sea", + "venue": "Dignity Health Sports Park", + "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260913_nym_nyy", - "sport": "MLB", + "canonical_id": "game_mls_2026_20260913_hou_sj", + "sport": "MLS", "season": "2026", - "game_datetime_utc": "2026-09-13T17:35:00Z", - "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "date": "2026-09-12", + "time": "7:30p", + "home_team": "San Jose San Jose Earthquakes", + "away_team": "Houston Houston Dynamo", + "home_team_abbrev": "SJ", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mls_sj", + "away_team_canonical_id": "team_mls_hou", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_mls_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260913_bos_wsh", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-13", + "time": "1p", + "home_team": "Washington Washington Spirit", + "away_team": "Boston Boston Legacy FC", + "home_team_abbrev": "WSH", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nwsl_wsh", + "away_team_canonical_id": "team_nwsl_bos", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_nwsl_audi_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -106505,10 +111909,53 @@ "canonical_id": "game_mlb_2026_20260913_laa_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-13T17:35:00Z", + "date": "2026-09-13", + "time": "1:35p", + "home_team": "Washington Nationals", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "WSN", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_laa", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260913_phi_atl", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "1:35p", + "home_team": "Atlanta Braves", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "ATL", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_atl", + "away_team_canonical_id": "team_mlb_phi", + "venue": "Truist Park", + "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260913_nym_nyy", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "1:35p", + "home_team": "New York Yankees", + "away_team": "New York Mets", + "home_team_abbrev": "NYY", + "away_team_abbrev": "NYM", + "home_team_canonical_id": "team_mlb_nyy", + "away_team_canonical_id": "team_mlb_nym", + "venue": "Yankee Stadium", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106516,10 +111963,17 @@ "canonical_id": "game_mlb_2026_20260913_kc_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-13T17:35:00Z", + "date": "2026-09-13", + "time": "1:35p", + "home_team": "Boston Red Sox", + "away_team": "Kansas City Royals", + "home_team_abbrev": "BOS", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_kc", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106527,21 +111981,17 @@ "canonical_id": "game_mlb_2026_20260913_bal_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-13T17:37:00Z", + "date": "2026-09-13", + "time": "1:37p", + "home_team": "Toronto Blue Jays", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "TOR", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_bal", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260913_lad_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-13T17:40:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106549,10 +111999,17 @@ "canonical_id": "game_mlb_2026_20260913_hou_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-13T17:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-09-13", + "time": "1:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Houston Astros", + "home_team_abbrev": "TB", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_hou", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106560,10 +112017,35 @@ "canonical_id": "game_mlb_2026_20260913_col_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-13T17:40:00Z", + "date": "2026-09-13", + "time": "1:40p", + "home_team": "Detroit Tigers", + "away_team": "Colorado Rockies", + "home_team_abbrev": "DET", + "away_team_abbrev": "COL", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_col", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260913_lad_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-13", + "time": "1:40p", + "home_team": "Miami Marlins", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "MIA", + "away_team_abbrev": "LAD", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_lad", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106571,10 +112053,17 @@ "canonical_id": "game_mlb_2026_20260913_cle_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-13T18:10:00Z", + "date": "2026-09-13", + "time": "1:10p", + "home_team": "Minnesota Twins", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "MIN", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_cle", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106582,10 +112071,17 @@ "canonical_id": "game_mlb_2026_20260913_cin_mil", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-13T18:10:00Z", + "date": "2026-09-13", + "time": "1:10p", + "home_team": "Milwaukee Brewers", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "MIL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_mil", "away_team_canonical_id": "team_mlb_cin", + "venue": "American Family Field", "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106593,10 +112089,17 @@ "canonical_id": "game_mlb_2026_20260913_chw_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-13T18:15:00Z", + "date": "2026-09-13", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Chicago White Sox", + "home_team_abbrev": "STL", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_chw", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106604,10 +112107,17 @@ "canonical_id": "game_mlb_2026_20260913_pit_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-13T18:20:00Z", + "date": "2026-09-13", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "CHC", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_pit", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106615,10 +112125,17 @@ "canonical_id": "game_mlb_2026_20260913_sea_oak_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-13T20:05:00Z", + "date": "2026-09-13", + "time": "1:05p", + "home_team": "Oakland Athletics", + "away_team": "Seattle Mariners", + "home_team_abbrev": "OAK", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_sea", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106626,10 +112143,71 @@ "canonical_id": "game_mlb_2026_20260913_tex_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-13T20:10:00Z", + "date": "2026-09-13", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "Texas Rangers", + "home_team_abbrev": "ARI", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_tex", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260913_ne_chi", + "sport": "MLS", + "season": "2026", + "date": "2026-09-13", + "time": "5:30p", + "home_team": "Chicago Chicago Fire", + "away_team": "New England New England Revolution", + "home_team_abbrev": "CHI", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_mls_chi", + "away_team_canonical_id": "team_mls_ne", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_mls_soldier_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260913_aus_van", + "sport": "MLS", + "season": "2026", + "date": "2026-09-13", + "time": "3:30p", + "home_team": "Vancouver Vancouver Whitecaps", + "away_team": "Austin Austin FC", + "home_team_abbrev": "VAN", + "away_team_abbrev": "AUS", + "home_team_canonical_id": "team_mls_van", + "away_team_canonical_id": "team_mls_aus", + "venue": "BC Place", + "stadium_canonical_id": "stadium_mls_bc_place", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260913_chi_por", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-13", + "time": "4p", + "home_team": "Portland Portland Thorns", + "away_team": "Chicago Chicago Red Stars", + "home_team_abbrev": "POR", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nwsl_por", + "away_team_canonical_id": "team_nwsl_chi", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_nwsl_providence_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -106637,10 +112215,35 @@ "canonical_id": "game_mlb_2026_20260913_sd_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-13T23:20:00Z", + "date": "2026-09-13", + "time": "4:20p", + "home_team": "San Francisco Giants", + "away_team": "San Diego Padres", + "home_team_abbrev": "SF", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_sd", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260914_phi_sd", + "sport": "MLS", + "season": "2026", + "date": "2026-09-13", + "time": "6p", + "home_team": "San Diego San Diego FC", + "away_team": "Philadelphia Philadelphia Union", + "home_team_abbrev": "SD", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mls_sd", + "away_team_canonical_id": "team_mls_phi", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -106648,10 +112251,17 @@ "canonical_id": "game_mlb_2026_20260914_lad_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-14T22:40:00Z", + "date": "2026-09-14", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "CIN", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_lad", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106659,10 +112269,17 @@ "canonical_id": "game_mlb_2026_20260914_chw_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-14T22:40:00Z", + "date": "2026-09-14", + "time": "6:40p", + "home_team": "Cleveland Guardians", + "away_team": "Chicago White Sox", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_chw", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106670,10 +112287,17 @@ "canonical_id": "game_mlb_2026_20260914_det_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-14T23:07:00Z", + "date": "2026-09-14", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Detroit Tigers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_det", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106681,21 +112305,17 @@ "canonical_id": "game_mlb_2026_20260914_bal_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-14T23:10:00Z", + "date": "2026-09-14", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "NYM", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_bal", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260914_nyy_min", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-14T23:40:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106703,10 +112323,35 @@ "canonical_id": "game_mlb_2026_20260914_atl_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-14T23:40:00Z", + "date": "2026-09-14", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Atlanta Braves", + "home_team_abbrev": "CHC", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_atl", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260914_nyy_min", + "sport": "MLB", + "season": "2026", + "date": "2026-09-14", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "New York Yankees", + "home_team_abbrev": "MIN", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Target Field", + "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106714,10 +112359,17 @@ "canonical_id": "game_mlb_2026_20260914_sf_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-14T23:45:00Z", + "date": "2026-09-14", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "San Francisco Giants", + "home_team_abbrev": "STL", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_sf", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106725,10 +112377,17 @@ "canonical_id": "game_mlb_2026_20260915_sd_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-15T00:40:00Z", + "date": "2026-09-14", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "San Diego Padres", + "home_team_abbrev": "COL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_sd", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106736,10 +112395,17 @@ "canonical_id": "game_mlb_2026_20260915_sea_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-15T01:38:00Z", + "date": "2026-09-14", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Seattle Mariners", + "home_team_abbrev": "LAA", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_sea", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106747,21 +112413,17 @@ "canonical_id": "game_mlb_2026_20260915_mia_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-15T01:40:00Z", + "date": "2026-09-14", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Miami Marlins", + "home_team_abbrev": "ARI", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_mia", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260915_oak_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-15T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106769,21 +112431,17 @@ "canonical_id": "game_mlb_2026_20260915_mil_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-15T22:40:00Z", + "date": "2026-09-15", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_mil", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260915_lad_cin", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-15T22:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_lad", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106791,10 +112449,53 @@ "canonical_id": "game_mlb_2026_20260915_chw_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-15T22:40:00Z", + "date": "2026-09-15", + "time": "6:40p", + "home_team": "Cleveland Guardians", + "away_team": "Chicago White Sox", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_chw", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260915_oak_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Oakland Athletics", + "home_team_abbrev": "TB", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260915_lad_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-15", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "CIN", + "away_team_abbrev": "LAD", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_lad", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106802,10 +112503,17 @@ "canonical_id": "game_mlb_2026_20260915_phi_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-15T22:45:00Z", + "date": "2026-09-15", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "WSN", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_phi", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106813,10 +112521,17 @@ "canonical_id": "game_mlb_2026_20260915_det_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-15T23:07:00Z", + "date": "2026-09-15", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Detroit Tigers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_det", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106824,10 +112539,17 @@ "canonical_id": "game_mlb_2026_20260915_bal_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-15T23:10:00Z", + "date": "2026-09-15", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "NYM", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_bal", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106835,10 +112557,17 @@ "canonical_id": "game_mlb_2026_20260915_nyy_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-15T23:40:00Z", + "date": "2026-09-15", + "time": "6:40p", + "home_team": "Minnesota Twins", + "away_team": "New York Yankees", + "home_team_abbrev": "MIN", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106846,10 +112575,17 @@ "canonical_id": "game_mlb_2026_20260915_atl_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-15T23:40:00Z", + "date": "2026-09-15", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Atlanta Braves", + "home_team_abbrev": "CHC", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_atl", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106857,10 +112593,17 @@ "canonical_id": "game_mlb_2026_20260915_sf_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-15T23:45:00Z", + "date": "2026-09-15", + "time": "6:45p", + "home_team": "St. Louis Cardinals", + "away_team": "San Francisco Giants", + "home_team_abbrev": "STL", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_sf", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106868,10 +112611,17 @@ "canonical_id": "game_mlb_2026_20260916_bos_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-16T00:05:00Z", + "date": "2026-09-15", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Boston Red Sox", + "home_team_abbrev": "TEX", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_bos", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106879,10 +112629,17 @@ "canonical_id": "game_mlb_2026_20260916_kc_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-16T00:10:00Z", + "date": "2026-09-15", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Kansas City Royals", + "home_team_abbrev": "HOU", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_kc", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106890,10 +112647,17 @@ "canonical_id": "game_mlb_2026_20260916_sd_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-16T00:40:00Z", + "date": "2026-09-15", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "San Diego Padres", + "home_team_abbrev": "COL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_sd", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106901,10 +112665,17 @@ "canonical_id": "game_mlb_2026_20260916_sea_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-16T01:38:00Z", + "date": "2026-09-15", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Seattle Mariners", + "home_team_abbrev": "LAA", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_sea", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106912,10 +112683,17 @@ "canonical_id": "game_mlb_2026_20260916_mia_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-16T01:40:00Z", + "date": "2026-09-15", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Miami Marlins", + "home_team_abbrev": "ARI", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_mia", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106923,10 +112701,17 @@ "canonical_id": "game_mlb_2026_20260916_chw_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-16T17:10:00Z", + "date": "2026-09-16", + "time": "1:10p", + "home_team": "Cleveland Guardians", + "away_team": "Chicago White Sox", + "home_team_abbrev": "CLE", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_chw", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106934,10 +112719,17 @@ "canonical_id": "game_mlb_2026_20260916_sf_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-16T17:15:00Z", + "date": "2026-09-16", + "time": "12:15p", + "home_team": "St. Louis Cardinals", + "away_team": "San Francisco Giants", + "home_team_abbrev": "STL", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_sf", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106945,10 +112737,17 @@ "canonical_id": "game_mlb_2026_20260916_nyy_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-16T17:40:00Z", + "date": "2026-09-16", + "time": "12:40p", + "home_team": "Minnesota Twins", + "away_team": "New York Yankees", + "home_team_abbrev": "MIN", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106956,21 +112755,17 @@ "canonical_id": "game_mlb_2026_20260916_det_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-16T19:07:00Z", + "date": "2026-09-16", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Detroit Tigers", + "home_team_abbrev": "TOR", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_det", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260916_oak_tbr", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-16T22:40:00Z", - "home_team_canonical_id": "team_mlb_tb", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106978,10 +112773,17 @@ "canonical_id": "game_mlb_2026_20260916_mil_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-16T22:40:00Z", + "date": "2026-09-16", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_mil", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -106989,10 +112791,35 @@ "canonical_id": "game_mlb_2026_20260916_lad_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-16T22:40:00Z", + "date": "2026-09-16", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "CIN", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_lad", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260916_oak_tbr", + "sport": "MLB", + "season": "2026", + "date": "2026-09-16", + "time": "6:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Oakland Athletics", + "home_team_abbrev": "TB", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_tbr", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Tropicana Field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107000,10 +112827,17 @@ "canonical_id": "game_mlb_2026_20260916_phi_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-16T22:45:00Z", + "date": "2026-09-16", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "WSN", + "away_team_abbrev": "PHI", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_phi", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107011,10 +112845,17 @@ "canonical_id": "game_mlb_2026_20260916_bal_nym", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-16T23:10:00Z", + "date": "2026-09-16", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "NYM", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_nym", "away_team_canonical_id": "team_mlb_bal", + "venue": "Citi Field", "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107022,10 +112863,17 @@ "canonical_id": "game_mlb_2026_20260916_atl_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-16T23:40:00Z", + "date": "2026-09-16", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Atlanta Braves", + "home_team_abbrev": "CHC", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_atl", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107033,10 +112881,17 @@ "canonical_id": "game_mlb_2026_20260917_bos_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-17T00:05:00Z", + "date": "2026-09-16", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Boston Red Sox", + "home_team_abbrev": "TEX", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_bos", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107044,10 +112899,17 @@ "canonical_id": "game_mlb_2026_20260917_kc_hou_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-17T00:10:00Z", + "date": "2026-09-16", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Kansas City Royals", + "home_team_abbrev": "HOU", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_kc", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107055,10 +112917,35 @@ "canonical_id": "game_mlb_2026_20260917_sd_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-17T00:40:00Z", + "date": "2026-09-16", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "San Diego Padres", + "home_team_abbrev": "COL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_sd", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260917_bay_den", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-16", + "time": "7:30p", + "home_team": "Denver Denver Summit FC", + "away_team": "San Francisco Bay FC", + "home_team_abbrev": "DEN", + "away_team_abbrev": "BAY", + "home_team_canonical_id": "team_nwsl_den", + "away_team_canonical_id": "team_nwsl_bay", + "venue": "Centennial Stadium", + "stadium_canonical_id": "stadium_nwsl_centennial_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107066,10 +112953,17 @@ "canonical_id": "game_mlb_2026_20260917_sea_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-17T01:38:00Z", + "date": "2026-09-16", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Seattle Mariners", + "home_team_abbrev": "LAA", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_sea", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107077,10 +112971,35 @@ "canonical_id": "game_mlb_2026_20260917_mia_ari", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-17T01:40:00Z", + "date": "2026-09-16", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "Miami Marlins", + "home_team_abbrev": "ARI", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_mia", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260917_sea_ang", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-16", + "time": "7p", + "home_team": "Los Angeles Angel City FC", + "away_team": "Seattle Seattle Reign", + "home_team_abbrev": "ANG", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nwsl_ang", + "away_team_canonical_id": "team_nwsl_sea", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_nwsl_bmo_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107088,10 +113007,17 @@ "canonical_id": "game_mlb_2026_20260917_mil_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-17T16:35:00Z", + "date": "2026-09-17", + "time": "12:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "PIT", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_mil", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107099,10 +113025,17 @@ "canonical_id": "game_mlb_2026_20260917_lad_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-17T16:40:00Z", + "date": "2026-09-17", + "time": "12:40p", + "home_team": "Cincinnati Reds", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "CIN", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_lad", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107110,10 +113043,17 @@ "canonical_id": "game_mlb_2026_20260917_oak_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-17T17:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-09-17", + "time": "1:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Oakland Athletics", + "home_team_abbrev": "TB", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_oak", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107121,21 +113061,17 @@ "canonical_id": "game_mlb_2026_20260917_sd_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-17T19:10:00Z", + "date": "2026-09-17", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "San Diego Padres", + "home_team_abbrev": "COL", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_sd", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260917_phi_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-17T23:15:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107143,10 +113079,53 @@ "canonical_id": "game_mlb_2026_20260917_kc_hou_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-17T23:15:00Z", + "date": "2026-09-17", + "time": "6:15p", + "home_team": "Houston Astros", + "away_team": "Kansas City Royals", + "home_team_abbrev": "HOU", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_kc", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260917_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-17", + "time": "7:15p", + "home_team": "New York Mets", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "NYM", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260917_con_atl", + "sport": "WNBA", + "season": "2026", + "date": "2026-09-17", + "time": "7:30p", + "home_team": "Atlanta Dream", + "away_team": "Connecticut Sun", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CON", + "home_team_canonical_id": "team_wnba_atl", + "away_team_canonical_id": "team_wnba_con", + "venue": "Gateway Center Arena", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107154,10 +113133,53 @@ "canonical_id": "game_mlb_2026_20260917_det_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-17T23:40:00Z", + "date": "2026-09-17", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Detroit Tigers", + "home_team_abbrev": "CHW", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_det", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260918_la_dal", + "sport": "WNBA", + "season": "2026", + "date": "2026-09-17", + "time": "7p", + "home_team": "Dallas Wings", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "DAL", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_la", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260918_was_chi", + "sport": "WNBA", + "season": "2026", + "date": "2026-09-17", + "time": "7p", + "home_team": "Chicago Sky", + "away_team": "Washington Mystics", + "home_team_abbrev": "CHI", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_wnba_chi", + "away_team_canonical_id": "team_wnba_was", + "venue": "Wintrust Arena", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107165,10 +113187,17 @@ "canonical_id": "game_mlb_2026_20260918_bos_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-18T00:05:00Z", + "date": "2026-09-17", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Boston Red Sox", + "home_team_abbrev": "TEX", + "away_team_abbrev": "BOS", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_bos", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107176,21 +113205,35 @@ "canonical_id": "game_mlb_2026_20260918_min_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-18T01:38:00Z", + "date": "2026-09-17", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Minnesota Twins", + "home_team_abbrev": "LAA", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_min", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260918_kc_pit", - "sport": "MLB", + "canonical_id": "game_wnba_2026_20260918_lv_sea", + "sport": "WNBA", "season": "2026", - "game_datetime_utc": "2026-09-18T22:40:00Z", - "home_team_canonical_id": "team_mlb_pit", - "away_team_canonical_id": "team_mlb_kc", - "stadium_canonical_id": "stadium_mlb_pnc_park", + "date": "2026-09-17", + "time": "7p", + "home_team": "Seattle Storm", + "away_team": "Las Vegas Aces", + "home_team_abbrev": "SEA", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_wnba_sea", + "away_team_canonical_id": "team_wnba_lv", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107198,10 +113241,35 @@ "canonical_id": "game_mlb_2026_20260918_chc_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-18T22:40:00Z", + "date": "2026-09-18", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Chicago Cubs", + "home_team_abbrev": "CIN", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_chc", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260918_kc_pit", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Kansas City Royals", + "home_team_abbrev": "PIT", + "away_team_abbrev": "KC", + "home_team_canonical_id": "team_mlb_pit", + "away_team_canonical_id": "team_mlb_kc", + "venue": "PNC Park", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107209,32 +113277,17 @@ "canonical_id": "game_mlb_2026_20260918_mil_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-18T23:05:00Z", + "date": "2026-09-18", + "time": "7:05p", + "home_team": "Baltimore Orioles", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "BAL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_mil", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260918_phi_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-18T23:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260918_oak_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-18T23:10:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107242,10 +113295,89 @@ "canonical_id": "game_mlb_2026_20260918_bos_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-18T23:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-09-18", + "time": "7:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Boston Red Sox", + "home_team_abbrev": "TB", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_bos", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260918_oak_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "7:10p", + "home_team": "Cleveland Guardians", + "away_team": "Oakland Athletics", + "home_team_abbrev": "CLE", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260918_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "7:10p", + "home_team": "New York Mets", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "NYM", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260918_ny_nyc", + "sport": "MLS", + "season": "2026", + "date": "2026-09-18", + "time": "7:30p", + "home_team": "New York New York City FC", + "away_team": "New York New York Red Bulls", + "home_team_abbrev": "NYC", + "away_team_abbrev": "RB", + "home_team_canonical_id": "team_mls_nyc", + "away_team_canonical_id": "team_mls_ny", + "venue": "Yankee Stadium", + "stadium_canonical_id": "stadium_mls_yankee_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260918_ny_min", + "sport": "WNBA", + "season": "2026", + "date": "2026-09-18", + "time": "6:30p", + "home_team": "Minnesota Lynx", + "away_team": "New York Liberty", + "home_team_abbrev": "MIN", + "away_team_abbrev": "NY", + "home_team_canonical_id": "team_wnba_min", + "away_team_canonical_id": "team_wnba_ny", + "venue": "Target Center", + "stadium_canonical_id": "stadium_wnba_target_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107253,10 +113385,35 @@ "canonical_id": "game_mlb_2026_20260918_det_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-18T23:40:00Z", + "date": "2026-09-18", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Detroit Tigers", + "home_team_abbrev": "CHW", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_det", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260919_kcc_sdw", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-18", + "time": "5p", + "home_team": "San Diego San Diego Wave", + "away_team": "Kansas City Kansas City Current", + "home_team_abbrev": "SDW", + "away_team_abbrev": "KCC", + "home_team_canonical_id": "team_nwsl_sdw", + "away_team_canonical_id": "team_nwsl_kcc", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107264,10 +113421,17 @@ "canonical_id": "game_mlb_2026_20260919_tor_tex_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-19T00:05:00Z", + "date": "2026-09-18", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "TEX", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_tor", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107275,10 +113439,17 @@ "canonical_id": "game_mlb_2026_20260919_sea_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-19T00:10:00Z", + "date": "2026-09-18", + "time": "6:10p", + "home_team": "Colorado Rockies", + "away_team": "Seattle Mariners", + "home_team_abbrev": "COL", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_sea", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107286,10 +113457,17 @@ "canonical_id": "game_mlb_2026_20260919_atl_hou_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-19T00:10:00Z", + "date": "2026-09-18", + "time": "7:10p", + "home_team": "Houston Astros", + "away_team": "Atlanta Braves", + "home_team_abbrev": "HOU", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_atl", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107297,10 +113475,17 @@ "canonical_id": "game_mlb_2026_20260919_wsn_stl_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-19T00:15:00Z", + "date": "2026-09-18", + "time": "7:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Washington Nationals", + "home_team_abbrev": "STL", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107308,21 +113493,17 @@ "canonical_id": "game_mlb_2026_20260919_min_laa", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-19T01:38:00Z", + "date": "2026-09-18", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Minnesota Twins", + "home_team_abbrev": "LAA", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_min", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260919_nyy_ari", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-19T01:40:00Z", - "home_team_canonical_id": "team_mlb_ari", - "away_team_canonical_id": "team_mlb_nyy", - "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107330,10 +113511,35 @@ "canonical_id": "game_mlb_2026_20260919_mia_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-19T01:40:00Z", + "date": "2026-09-18", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Miami Marlins", + "home_team_abbrev": "SD", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_mia", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260919_nyy_ari", + "sport": "MLB", + "season": "2026", + "date": "2026-09-18", + "time": "6:40p", + "home_team": "Arizona Diamondbacks", + "away_team": "New York Yankees", + "home_team_abbrev": "ARI", + "away_team_abbrev": "NYY", + "home_team_canonical_id": "team_mlb_ari", + "away_team_canonical_id": "team_mlb_nyy", + "venue": "Chase Field", + "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107341,10 +113547,53 @@ "canonical_id": "game_mlb_2026_20260919_sf_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-19T02:10:00Z", + "date": "2026-09-18", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "San Francisco Giants", + "home_team_abbrev": "LAD", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_sf", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260919_phx_dal", + "sport": "WNBA", + "season": "2026", + "date": "2026-09-19", + "time": "12p", + "home_team": "Dallas Wings", + "away_team": "Phoenix Mercury", + "home_team_abbrev": "DAL", + "away_team_abbrev": "PHX", + "home_team_canonical_id": "team_wnba_dal", + "away_team_canonical_id": "team_wnba_phx", + "venue": "College Park Center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260919_por_orl", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-19", + "time": "4p", + "home_team": "Orlando Orlando Pride", + "away_team": "Portland Portland Thorns", + "home_team_abbrev": "ORL", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nwsl_orl", + "away_team_canonical_id": "team_nwsl_por", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107352,21 +113601,17 @@ "canonical_id": "game_mlb_2026_20260919_mil_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-19T20:05:00Z", + "date": "2026-09-19", + "time": "4:05p", + "home_team": "Baltimore Orioles", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "BAL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_mil", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260919_phi_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-19T20:10:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107374,10 +113619,35 @@ "canonical_id": "game_mlb_2026_20260919_bos_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-19T20:10:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-09-19", + "time": "4:10p", + "home_team": "Tampa Bay Rays", + "away_team": "Boston Red Sox", + "home_team_abbrev": "TB", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_bos", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260919_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "4:10p", + "home_team": "New York Mets", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "NYM", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107385,10 +113655,35 @@ "canonical_id": "game_mlb_2026_20260919_oak_cle", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-19T22:10:00Z", + "date": "2026-09-19", + "time": "6:10p", + "home_team": "Cleveland Guardians", + "away_team": "Oakland Athletics", + "home_team_abbrev": "CLE", + "away_team_abbrev": "OAK", "home_team_canonical_id": "team_mlb_cle", "away_team_canonical_id": "team_mlb_oak", + "venue": "Progressive Field", "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260919_njy_ncc", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-19", + "time": "6:30p", + "home_team": "North Carolina North Carolina Courage", + "away_team": "New Jersey NJ/NY Gotham FC", + "home_team_abbrev": "NCC", + "away_team_abbrev": "NJY", + "home_team_canonical_id": "team_nwsl_ncc", + "away_team_canonical_id": "team_nwsl_njy", + "venue": "WakeMed Soccer Park", + "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107396,10 +113691,17 @@ "canonical_id": "game_mlb_2026_20260919_kc_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-19T22:40:00Z", + "date": "2026-09-19", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "Kansas City Royals", + "home_team_abbrev": "PIT", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_kc", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107407,10 +113709,35 @@ "canonical_id": "game_mlb_2026_20260919_chc_cin", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-19T22:40:00Z", + "date": "2026-09-19", + "time": "6:40p", + "home_team": "Cincinnati Reds", + "away_team": "Chicago Cubs", + "home_team_abbrev": "CIN", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_cin", "away_team_canonical_id": "team_mlb_chc", + "venue": "Great American Ball Park", "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260919_chi_atl", + "sport": "WNBA", + "season": "2026", + "date": "2026-09-19", + "time": "7p", + "home_team": "Atlanta Dream", + "away_team": "Chicago Sky", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_atl", + "away_team_canonical_id": "team_wnba_chi", + "venue": "Gateway Center Arena", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107418,10 +113745,17 @@ "canonical_id": "game_mlb_2026_20260919_tor_tex_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-19T23:05:00Z", + "date": "2026-09-19", + "time": "6:05p", + "home_team": "Texas Rangers", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "TEX", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_tor", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107429,10 +113763,17 @@ "canonical_id": "game_mlb_2026_20260919_det_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-19T23:10:00Z", + "date": "2026-09-19", + "time": "6:10p", + "home_team": "Chicago White Sox", + "away_team": "Detroit Tigers", + "home_team_abbrev": "CHW", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_det", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107440,10 +113781,17 @@ "canonical_id": "game_mlb_2026_20260919_atl_hou_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-19T23:10:00Z", + "date": "2026-09-19", + "time": "6:10p", + "home_team": "Houston Astros", + "away_team": "Atlanta Braves", + "home_team_abbrev": "HOU", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_atl", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107451,21 +113799,89 @@ "canonical_id": "game_mlb_2026_20260919_wsn_stl_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-19T23:15:00Z", + "date": "2026-09-19", + "time": "6:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Washington Nationals", + "home_team_abbrev": "STL", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260920_sea_col_1", - "sport": "MLB", + "canonical_id": "game_mls_2026_20260919_orl_ne", + "sport": "MLS", "season": "2026", - "game_datetime_utc": "2026-09-20T00:10:00Z", - "home_team_canonical_id": "team_mlb_col", - "away_team_canonical_id": "team_mlb_sea", - "stadium_canonical_id": "stadium_mlb_coors_field", + "date": "2026-09-19", + "time": "7:30p", + "home_team": "New England New England Revolution", + "away_team": "Orlando Orlando City", + "home_team_abbrev": "NE", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_mls_ne", + "away_team_canonical_id": "team_mls_orl", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_mls_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260919_lafc_sj", + "sport": "MLS", + "season": "2026", + "date": "2026-09-19", + "time": "11:30p", + "home_team": "San Jose San Jose Earthquakes", + "away_team": "Los Angeles Los Angeles FC", + "home_team_abbrev": "SJ", + "away_team_abbrev": "LAFC", + "home_team_canonical_id": "team_mls_sj", + "away_team_canonical_id": "team_mls_lafc", + "venue": null, + "stadium_canonical_id": null, + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260919_clb_mtl", + "sport": "MLS", + "season": "2026", + "date": "2026-09-19", + "time": "7:30p", + "home_team": "Montreal CF Montreal", + "away_team": "Columbus Columbus Crew", + "home_team_abbrev": "MTL", + "away_team_abbrev": "CLB", + "home_team_canonical_id": "team_mls_mtl", + "away_team_canonical_id": "team_mls_clb", + "venue": "Stade Saputo", + "stadium_canonical_id": "stadium_mls_stade_saputo", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260919_clt_dc", + "sport": "MLS", + "season": "2026", + "date": "2026-09-19", + "time": "7:30p", + "home_team": "Washington D.C. United", + "away_team": "Charlotte Charlotte FC", + "home_team_abbrev": "DC", + "away_team_abbrev": "CLT", + "home_team_canonical_id": "team_mls_dc", + "away_team_canonical_id": "team_mls_clt", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_mls_audi_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107473,10 +113889,125 @@ "canonical_id": "game_mlb_2026_20260920_nyy_ari_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-20T00:10:00Z", + "date": "2026-09-19", + "time": "5:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "New York Yankees", + "home_team_abbrev": "ARI", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260920_sea_col_1", + "sport": "MLB", + "season": "2026", + "date": "2026-09-19", + "time": "6:10p", + "home_team": "Colorado Rockies", + "away_team": "Seattle Mariners", + "home_team_abbrev": "COL", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mlb_col", + "away_team_canonical_id": "team_mlb_sea", + "venue": "Coors Field", + "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260920_cin_hou", + "sport": "MLS", + "season": "2026", + "date": "2026-09-19", + "time": "7:30p", + "home_team": "Houston Houston Dynamo", + "away_team": "Cincinnati FC Cincinnati", + "home_team_abbrev": "HOU", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mls_hou", + "away_team_canonical_id": "team_mls_cin", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_mls_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260920_phi_skc", + "sport": "MLS", + "season": "2026", + "date": "2026-09-19", + "time": "7:30p", + "home_team": "Kansas City Sporting Kansas City", + "away_team": "Philadelphia Philadelphia Union", + "home_team_abbrev": "SKC", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mls_skc", + "away_team_canonical_id": "team_mls_phi", + "venue": "Children's Mercy Park", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260920_tor_stl", + "sport": "MLS", + "season": "2026", + "date": "2026-09-19", + "time": "7:30p", + "home_team": "St. Louis St. Louis City SC", + "away_team": "Toronto Toronto FC", + "home_team_abbrev": "STL", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mls_stl", + "away_team_canonical_id": "team_mls_tor", + "venue": "CITYPARK", + "stadium_canonical_id": "stadium_mls_citypark", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260920_lag_min", + "sport": "MLS", + "season": "2026", + "date": "2026-09-19", + "time": "7:30p", + "home_team": "Minnesota Minnesota United", + "away_team": "Los Angeles LA Galaxy", + "home_team_abbrev": "MIN", + "away_team_abbrev": "LAG", + "home_team_canonical_id": "team_mls_min", + "away_team_canonical_id": "team_mls_lag", + "venue": "Allianz Field", + "stadium_canonical_id": "stadium_mls_allianz_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260920_aus_dal", + "sport": "MLS", + "season": "2026", + "date": "2026-09-19", + "time": "7:30p", + "home_team": "Dallas FC Dallas", + "away_team": "Austin Austin FC", + "home_team_abbrev": "DAL", + "away_team_abbrev": "AUS", + "home_team_canonical_id": "team_mls_dal", + "away_team_canonical_id": "team_mls_aus", + "venue": "Toyota Stadium", + "stadium_canonical_id": "stadium_mls_toyota_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107484,10 +114015,53 @@ "canonical_id": "game_mlb_2026_20260920_mia_sd_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-20T00:40:00Z", + "date": "2026-09-19", + "time": "5:40p", + "home_team": "San Diego Padres", + "away_team": "Miami Marlins", + "home_team_abbrev": "SD", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_mia", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260920_sea_den", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-19", + "time": "6:45p", + "home_team": "Denver Denver Summit FC", + "away_team": "Seattle Seattle Reign", + "home_team_abbrev": "DEN", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nwsl_den", + "away_team_canonical_id": "team_nwsl_sea", + "venue": "Centennial Stadium", + "stadium_canonical_id": "stadium_nwsl_centennial_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260920_sea_gsv", + "sport": "WNBA", + "season": "2026", + "date": "2026-09-19", + "time": "6p", + "home_team": "Golden State Valkyries", + "away_team": "Seattle Storm", + "home_team_abbrev": "GSV", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_wnba_gsv", + "away_team_canonical_id": "team_wnba_sea", + "venue": "Chase Center", + "stadium_canonical_id": "stadium_wnba_chase_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107495,10 +114069,71 @@ "canonical_id": "game_mlb_2026_20260920_sf_lad_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-20T01:10:00Z", + "date": "2026-09-19", + "time": "6:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "San Francisco Giants", + "home_team_abbrev": "LAD", + "away_team_abbrev": "SF", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_sf", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260920_van_slc", + "sport": "MLS", + "season": "2026", + "date": "2026-09-19", + "time": "7:30p", + "home_team": "Salt Lake Real Salt Lake", + "away_team": "Vancouver Vancouver Whitecaps", + "home_team_abbrev": "SLC", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_mls_slc", + "away_team_canonical_id": "team_mls_van", + "venue": "America First Field", + "stadium_canonical_id": "stadium_mls_america_first_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260920_chi_nsh", + "sport": "MLS", + "season": "2026", + "date": "2026-09-19", + "time": "8:30p", + "home_team": "Nashville Nashville SC", + "away_team": "Chicago Chicago Fire", + "home_team_abbrev": "NSH", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_mls_nsh", + "away_team_canonical_id": "team_mls_chi", + "venue": "GEODIS Park", + "stadium_canonical_id": "stadium_mls_geodis_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260920_sea_col", + "sport": "MLS", + "season": "2026", + "date": "2026-09-19", + "time": "7:30p", + "home_team": "Colorado Colorado Rapids", + "away_team": "Seattle Seattle Sounders", + "home_team_abbrev": "COL", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mls_col", + "away_team_canonical_id": "team_mls_sea", + "venue": "Dick's Sporting Goods Park", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107506,10 +114141,53 @@ "canonical_id": "game_mlb_2026_20260920_min_laa_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-20T01:38:00Z", + "date": "2026-09-19", + "time": "6:38p", + "home_team": "Los Angeles Angels", + "away_team": "Minnesota Twins", + "home_team_abbrev": "LAA", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_min", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260920_atl_por", + "sport": "MLS", + "season": "2026", + "date": "2026-09-19", + "time": "7:30p", + "home_team": "Portland Portland Timbers", + "away_team": "Atlanta Atlanta United", + "home_team_abbrev": "POR", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mls_por", + "away_team_canonical_id": "team_mls_atl", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_mls_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260920_min_con", + "sport": "WNBA", + "season": "2026", + "date": "2026-09-20", + "time": "1p", + "home_team": "Connecticut Sun", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "CON", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_con", + "away_team_canonical_id": "team_wnba_min", + "venue": "Mohegan Sun Arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107517,43 +114195,17 @@ "canonical_id": "game_mlb_2026_20260920_kc_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-20T17:35:00Z", + "date": "2026-09-20", + "time": "1:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "Kansas City Royals", + "home_team_abbrev": "PIT", + "away_team_abbrev": "KC", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_kc", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260920_phi_nym", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-20T17:40:00Z", - "home_team_canonical_id": "team_mlb_nym", - "away_team_canonical_id": "team_mlb_phi", - "stadium_canonical_id": "stadium_mlb_citi_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260920_oak_cle", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-20T17:40:00Z", - "home_team_canonical_id": "team_mlb_cle", - "away_team_canonical_id": "team_mlb_oak", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260920_chc_cin", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-20T17:40:00Z", - "home_team_canonical_id": "team_mlb_cin", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107561,10 +114213,89 @@ "canonical_id": "game_mlb_2026_20260920_bos_tbr", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-20T17:40:00Z", - "home_team_canonical_id": "team_mlb_tb", + "date": "2026-09-20", + "time": "1:40p", + "home_team": "Tampa Bay Rays", + "away_team": "Boston Red Sox", + "home_team_abbrev": "TB", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_mlb_tbr", "away_team_canonical_id": "team_mlb_bos", + "venue": "Tropicana Field", "stadium_canonical_id": "stadium_mlb_tropicana_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260920_oak_cle", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "1:40p", + "home_team": "Cleveland Guardians", + "away_team": "Oakland Athletics", + "home_team_abbrev": "CLE", + "away_team_abbrev": "OAK", + "home_team_canonical_id": "team_mlb_cle", + "away_team_canonical_id": "team_mlb_oak", + "venue": "Progressive Field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260920_phi_nym", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "1:40p", + "home_team": "New York Mets", + "away_team": "Philadelphia Phillies", + "home_team_abbrev": "NYM", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mlb_nym", + "away_team_canonical_id": "team_mlb_phi", + "venue": "Citi Field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260920_chc_cin", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "1:40p", + "home_team": "Cincinnati Reds", + "away_team": "Chicago Cubs", + "home_team_abbrev": "CIN", + "away_team_abbrev": "CHC", + "home_team_canonical_id": "team_mlb_cin", + "away_team_canonical_id": "team_mlb_chc", + "venue": "Great American Ball Park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260920_hou_bos", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-20", + "time": "2p", + "home_team": "Boston Boston Legacy FC", + "away_team": "Houston Houston Dash", + "home_team_abbrev": "BOS", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nwsl_bos", + "away_team_canonical_id": "team_nwsl_hou", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_nwsl_gillette_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107572,10 +114303,17 @@ "canonical_id": "game_mlb_2026_20260920_det_chw", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-20T18:10:00Z", + "date": "2026-09-20", + "time": "1:10p", + "home_team": "Chicago White Sox", + "away_team": "Detroit Tigers", + "home_team_abbrev": "CHW", + "away_team_abbrev": "DET", "home_team_canonical_id": "team_mlb_chw", "away_team_canonical_id": "team_mlb_det", + "venue": "Guaranteed Rate Field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107583,10 +114321,17 @@ "canonical_id": "game_mlb_2026_20260920_atl_hou", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-20T18:10:00Z", + "date": "2026-09-20", + "time": "1:10p", + "home_team": "Houston Astros", + "away_team": "Atlanta Braves", + "home_team_abbrev": "HOU", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_hou", "away_team_canonical_id": "team_mlb_atl", + "venue": "Minute Maid Park", "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107594,10 +114339,17 @@ "canonical_id": "game_mlb_2026_20260920_wsn_stl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-20T18:15:00Z", + "date": "2026-09-20", + "time": "1:15p", + "home_team": "St. Louis Cardinals", + "away_team": "Washington Nationals", + "home_team_abbrev": "STL", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_stl", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Busch Stadium", "stadium_canonical_id": "stadium_mlb_busch_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107605,10 +114357,17 @@ "canonical_id": "game_mlb_2026_20260920_tor_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-20T18:35:00Z", + "date": "2026-09-20", + "time": "1:35p", + "home_team": "Texas Rangers", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "TEX", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_tor", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107616,10 +114375,35 @@ "canonical_id": "game_mlb_2026_20260920_sea_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-20T19:10:00Z", + "date": "2026-09-20", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Seattle Mariners", + "home_team_abbrev": "COL", + "away_team_abbrev": "SEA", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_sea", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260920_was_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-09-20", + "time": "4p", + "home_team": "Indiana Fever", + "away_team": "Washington Mystics", + "home_team_abbrev": "IND", + "away_team_abbrev": "WAS", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_was", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107627,21 +114411,17 @@ "canonical_id": "game_mlb_2026_20260920_min_laa_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-20T20:07:00Z", + "date": "2026-09-20", + "time": "1:07p", + "home_team": "Los Angeles Angels", + "away_team": "Minnesota Twins", + "home_team_abbrev": "LAA", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_laa", "away_team_canonical_id": "team_mlb_min", + "venue": "Angel Stadium", "stadium_canonical_id": "stadium_mlb_angel_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260920_sf_lad_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-20T20:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_sf", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107649,10 +114429,35 @@ "canonical_id": "game_mlb_2026_20260920_nyy_ari_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-20T20:10:00Z", + "date": "2026-09-20", + "time": "1:10p", + "home_team": "Arizona Diamondbacks", + "away_team": "New York Yankees", + "home_team_abbrev": "ARI", + "away_team_abbrev": "NYY", "home_team_canonical_id": "team_mlb_ari", "away_team_canonical_id": "team_mlb_nyy", + "venue": "Chase Field", "stadium_canonical_id": "stadium_mlb_chase_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260920_sf_lad_2", + "sport": "MLB", + "season": "2026", + "date": "2026-09-20", + "time": "1:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "San Francisco Giants", + "home_team_abbrev": "LAD", + "away_team_abbrev": "SF", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sf", + "venue": "Dodger Stadium", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107660,10 +114465,89 @@ "canonical_id": "game_mlb_2026_20260920_mia_sd_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-20T20:10:00Z", + "date": "2026-09-20", + "time": "1:10p", + "home_team": "San Diego Padres", + "away_team": "Miami Marlins", + "home_team_abbrev": "SD", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_mia", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260920_wsh_chi", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-20", + "time": "4p", + "home_team": "Chicago Chicago Red Stars", + "away_team": "Washington Washington Spirit", + "home_team_abbrev": "CHI", + "away_team_abbrev": "WSH", + "home_team_canonical_id": "team_nwsl_chi", + "away_team_canonical_id": "team_nwsl_wsh", + "venue": "Northwestern Medicine Field at Martin Stadium", + "stadium_canonical_id": "stadium_nwsl_northwestern_medicine_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260920_sd_mia", + "sport": "MLS", + "season": "2026", + "date": "2026-09-20", + "time": "7p", + "home_team": "Miami Inter Miami", + "away_team": "San Diego San Diego FC", + "home_team_abbrev": "MIA", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mls_mia", + "away_team_canonical_id": "team_mls_sd", + "venue": "Miami Freedom Park", + "stadium_canonical_id": "stadium_mls_miami_freedom_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260920_rgn_bay", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-20", + "time": "4p", + "home_team": "San Francisco Bay FC", + "away_team": "Louisville Racing Louisville", + "home_team_abbrev": "BAY", + "away_team_abbrev": "RGN", + "home_team_canonical_id": "team_nwsl_bay", + "away_team_canonical_id": "team_nwsl_rgn", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_nwsl_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260920_ang_uta", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-20", + "time": "5p", + "home_team": "Utah Utah Royals", + "away_team": "Los Angeles Angel City FC", + "home_team_abbrev": "UTA", + "away_team_abbrev": "ANG", + "home_team_canonical_id": "team_nwsl_uta", + "away_team_canonical_id": "team_nwsl_ang", + "venue": "America First Field", + "stadium_canonical_id": "stadium_nwsl_america_first_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107671,10 +114555,35 @@ "canonical_id": "game_mlb_2026_20260920_mil_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-20T23:20:00Z", + "date": "2026-09-20", + "time": "7:20p", + "home_team": "Baltimore Orioles", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "BAL", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_mil", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260921_sea_lv", + "sport": "WNBA", + "season": "2026", + "date": "2026-09-20", + "time": "6p", + "home_team": "Las Vegas Aces", + "away_team": "Seattle Storm", + "home_team_abbrev": "LV", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_sea", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107682,10 +114591,17 @@ "canonical_id": "game_mlb_2026_20260921_tor_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-21T22:35:00Z", + "date": "2026-09-21", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "BAL", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_tor", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107693,10 +114609,35 @@ "canonical_id": "game_mlb_2026_20260921_wsn_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-21T22:40:00Z", + "date": "2026-09-21", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Washington Nationals", + "home_team_abbrev": "DET", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260922_atl_ny", + "sport": "WNBA", + "season": "2026", + "date": "2026-09-21", + "time": "8p", + "home_team": "New York Liberty", + "away_team": "Atlanta Dream", + "home_team_abbrev": "NY", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_atl", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107704,10 +114645,35 @@ "canonical_id": "game_mlb_2026_20260922_min_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-22T01:45:00Z", + "date": "2026-09-21", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Minnesota Twins", + "home_team_abbrev": "SF", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_min", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260922_dal_phx", + "sport": "WNBA", + "season": "2026", + "date": "2026-09-21", + "time": "10p", + "home_team": "Phoenix Mercury", + "away_team": "Dallas Wings", + "home_team_abbrev": "PHX", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_wnba_phx", + "away_team_canonical_id": "team_wnba_dal", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107715,10 +114681,17 @@ "canonical_id": "game_mlb_2026_20260922_tor_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-22T22:35:00Z", + "date": "2026-09-22", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "BAL", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_tor", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107726,10 +114699,17 @@ "canonical_id": "game_mlb_2026_20260922_wsn_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-22T22:40:00Z", + "date": "2026-09-22", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Washington Nationals", + "home_team_abbrev": "DET", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107737,10 +114717,17 @@ "canonical_id": "game_mlb_2026_20260922_stl_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-22T22:40:00Z", + "date": "2026-09-22", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "PIT", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_stl", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107748,10 +114735,17 @@ "canonical_id": "game_mlb_2026_20260922_mil_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-22T22:40:00Z", + "date": "2026-09-22", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_mil", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107759,10 +114753,17 @@ "canonical_id": "game_mlb_2026_20260922_cle_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-22T22:45:00Z", + "date": "2026-09-22", + "time": "6:45p", + "home_team": "Boston Red Sox", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_cle", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107770,10 +114771,17 @@ "canonical_id": "game_mlb_2026_20260922_tbr_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-22T23:05:00Z", + "date": "2026-09-22", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "NYY", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107781,21 +114789,35 @@ "canonical_id": "game_mlb_2026_20260922_cin_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-22T23:15:00Z", + "date": "2026-09-22", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_cin", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260922_mia_chc", - "sport": "MLB", + "canonical_id": "game_wnba_2026_20260922_con_was", + "sport": "WNBA", "season": "2026", - "game_datetime_utc": "2026-09-22T23:40:00Z", - "home_team_canonical_id": "team_mlb_chc", - "away_team_canonical_id": "team_mlb_mia", - "stadium_canonical_id": "stadium_mlb_wrigley_field", + "date": "2026-09-22", + "time": "7:30p", + "home_team": "Washington Mystics", + "away_team": "Connecticut Sun", + "home_team_abbrev": "WAS", + "away_team_abbrev": "CON", + "home_team_canonical_id": "team_wnba_was", + "away_team_canonical_id": "team_wnba_con", + "venue": "Entertainment & Sports Arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107803,10 +114825,53 @@ "canonical_id": "game_mlb_2026_20260922_chw_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-22T23:40:00Z", + "date": "2026-09-22", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Chicago White Sox", + "home_team_abbrev": "KC", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_chw", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260922_mia_chc", + "sport": "MLB", + "season": "2026", + "date": "2026-09-22", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Miami Marlins", + "home_team_abbrev": "CHC", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mlb_chc", + "away_team_canonical_id": "team_mlb_mia", + "venue": "Wrigley Field", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260923_min_ind", + "sport": "WNBA", + "season": "2026", + "date": "2026-09-22", + "time": "8p", + "home_team": "Indiana Fever", + "away_team": "Minnesota Lynx", + "home_team_abbrev": "IND", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_wnba_ind", + "away_team_canonical_id": "team_wnba_min", + "venue": "Gainbridge Fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107814,10 +114879,17 @@ "canonical_id": "game_mlb_2026_20260923_nym_tex", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-23T00:05:00Z", + "date": "2026-09-22", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "New York Mets", + "home_team_abbrev": "TEX", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_nym", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107825,10 +114897,17 @@ "canonical_id": "game_mlb_2026_20260923_ari_col", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-23T00:40:00Z", + "date": "2026-09-22", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "COL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_ari", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107836,10 +114915,17 @@ "canonical_id": "game_mlb_2026_20260923_laa_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-23T01:40:00Z", + "date": "2026-09-22", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "OAK", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_laa", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107847,10 +114933,17 @@ "canonical_id": "game_mlb_2026_20260923_hou_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-23T01:40:00Z", + "date": "2026-09-22", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Houston Astros", + "home_team_abbrev": "SEA", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107858,10 +114951,35 @@ "canonical_id": "game_mlb_2026_20260923_min_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-23T01:45:00Z", + "date": "2026-09-22", + "time": "6:45p", + "home_team": "San Francisco Giants", + "away_team": "Minnesota Twins", + "home_team_abbrev": "SF", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_min", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260923_la_lv", + "sport": "WNBA", + "season": "2026", + "date": "2026-09-22", + "time": "7p", + "home_team": "Las Vegas Aces", + "away_team": "Los Angeles Sparks", + "home_team_abbrev": "LV", + "away_team_abbrev": "LA", + "home_team_canonical_id": "team_wnba_lv", + "away_team_canonical_id": "team_wnba_la", + "venue": "Michelob Ultra Arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107869,10 +114987,17 @@ "canonical_id": "game_mlb_2026_20260923_sd_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-23T02:10:00Z", + "date": "2026-09-22", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "San Diego Padres", + "home_team_abbrev": "LAD", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_sd", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107880,10 +115005,17 @@ "canonical_id": "game_mlb_2026_20260923_wsn_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-23T17:10:00Z", + "date": "2026-09-23", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Washington Nationals", + "home_team_abbrev": "DET", + "away_team_abbrev": "WSN", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_wsn", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107891,10 +115023,17 @@ "canonical_id": "game_mlb_2026_20260923_min_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-23T19:45:00Z", + "date": "2026-09-23", + "time": "12:45p", + "home_team": "San Francisco Giants", + "away_team": "Minnesota Twins", + "home_team_abbrev": "SF", + "away_team_abbrev": "MIN", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_min", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107902,10 +115041,17 @@ "canonical_id": "game_mlb_2026_20260923_tor_bal", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-23T22:35:00Z", + "date": "2026-09-23", + "time": "6:35p", + "home_team": "Baltimore Orioles", + "away_team": "Toronto Blue Jays", + "home_team_abbrev": "BAL", + "away_team_abbrev": "TOR", "home_team_canonical_id": "team_mlb_bal", "away_team_canonical_id": "team_mlb_tor", + "venue": "Oriole Park at Camden Yards", "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107913,10 +115059,17 @@ "canonical_id": "game_mlb_2026_20260923_stl_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-23T22:40:00Z", + "date": "2026-09-23", + "time": "6:40p", + "home_team": "Pittsburgh Pirates", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "PIT", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_stl", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107924,10 +115077,17 @@ "canonical_id": "game_mlb_2026_20260923_mil_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-23T22:40:00Z", + "date": "2026-09-23", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_mil", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107935,10 +115095,17 @@ "canonical_id": "game_mlb_2026_20260923_tbr_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-23T23:05:00Z", + "date": "2026-09-23", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "NYY", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107946,10 +115113,17 @@ "canonical_id": "game_mlb_2026_20260923_cle_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-23T23:10:00Z", + "date": "2026-09-23", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_cle", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107957,10 +115131,17 @@ "canonical_id": "game_mlb_2026_20260923_cin_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-23T23:15:00Z", + "date": "2026-09-23", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_cin", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107968,10 +115149,17 @@ "canonical_id": "game_mlb_2026_20260923_mia_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-23T23:40:00Z", + "date": "2026-09-23", + "time": "6:40p", + "home_team": "Chicago Cubs", + "away_team": "Miami Marlins", + "home_team_abbrev": "CHC", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_mia", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -107979,10 +115167,35 @@ "canonical_id": "game_mlb_2026_20260923_chw_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-23T23:40:00Z", + "date": "2026-09-23", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Chicago White Sox", + "home_team_abbrev": "KC", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_chw", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260924_atl_ny", + "sport": "WNBA", + "season": "2026", + "date": "2026-09-23", + "time": "8p", + "home_team": "New York Liberty", + "away_team": "Atlanta Dream", + "home_team_abbrev": "NY", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_wnba_ny", + "away_team_canonical_id": "team_wnba_atl", + "venue": "Barclays Center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -107990,10 +115203,17 @@ "canonical_id": "game_mlb_2026_20260924_nym_tex_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-24T00:05:00Z", + "date": "2026-09-23", + "time": "7:05p", + "home_team": "Texas Rangers", + "away_team": "New York Mets", + "home_team_abbrev": "TEX", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_nym", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108001,10 +115221,17 @@ "canonical_id": "game_mlb_2026_20260924_ari_col_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-24T00:40:00Z", + "date": "2026-09-23", + "time": "6:40p", + "home_team": "Colorado Rockies", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "COL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_ari", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108012,21 +115239,35 @@ "canonical_id": "game_mlb_2026_20260924_laa_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-24T01:40:00Z", + "date": "2026-09-23", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "OAK", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_laa", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260924_sd_lad", - "sport": "MLB", + "canonical_id": "game_wnba_2026_20260924_dal_sea", + "sport": "WNBA", "season": "2026", - "game_datetime_utc": "2026-09-24T02:10:00Z", - "home_team_canonical_id": "team_mlb_lad", - "away_team_canonical_id": "team_mlb_sd", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "date": "2026-09-23", + "time": "7p", + "home_team": "Seattle Storm", + "away_team": "Dallas Wings", + "home_team_abbrev": "SEA", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_wnba_sea", + "away_team_canonical_id": "team_wnba_dal", + "venue": "Climate Pledge Arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -108034,10 +115275,35 @@ "canonical_id": "game_mlb_2026_20260924_hou_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-24T02:10:00Z", + "date": "2026-09-23", + "time": "7:10p", + "home_team": "Seattle Mariners", + "away_team": "Houston Astros", + "home_team_abbrev": "SEA", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260924_sd_lad", + "sport": "MLB", + "season": "2026", + "date": "2026-09-23", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "San Diego Padres", + "home_team_abbrev": "LAD", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mlb_lad", + "away_team_canonical_id": "team_mlb_sd", + "venue": "Dodger Stadium", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108045,10 +115311,17 @@ "canonical_id": "game_mlb_2026_20260924_stl_pit", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-24T16:35:00Z", + "date": "2026-09-24", + "time": "12:35p", + "home_team": "Pittsburgh Pirates", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "PIT", + "away_team_abbrev": "STL", "home_team_canonical_id": "team_mlb_pit", "away_team_canonical_id": "team_mlb_stl", + "venue": "PNC Park", "stadium_canonical_id": "stadium_mlb_pnc_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108056,10 +115329,17 @@ "canonical_id": "game_mlb_2026_20260924_chw_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-24T18:10:00Z", + "date": "2026-09-24", + "time": "1:10p", + "home_team": "Kansas City Royals", + "away_team": "Chicago White Sox", + "home_team_abbrev": "KC", + "away_team_abbrev": "CHW", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_chw", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108067,10 +115347,17 @@ "canonical_id": "game_mlb_2026_20260924_mia_chc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-24T18:20:00Z", + "date": "2026-09-24", + "time": "1:20p", + "home_team": "Chicago Cubs", + "away_team": "Miami Marlins", + "home_team_abbrev": "CHC", + "away_team_abbrev": "MIA", "home_team_canonical_id": "team_mlb_chc", "away_team_canonical_id": "team_mlb_mia", + "venue": "Wrigley Field", "stadium_canonical_id": "stadium_mlb_wrigley_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108078,10 +115365,17 @@ "canonical_id": "game_mlb_2026_20260924_nym_tex_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-24T18:35:00Z", + "date": "2026-09-24", + "time": "1:35p", + "home_team": "Texas Rangers", + "away_team": "New York Mets", + "home_team_abbrev": "TEX", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_tex", "away_team_canonical_id": "team_mlb_nym", + "venue": "Globe Life Field", "stadium_canonical_id": "stadium_mlb_globe_life_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108089,10 +115383,17 @@ "canonical_id": "game_mlb_2026_20260924_ari_col_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-24T19:10:00Z", + "date": "2026-09-24", + "time": "1:10p", + "home_team": "Colorado Rockies", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "COL", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_col", "away_team_canonical_id": "team_mlb_ari", + "venue": "Coors Field", "stadium_canonical_id": "stadium_mlb_coors_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108100,10 +115401,17 @@ "canonical_id": "game_mlb_2026_20260924_mil_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-24T22:05:00Z", + "date": "2026-09-24", + "time": "6:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Milwaukee Brewers", + "home_team_abbrev": "PHI", + "away_team_abbrev": "MIL", "home_team_canonical_id": "team_mlb_phi", "away_team_canonical_id": "team_mlb_mil", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108111,10 +115419,17 @@ "canonical_id": "game_mlb_2026_20260924_cle_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-24T22:45:00Z", + "date": "2026-09-24", + "time": "6:45p", + "home_team": "Boston Red Sox", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_cle", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108122,10 +115437,17 @@ "canonical_id": "game_mlb_2026_20260924_tbr_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-24T23:05:00Z", + "date": "2026-09-24", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "NYY", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_nyy", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108133,10 +115455,53 @@ "canonical_id": "game_mlb_2026_20260924_cin_atl", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-24T23:15:00Z", + "date": "2026-09-24", + "time": "7:15p", + "home_team": "Atlanta Braves", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_atl", "away_team_canonical_id": "team_mlb_cin", + "venue": "Truist Park", "stadium_canonical_id": "stadium_mlb_truist_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260924_chi_was", + "sport": "WNBA", + "season": "2026", + "date": "2026-09-24", + "time": "7:30p", + "home_team": "Washington Mystics", + "away_team": "Chicago Sky", + "home_team_abbrev": "WAS", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_wnba_was", + "away_team_canonical_id": "team_wnba_chi", + "venue": "Entertainment & Sports Arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260925_ind_min", + "sport": "WNBA", + "season": "2026", + "date": "2026-09-24", + "time": "7p", + "home_team": "Minnesota Lynx", + "away_team": "Indiana Fever", + "home_team_abbrev": "MIN", + "away_team_abbrev": "IND", + "home_team_canonical_id": "team_wnba_min", + "away_team_canonical_id": "team_wnba_ind", + "venue": "Target Center", + "stadium_canonical_id": "stadium_wnba_target_center", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -108144,10 +115509,17 @@ "canonical_id": "game_mlb_2026_20260925_laa_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-25T01:40:00Z", + "date": "2026-09-24", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "SEA", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108155,10 +115527,53 @@ "canonical_id": "game_mlb_2026_20260925_hou_oak", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-25T01:40:00Z", + "date": "2026-09-24", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Houston Astros", + "home_team_abbrev": "OAK", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_hou", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260925_lv_phx", + "sport": "WNBA", + "season": "2026", + "date": "2026-09-24", + "time": "10p", + "home_team": "Phoenix Mercury", + "away_team": "Las Vegas Aces", + "home_team_abbrev": "PHX", + "away_team_abbrev": "LV", + "home_team_canonical_id": "team_wnba_phx", + "away_team_canonical_id": "team_wnba_lv", + "venue": "Rocket Mortgage FieldHouse", + "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_wnba_2026_20260925_gsv_la", + "sport": "WNBA", + "season": "2026", + "date": "2026-09-24", + "time": "7p", + "home_team": "Los Angeles Sparks", + "away_team": "Golden State Valkyries", + "home_team_abbrev": "LA", + "away_team_abbrev": "GSV", + "home_team_canonical_id": "team_wnba_la", + "away_team_canonical_id": "team_wnba_gsv", + "venue": "Crypto.com Arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -108166,10 +115581,35 @@ "canonical_id": "game_mlb_2026_20260925_sd_lad", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-25T02:10:00Z", + "date": "2026-09-24", + "time": "7:10p", + "home_team": "Los Angeles Dodgers", + "away_team": "San Diego Padres", + "home_team_abbrev": "LAD", + "away_team_abbrev": "SD", "home_team_canonical_id": "team_mlb_lad", "away_team_canonical_id": "team_mlb_sd", + "venue": "Dodger Stadium", "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260925_sdw_rgn", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-25", + "time": "6:30p", + "home_team": "Louisville Racing Louisville", + "away_team": "San Diego San Diego Wave", + "home_team_abbrev": "RGN", + "away_team_abbrev": "SDW", + "home_team_canonical_id": "team_nwsl_rgn", + "away_team_canonical_id": "team_nwsl_sdw", + "venue": "Lynn Family Stadium", + "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -108177,10 +115617,17 @@ "canonical_id": "game_mlb_2026_20260925_tbr_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-25T22:40:00Z", + "date": "2026-09-25", + "time": "6:40p", + "home_team": "Philadelphia Phillies", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108188,10 +115635,17 @@ "canonical_id": "game_mlb_2026_20260925_pit_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-25T22:40:00Z", + "date": "2026-09-25", + "time": "6:40p", + "home_team": "Detroit Tigers", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "DET", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_pit", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108199,10 +115653,17 @@ "canonical_id": "game_mlb_2026_20260925_nym_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-25T22:45:00Z", + "date": "2026-09-25", + "time": "6:45p", + "home_team": "Washington Nationals", + "away_team": "New York Mets", + "home_team_abbrev": "WSN", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_nym", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108210,10 +115671,17 @@ "canonical_id": "game_mlb_2026_20260925_bal_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-25T23:05:00Z", + "date": "2026-09-25", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "NYY", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_bal", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108221,21 +115689,17 @@ "canonical_id": "game_mlb_2026_20260925_cin_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-25T23:07:00Z", + "date": "2026-09-25", + "time": "7:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_cin", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260925_chc_bos", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-25T23:10:00Z", - "home_team_canonical_id": "team_mlb_bos", - "away_team_canonical_id": "team_mlb_chc", - "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108243,32 +115707,35 @@ "canonical_id": "game_mlb_2026_20260925_atl_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-25T23:10:00Z", + "date": "2026-09-25", + "time": "7:10p", + "home_team": "Miami Marlins", + "away_team": "Atlanta Braves", + "home_team_abbrev": "MIA", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_atl", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260925_stl_mil", + "canonical_id": "game_mlb_2026_20260925_chc_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-25T23:40:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260925_col_chw", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-25T23:40:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "date": "2026-09-25", + "time": "7:10p", + "home_team": "Boston Red Sox", + "away_team": "Chicago Cubs", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CHC", + "home_team_canonical_id": "team_mlb_bos", + "away_team_canonical_id": "team_mlb_chc", + "venue": "Fenway Park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108276,10 +115743,71 @@ "canonical_id": "game_mlb_2026_20260925_cle_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-25T23:40:00Z", + "date": "2026-09-25", + "time": "6:40p", + "home_team": "Kansas City Royals", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "KC", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_cle", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260925_col_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "6:40p", + "home_team": "Chicago White Sox", + "away_team": "Colorado Rockies", + "home_team_abbrev": "CHW", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_col", + "venue": "Guaranteed Rate Field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260925_stl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "6:40p", + "home_team": "Milwaukee Brewers", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "MIL", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_stl", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260926_chi_njy", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-25", + "time": "8p", + "home_team": "New Jersey NJ/NY Gotham FC", + "away_team": "Chicago Chicago Red Stars", + "home_team_abbrev": "NJY", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nwsl_njy", + "away_team_canonical_id": "team_nwsl_chi", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_nwsl_red_bull_arena", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -108287,21 +115815,35 @@ "canonical_id": "game_mlb_2026_20260926_tex_min_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-26T00:10:00Z", + "date": "2026-09-25", + "time": "7:10p", + "home_team": "Minnesota Twins", + "away_team": "Texas Rangers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "TEX", "home_team_canonical_id": "team_mlb_min", "away_team_canonical_id": "team_mlb_tex", + "venue": "Target Field", "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260926_hou_oak", - "sport": "MLB", + "canonical_id": "game_nwsl_2026_20260926_bos_sea", + "sport": "NWSL", "season": "2026", - "game_datetime_utc": "2026-09-26T01:40:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "date": "2026-09-25", + "time": "5:30p", + "home_team": "Seattle Seattle Reign", + "away_team": "Boston Boston Legacy FC", + "home_team_abbrev": "SEA", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nwsl_sea", + "away_team_canonical_id": "team_nwsl_bos", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_nwsl_lumen_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -108309,10 +115851,35 @@ "canonical_id": "game_mlb_2026_20260926_ari_sd", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-26T01:40:00Z", + "date": "2026-09-25", + "time": "6:40p", + "home_team": "San Diego Padres", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "SD", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_ari", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260926_hou_oak", + "sport": "MLB", + "season": "2026", + "date": "2026-09-25", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Houston Astros", + "home_team_abbrev": "OAK", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_hou", + "venue": "Sutter Health Park", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108320,10 +115887,17 @@ "canonical_id": "game_mlb_2026_20260926_laa_sea", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-26T02:10:00Z", + "date": "2026-09-25", + "time": "7:10p", + "home_team": "Seattle Mariners", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "SEA", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108331,10 +115905,35 @@ "canonical_id": "game_mlb_2026_20260926_lad_sf_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-26T02:15:00Z", + "date": "2026-09-25", + "time": "7:15p", + "home_team": "San Francisco Giants", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "SF", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_lad", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260926_den_kcc", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-26", + "time": "11:30a", + "home_team": "Kansas City Kansas City Current", + "away_team": "Denver Denver Summit FC", + "home_team_abbrev": "KCC", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nwsl_kcc", + "away_team_canonical_id": "team_nwsl_den", + "venue": "CPKC Stadium", + "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -108342,10 +115941,17 @@ "canonical_id": "game_mlb_2026_20260926_pit_det", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-26T17:10:00Z", + "date": "2026-09-26", + "time": "1:10p", + "home_team": "Detroit Tigers", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "DET", + "away_team_abbrev": "PIT", "home_team_canonical_id": "team_mlb_det", "away_team_canonical_id": "team_mlb_pit", + "venue": "Comerica Park", "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108353,10 +115959,17 @@ "canonical_id": "game_mlb_2026_20260926_cin_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-26T19:07:00Z", + "date": "2026-09-26", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_cin", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108364,10 +115977,17 @@ "canonical_id": "game_mlb_2026_20260926_nym_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-26T20:05:00Z", + "date": "2026-09-26", + "time": "4:05p", + "home_team": "Washington Nationals", + "away_team": "New York Mets", + "home_team_abbrev": "WSN", + "away_team_abbrev": "NYM", "home_team_canonical_id": "team_mlb_wsn", "away_team_canonical_id": "team_mlb_nym", + "venue": "Nationals Park", "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108375,21 +115995,17 @@ "canonical_id": "game_mlb_2026_20260926_lad_sf_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-26T20:05:00Z", + "date": "2026-09-26", + "time": "1:05p", + "home_team": "San Francisco Giants", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "SF", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_lad", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260926_tex_min_2", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-26T20:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108397,10 +116013,35 @@ "canonical_id": "game_mlb_2026_20260926_atl_mia", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-26T20:10:00Z", + "date": "2026-09-26", + "time": "4:10p", + "home_team": "Miami Marlins", + "away_team": "Atlanta Braves", + "home_team_abbrev": "MIA", + "away_team_abbrev": "ATL", "home_team_canonical_id": "team_mlb_mia", "away_team_canonical_id": "team_mlb_atl", + "venue": "loanDepot park", "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260926_tex_min_2", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "3:10p", + "home_team": "Minnesota Twins", + "away_team": "Texas Rangers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Target Field", + "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108408,10 +116049,35 @@ "canonical_id": "game_mlb_2026_20260926_tbr_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-26T22:05:00Z", + "date": "2026-09-26", + "time": "6:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260926_ang_wsh", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-26", + "time": "6:30p", + "home_team": "Washington Washington Spirit", + "away_team": "Los Angeles Angel City FC", + "home_team_abbrev": "WSH", + "away_team_abbrev": "ANG", + "home_team_canonical_id": "team_nwsl_wsh", + "away_team_canonical_id": "team_nwsl_ang", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_nwsl_audi_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -108419,32 +116085,17 @@ "canonical_id": "game_mlb_2026_20260926_bal_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-26T23:05:00Z", + "date": "2026-09-26", + "time": "7:05p", + "home_team": "New York Yankees", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "NYY", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_bal", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260926_stl_mil", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-26T23:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260926_col_chw", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-26T23:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108452,10 +116103,53 @@ "canonical_id": "game_mlb_2026_20260926_cle_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-26T23:10:00Z", + "date": "2026-09-26", + "time": "6:10p", + "home_team": "Kansas City Royals", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "KC", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_cle", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260926_stl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "6:10p", + "home_team": "Milwaukee Brewers", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "MIL", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_stl", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260926_col_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "6:10p", + "home_team": "Chicago White Sox", + "away_team": "Colorado Rockies", + "home_team_abbrev": "CHW", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_col", + "venue": "Guaranteed Rate Field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108463,10 +116157,197 @@ "canonical_id": "game_mlb_2026_20260926_chc_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-26T23:15:00Z", + "date": "2026-09-26", + "time": "7:15p", + "home_team": "Boston Red Sox", + "away_team": "Chicago Cubs", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_chc", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260926_stl_ny", + "sport": "MLS", + "season": "2026", + "date": "2026-09-26", + "time": "7:30p", + "home_team": "New York New York Red Bulls", + "away_team": "St. Louis St. Louis City SC", + "home_team_abbrev": "RB", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mls_ny", + "away_team_canonical_id": "team_mls_stl", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_mls_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260926_orl_phi", + "sport": "MLS", + "season": "2026", + "date": "2026-09-26", + "time": "7:30p", + "home_team": "Philadelphia Philadelphia Union", + "away_team": "Orlando Orlando City", + "home_team_abbrev": "PHI", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_mls_phi", + "away_team_canonical_id": "team_mls_orl", + "venue": "Subaru Park", + "stadium_canonical_id": "stadium_mls_subaru_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260926_nyc_atl", + "sport": "MLS", + "season": "2026", + "date": "2026-09-26", + "time": "7:30p", + "home_team": "Atlanta Atlanta United", + "away_team": "New York New York City FC", + "home_team_abbrev": "ATL", + "away_team_abbrev": "NYC", + "home_team_canonical_id": "team_mls_atl", + "away_team_canonical_id": "team_mls_nyc", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260926_cin_mtl", + "sport": "MLS", + "season": "2026", + "date": "2026-09-26", + "time": "7:30p", + "home_team": "Montreal CF Montreal", + "away_team": "Cincinnati FC Cincinnati", + "home_team_abbrev": "MTL", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mls_mtl", + "away_team_canonical_id": "team_mls_cin", + "venue": "Stade Saputo", + "stadium_canonical_id": "stadium_mls_stade_saputo", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260926_chi_clt", + "sport": "MLS", + "season": "2026", + "date": "2026-09-26", + "time": "7:30p", + "home_team": "Charlotte Charlotte FC", + "away_team": "Chicago Chicago Fire", + "home_team_abbrev": "CLT", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_mls_clt", + "away_team_canonical_id": "team_mls_chi", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260927_skc_hou", + "sport": "MLS", + "season": "2026", + "date": "2026-09-26", + "time": "7:30p", + "home_team": "Houston Houston Dynamo", + "away_team": "Kansas City Sporting Kansas City", + "home_team_abbrev": "HOU", + "away_team_abbrev": "SKC", + "home_team_canonical_id": "team_mls_hou", + "away_team_canonical_id": "team_mls_skc", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_mls_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260927_lafc_dal", + "sport": "MLS", + "season": "2026", + "date": "2026-09-26", + "time": "7:30p", + "home_team": "Dallas FC Dallas", + "away_team": "Los Angeles Los Angeles FC", + "home_team_abbrev": "DAL", + "away_team_abbrev": "LAFC", + "home_team_canonical_id": "team_mls_dal", + "away_team_canonical_id": "team_mls_lafc", + "venue": "Toyota Stadium", + "stadium_canonical_id": "stadium_mls_toyota_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260927_sd_aus", + "sport": "MLS", + "season": "2026", + "date": "2026-09-26", + "time": "7:30p", + "home_team": "Austin Austin FC", + "away_team": "San Diego San Diego FC", + "home_team_abbrev": "AUS", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mls_aus", + "away_team_canonical_id": "team_mls_sd", + "venue": "Q2 Stadium", + "stadium_canonical_id": "stadium_mls_q2_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260927_tor_nsh", + "sport": "MLS", + "season": "2026", + "date": "2026-09-26", + "time": "7:30p", + "home_team": "Nashville Nashville SC", + "away_team": "Toronto Toronto FC", + "home_team_abbrev": "NSH", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mls_nsh", + "away_team_canonical_id": "team_mls_tor", + "venue": "GEODIS Park", + "stadium_canonical_id": "stadium_mls_geodis_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260927_min_sea", + "sport": "MLS", + "season": "2026", + "date": "2026-09-26", + "time": "5:30p", + "home_team": "Seattle Seattle Sounders", + "away_team": "Minnesota Minnesota United", + "home_team_abbrev": "SEA", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mls_sea", + "away_team_canonical_id": "team_mls_min", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_mls_lumen_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -108474,21 +116355,53 @@ "canonical_id": "game_mlb_2026_20260927_ari_sd_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-27T00:40:00Z", + "date": "2026-09-26", + "time": "5:40p", + "home_team": "San Diego Padres", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "SD", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_ari", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260927_laa_sea_1", - "sport": "MLB", + "canonical_id": "game_nwsl_2026_20260927_hou_por", + "sport": "NWSL", "season": "2026", - "game_datetime_utc": "2026-09-27T01:40:00Z", - "home_team_canonical_id": "team_mlb_sea", - "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "date": "2026-09-26", + "time": "5:45p", + "home_team": "Portland Portland Thorns", + "away_team": "Houston Houston Dash", + "home_team_abbrev": "POR", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nwsl_por", + "away_team_canonical_id": "team_nwsl_hou", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_nwsl_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260927_ne_slc", + "sport": "MLS", + "season": "2026", + "date": "2026-09-26", + "time": "7:30p", + "home_team": "Salt Lake Real Salt Lake", + "away_team": "New England New England Revolution", + "home_team_abbrev": "SLC", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_mls_slc", + "away_team_canonical_id": "team_mls_ne", + "venue": "America First Field", + "stadium_canonical_id": "stadium_mls_america_first_field", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -108496,10 +116409,89 @@ "canonical_id": "game_mlb_2026_20260927_hou_oak_1", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-27T01:40:00Z", + "date": "2026-09-26", + "time": "6:40p", + "home_team": "Oakland Athletics", + "away_team": "Houston Astros", + "home_team_abbrev": "OAK", + "away_team_abbrev": "HOU", "home_team_canonical_id": "team_mlb_oak", "away_team_canonical_id": "team_mlb_hou", + "venue": "Sutter Health Park", "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260927_laa_sea_1", + "sport": "MLB", + "season": "2026", + "date": "2026-09-26", + "time": "6:40p", + "home_team": "Seattle Mariners", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "SEA", + "away_team_abbrev": "LAA", + "home_team_canonical_id": "team_mlb_sea", + "away_team_canonical_id": "team_mlb_laa", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260927_col_lag", + "sport": "MLS", + "season": "2026", + "date": "2026-09-26", + "time": "7:30p", + "home_team": "Los Angeles LA Galaxy", + "away_team": "Colorado Colorado Rapids", + "home_team_abbrev": "LAG", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mls_lag", + "away_team_canonical_id": "team_mls_col", + "venue": "Dignity Health Sports Park", + "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260927_por_sj", + "sport": "MLS", + "season": "2026", + "date": "2026-09-26", + "time": "7:30p", + "home_team": "San Jose San Jose Earthquakes", + "away_team": "Portland Portland Timbers", + "home_team_abbrev": "SJ", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_mls_sj", + "away_team_canonical_id": "team_mls_por", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_mls_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260927_dc_van", + "sport": "MLS", + "season": "2026", + "date": "2026-09-26", + "time": "7:30p", + "home_team": "Vancouver Vancouver Whitecaps", + "away_team": "Washington D.C. United", + "home_team_abbrev": "VAN", + "away_team_abbrev": "DC", + "home_team_canonical_id": "team_mls_van", + "away_team_canonical_id": "team_mls_dc", + "venue": "BC Place", + "stadium_canonical_id": "stadium_mls_bc_place", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null }, @@ -108507,21 +116499,17 @@ "canonical_id": "game_mlb_2026_20260927_tbr_phi", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-27T19:05:00Z", + "date": "2026-09-27", + "time": "3:05p", + "home_team": "Philadelphia Phillies", + "away_team": "Tampa Bay Rays", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TB", "home_team_canonical_id": "team_mlb_phi", - "away_team_canonical_id": "team_mlb_tb", + "away_team_canonical_id": "team_mlb_tbr", + "venue": "Citizens Bank Park", "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260927_nym_wsn", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-27T19:05:00Z", - "home_team_canonical_id": "team_mlb_wsn", - "away_team_canonical_id": "team_mlb_nym", - "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108529,21 +116517,35 @@ "canonical_id": "game_mlb_2026_20260927_lad_sf", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-27T19:05:00Z", + "date": "2026-09-27", + "time": "12:05p", + "home_team": "San Francisco Giants", + "away_team": "Los Angeles Dodgers", + "home_team_abbrev": "SF", + "away_team_abbrev": "LAD", "home_team_canonical_id": "team_mlb_sf", "away_team_canonical_id": "team_mlb_lad", + "venue": "Oracle Park", "stadium_canonical_id": "stadium_mlb_oracle_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260927_hou_oak_2", + "canonical_id": "game_mlb_2026_20260927_nym_wsn", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-27T19:05:00Z", - "home_team_canonical_id": "team_mlb_oak", - "away_team_canonical_id": "team_mlb_hou", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "date": "2026-09-27", + "time": "3:05p", + "home_team": "Washington Nationals", + "away_team": "New York Mets", + "home_team_abbrev": "WSN", + "away_team_abbrev": "NYM", + "home_team_canonical_id": "team_mlb_wsn", + "away_team_canonical_id": "team_mlb_nym", + "venue": "Nationals Park", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108551,10 +116553,35 @@ "canonical_id": "game_mlb_2026_20260927_chc_bos", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-27T19:05:00Z", + "date": "2026-09-27", + "time": "3:05p", + "home_team": "Boston Red Sox", + "away_team": "Chicago Cubs", + "home_team_abbrev": "BOS", + "away_team_abbrev": "CHC", "home_team_canonical_id": "team_mlb_bos", "away_team_canonical_id": "team_mlb_chc", + "venue": "Fenway Park", "stadium_canonical_id": "stadium_mlb_fenway_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260927_hou_oak_2", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "12:05p", + "home_team": "Oakland Athletics", + "away_team": "Houston Astros", + "home_team_abbrev": "OAK", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mlb_oak", + "away_team_canonical_id": "team_mlb_hou", + "venue": "Sutter Health Park", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108562,43 +116589,17 @@ "canonical_id": "game_mlb_2026_20260927_cin_tor", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-27T19:07:00Z", + "date": "2026-09-27", + "time": "3:07p", + "home_team": "Toronto Blue Jays", + "away_team": "Cincinnati Reds", + "home_team_abbrev": "TOR", + "away_team_abbrev": "CIN", "home_team_canonical_id": "team_mlb_tor", "away_team_canonical_id": "team_mlb_cin", + "venue": "Rogers Centre", "stadium_canonical_id": "stadium_mlb_rogers_centre", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260927_tex_min", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-27T19:10:00Z", - "home_team_canonical_id": "team_mlb_min", - "away_team_canonical_id": "team_mlb_tex", - "stadium_canonical_id": "stadium_mlb_target_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260927_stl_mil", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-27T19:10:00Z", - "home_team_canonical_id": "team_mlb_mil", - "away_team_canonical_id": "team_mlb_stl", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260927_pit_det", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-27T19:10:00Z", - "home_team_canonical_id": "team_mlb_det", - "away_team_canonical_id": "team_mlb_pit", - "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108606,21 +116607,53 @@ "canonical_id": "game_mlb_2026_20260927_laa_sea_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-27T19:10:00Z", + "date": "2026-09-27", + "time": "12:10p", + "home_team": "Seattle Mariners", + "away_team": "Los Angeles Angels", + "home_team_abbrev": "SEA", + "away_team_abbrev": "LAA", "home_team_canonical_id": "team_mlb_sea", "away_team_canonical_id": "team_mlb_laa", - "stadium_canonical_id": "stadium_mlb_t_mobile_park", + "venue": "T-Mobile Park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, { - "canonical_id": "game_mlb_2026_20260927_col_chw", + "canonical_id": "game_mlb_2026_20260927_tex_min", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-27T19:10:00Z", - "home_team_canonical_id": "team_mlb_chw", - "away_team_canonical_id": "team_mlb_col", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "date": "2026-09-27", + "time": "2:10p", + "home_team": "Minnesota Twins", + "away_team": "Texas Rangers", + "home_team_abbrev": "MIN", + "away_team_abbrev": "TEX", + "home_team_canonical_id": "team_mlb_min", + "away_team_canonical_id": "team_mlb_tex", + "venue": "Target Field", + "stadium_canonical_id": "stadium_mlb_target_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260927_pit_det", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "3:10p", + "home_team": "Detroit Tigers", + "away_team": "Pittsburgh Pirates", + "home_team_abbrev": "DET", + "away_team_abbrev": "PIT", + "home_team_canonical_id": "team_mlb_det", + "away_team_canonical_id": "team_mlb_pit", + "venue": "Comerica Park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108628,21 +116661,17 @@ "canonical_id": "game_mlb_2026_20260927_cle_kc", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-27T19:10:00Z", + "date": "2026-09-27", + "time": "2:10p", + "home_team": "Kansas City Royals", + "away_team": "Cleveland Guardians", + "home_team_abbrev": "KC", + "away_team_abbrev": "CLE", "home_team_canonical_id": "team_mlb_kc", "away_team_canonical_id": "team_mlb_cle", + "venue": "Kauffman Stadium", "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "is_playoff": false, - "broadcast_info": null - }, - { - "canonical_id": "game_mlb_2026_20260927_atl_mia", - "sport": "MLB", - "season": "2026", - "game_datetime_utc": "2026-09-27T19:10:00Z", - "home_team_canonical_id": "team_mlb_mia", - "away_team_canonical_id": "team_mlb_atl", - "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108650,10 +116679,71 @@ "canonical_id": "game_mlb_2026_20260927_ari_sd_2", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-27T19:10:00Z", + "date": "2026-09-27", + "time": "12:10p", + "home_team": "San Diego Padres", + "away_team": "Arizona Diamondbacks", + "home_team_abbrev": "SD", + "away_team_abbrev": "ARI", "home_team_canonical_id": "team_mlb_sd", "away_team_canonical_id": "team_mlb_ari", + "venue": "Petco Park", "stadium_canonical_id": "stadium_mlb_petco_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260927_col_chw", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "2:10p", + "home_team": "Chicago White Sox", + "away_team": "Colorado Rockies", + "home_team_abbrev": "CHW", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mlb_chw", + "away_team_canonical_id": "team_mlb_col", + "venue": "Guaranteed Rate Field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260927_atl_mia", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "3:10p", + "home_team": "Miami Marlins", + "away_team": "Atlanta Braves", + "home_team_abbrev": "MIA", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mlb_mia", + "away_team_canonical_id": "team_mlb_atl", + "venue": "loanDepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mlb_2026_20260927_stl_mil", + "sport": "MLB", + "season": "2026", + "date": "2026-09-27", + "time": "2:10p", + "home_team": "Milwaukee Brewers", + "away_team": "St. Louis Cardinals", + "home_team_abbrev": "MIL", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mlb_mil", + "away_team_canonical_id": "team_mlb_stl", + "venue": "American Family Field", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "source": "statsapi.mlb.com", "is_playoff": false, "broadcast_info": null }, @@ -108661,10 +116751,2501 @@ "canonical_id": "game_mlb_2026_20260927_bal_nyy", "sport": "MLB", "season": "2026", - "game_datetime_utc": "2026-09-27T19:20:00Z", + "date": "2026-09-27", + "time": "3:20p", + "home_team": "New York Yankees", + "away_team": "Baltimore Orioles", + "home_team_abbrev": "NYY", + "away_team_abbrev": "BAL", "home_team_canonical_id": "team_mlb_nyy", "away_team_canonical_id": "team_mlb_bal", + "venue": "Yankee Stadium", "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "source": "statsapi.mlb.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260927_orl_bay", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-27", + "time": "2p", + "home_team": "San Francisco Bay FC", + "away_team": "Orlando Orlando Pride", + "home_team_abbrev": "BAY", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nwsl_bay", + "away_team_canonical_id": "team_nwsl_orl", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_nwsl_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20260927_mia_clb", + "sport": "MLS", + "season": "2026", + "date": "2026-09-27", + "time": "7p", + "home_team": "Columbus Columbus Crew", + "away_team": "Miami Inter Miami", + "home_team_abbrev": "CLB", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mls_clb", + "away_team_canonical_id": "team_mls_mia", + "venue": "Lower.com Field", + "stadium_canonical_id": "stadium_mls_lowercom_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20260927_ncc_uta", + "sport": "NWSL", + "season": "2026", + "date": "2026-09-27", + "time": "5p", + "home_team": "Utah Utah Royals", + "away_team": "North Carolina North Carolina Courage", + "home_team_abbrev": "UTA", + "away_team_abbrev": "NCC", + "home_team_canonical_id": "team_nwsl_uta", + "away_team_canonical_id": "team_nwsl_ncc", + "venue": "America First Field", + "stadium_canonical_id": "stadium_nwsl_america_first_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261003_sdw_orl", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-02", + "time": "8p", + "home_team": "Orlando Orlando Pride", + "away_team": "San Diego San Diego Wave", + "home_team_abbrev": "ORL", + "away_team_abbrev": "SDW", + "home_team_canonical_id": "team_nwsl_orl", + "away_team_canonical_id": "team_nwsl_sdw", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261003_ncc_sea", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-02", + "time": "7p", + "home_team": "Seattle Seattle Reign", + "away_team": "North Carolina North Carolina Courage", + "home_team_abbrev": "SEA", + "away_team_abbrev": "NCC", + "home_team_canonical_id": "team_nwsl_sea", + "away_team_canonical_id": "team_nwsl_ncc", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_nwsl_lumen_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261003_uta_rgn", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-03", + "time": "4p", + "home_team": "Louisville Racing Louisville", + "away_team": "Utah Utah Royals", + "home_team_abbrev": "RGN", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nwsl_rgn", + "away_team_canonical_id": "team_nwsl_uta", + "venue": "Lynn Family Stadium", + "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261003_bay_kcc", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-03", + "time": "5:30p", + "home_team": "Kansas City Kansas City Current", + "away_team": "San Francisco Bay FC", + "home_team_abbrev": "KCC", + "away_team_abbrev": "BAY", + "home_team_canonical_id": "team_nwsl_kcc", + "away_team_canonical_id": "team_nwsl_bay", + "venue": "CPKC Stadium", + "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261004_bos_por", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-03", + "time": "5:45p", + "home_team": "Portland Portland Thorns", + "away_team": "Boston Boston Legacy FC", + "home_team_abbrev": "POR", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nwsl_por", + "away_team_canonical_id": "team_nwsl_bos", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_nwsl_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261004_ang_njy", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-04", + "time": "12p", + "home_team": "New Jersey NJ/NY Gotham FC", + "away_team": "Los Angeles Angel City FC", + "home_team_abbrev": "NJY", + "away_team_abbrev": "ANG", + "home_team_canonical_id": "team_nwsl_njy", + "away_team_canonical_id": "team_nwsl_ang", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_nwsl_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261004_den_chi", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-04", + "time": "3p", + "home_team": "Chicago Chicago Red Stars", + "away_team": "Denver Denver Summit FC", + "home_team_abbrev": "CHI", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nwsl_chi", + "away_team_canonical_id": "team_nwsl_den", + "venue": "Northwestern Medicine Field at Martin Stadium", + "stadium_canonical_id": "stadium_nwsl_northwestern_medicine_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261004_wsh_hou", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-04", + "time": "6p", + "home_team": "Houston Houston Dash", + "away_team": "Washington Washington Spirit", + "home_team_abbrev": "HOU", + "away_team_abbrev": "WSH", + "home_team_canonical_id": "team_nwsl_hou", + "away_team_canonical_id": "team_nwsl_wsh", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261010_mtl_tor", + "sport": "MLS", + "season": "2026", + "date": "2026-10-10", + "time": "1p", + "home_team": "Toronto Toronto FC", + "away_team": "Montreal CF Montreal", + "home_team_abbrev": "TOR", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_mls_tor", + "away_team_canonical_id": "team_mls_mtl", + "venue": "BMO Field", + "stadium_canonical_id": "stadium_mls_bmo_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261010_nyc_chi", + "sport": "MLS", + "season": "2026", + "date": "2026-10-10", + "time": "1:30p", + "home_team": "Chicago Chicago Fire", + "away_team": "New York New York City FC", + "home_team_abbrev": "CHI", + "away_team_abbrev": "NYC", + "home_team_canonical_id": "team_mls_chi", + "away_team_canonical_id": "team_mls_nyc", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_mls_soldier_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261010_sea_ne", + "sport": "MLS", + "season": "2026", + "date": "2026-10-10", + "time": "7:30p", + "home_team": "New England New England Revolution", + "away_team": "Seattle Seattle Sounders", + "home_team_abbrev": "NE", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mls_ne", + "away_team_canonical_id": "team_mls_sea", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_mls_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261010_cin_atl", + "sport": "MLS", + "season": "2026", + "date": "2026-10-10", + "time": "7:30p", + "home_team": "Atlanta Atlanta United", + "away_team": "Cincinnati FC Cincinnati", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mls_atl", + "away_team_canonical_id": "team_mls_cin", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261010_dal_clt", + "sport": "MLS", + "season": "2026", + "date": "2026-10-10", + "time": "7:30p", + "home_team": "Charlotte Charlotte FC", + "away_team": "Dallas FC Dallas", + "home_team_abbrev": "CLT", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_mls_clt", + "away_team_canonical_id": "team_mls_dal", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261010_dc_mia", + "sport": "MLS", + "season": "2026", + "date": "2026-10-10", + "time": "7:30p", + "home_team": "Miami Inter Miami", + "away_team": "Washington D.C. United", + "home_team_abbrev": "MIA", + "away_team_abbrev": "DC", + "home_team_canonical_id": "team_mls_mia", + "away_team_canonical_id": "team_mls_dc", + "venue": "Miami Freedom Park", + "stadium_canonical_id": "stadium_mls_miami_freedom_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261010_sd_ny", + "sport": "MLS", + "season": "2026", + "date": "2026-10-10", + "time": "7:30p", + "home_team": "New York New York Red Bulls", + "away_team": "San Diego San Diego FC", + "home_team_abbrev": "RB", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mls_ny", + "away_team_canonical_id": "team_mls_sd", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_mls_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261010_clb_orl", + "sport": "MLS", + "season": "2026", + "date": "2026-10-10", + "time": "7:30p", + "home_team": "Orlando Orlando City", + "away_team": "Columbus Columbus Crew", + "home_team_abbrev": "ORL", + "away_team_abbrev": "CLB", + "home_team_canonical_id": "team_mls_orl", + "away_team_canonical_id": "team_mls_clb", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261010_slc_phi", + "sport": "MLS", + "season": "2026", + "date": "2026-10-10", + "time": "7:30p", + "home_team": "Philadelphia Philadelphia Union", + "away_team": "Salt Lake Real Salt Lake", + "home_team_abbrev": "PHI", + "away_team_abbrev": "SLC", + "home_team_canonical_id": "team_mls_phi", + "away_team_canonical_id": "team_mls_slc", + "venue": "Subaru Park", + "stadium_canonical_id": "stadium_mls_subaru_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261011_nsh_aus", + "sport": "MLS", + "season": "2026", + "date": "2026-10-10", + "time": "7:30p", + "home_team": "Austin Austin FC", + "away_team": "Nashville Nashville SC", + "home_team_abbrev": "AUS", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_mls_aus", + "away_team_canonical_id": "team_mls_nsh", + "venue": "Q2 Stadium", + "stadium_canonical_id": "stadium_mls_q2_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261011_hou_min", + "sport": "MLS", + "season": "2026", + "date": "2026-10-10", + "time": "7:30p", + "home_team": "Minnesota Minnesota United", + "away_team": "Houston Houston Dynamo", + "home_team_abbrev": "MIN", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mls_min", + "away_team_canonical_id": "team_mls_hou", + "venue": "Allianz Field", + "stadium_canonical_id": "stadium_mls_allianz_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261011_por_skc", + "sport": "MLS", + "season": "2026", + "date": "2026-10-10", + "time": "7:30p", + "home_team": "Kansas City Sporting Kansas City", + "away_team": "Portland Portland Timbers", + "home_team_abbrev": "SKC", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_mls_skc", + "away_team_canonical_id": "team_mls_por", + "venue": "Children's Mercy Park", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261011_sj_col", + "sport": "MLS", + "season": "2026", + "date": "2026-10-10", + "time": "7:30p", + "home_team": "Colorado Colorado Rapids", + "away_team": "San Jose San Jose Earthquakes", + "home_team_abbrev": "COL", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_mls_col", + "away_team_canonical_id": "team_mls_sj", + "venue": "Dick's Sporting Goods Park", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261011_van_lafc", + "sport": "MLS", + "season": "2026", + "date": "2026-10-10", + "time": "7:30p", + "home_team": "Los Angeles Los Angeles FC", + "away_team": "Vancouver Vancouver Whitecaps", + "home_team_abbrev": "LAFC", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_mls_lafc", + "away_team_canonical_id": "team_mls_van", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261011_lag_stl", + "sport": "MLS", + "season": "2026", + "date": "2026-10-11", + "time": "6p", + "home_team": "St. Louis St. Louis City SC", + "away_team": "Los Angeles LA Galaxy", + "home_team_abbrev": "STL", + "away_team_abbrev": "LAG", + "home_team_canonical_id": "team_mls_stl", + "away_team_canonical_id": "team_mls_lag", + "venue": "CITYPARK", + "stadium_canonical_id": "stadium_mls_citypark", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261014_orl_tor", + "sport": "MLS", + "season": "2026", + "date": "2026-10-14", + "time": "7:30p", + "home_team": "Toronto Toronto FC", + "away_team": "Orlando Orlando City", + "home_team_abbrev": "TOR", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_mls_tor", + "away_team_canonical_id": "team_mls_orl", + "venue": "BMO Field", + "stadium_canonical_id": "stadium_mls_bmo_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261014_nyc_mia", + "sport": "MLS", + "season": "2026", + "date": "2026-10-14", + "time": "7:30p", + "home_team": "Miami Inter Miami", + "away_team": "New York New York City FC", + "home_team_abbrev": "MIA", + "away_team_abbrev": "NYC", + "home_team_canonical_id": "team_mls_mia", + "away_team_canonical_id": "team_mls_nyc", + "venue": "Miami Freedom Park", + "stadium_canonical_id": "stadium_mls_miami_freedom_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261014_ne_cin", + "sport": "MLS", + "season": "2026", + "date": "2026-10-14", + "time": "7:30p", + "home_team": "Cincinnati FC Cincinnati", + "away_team": "New England New England Revolution", + "home_team_abbrev": "CIN", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_mls_cin", + "away_team_canonical_id": "team_mls_ne", + "venue": "TQL Stadium", + "stadium_canonical_id": "stadium_mls_tql_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261014_ny_dc", + "sport": "MLS", + "season": "2026", + "date": "2026-10-14", + "time": "7:30p", + "home_team": "Washington D.C. United", + "away_team": "New York New York Red Bulls", + "home_team_abbrev": "DC", + "away_team_abbrev": "RB", + "home_team_canonical_id": "team_mls_dc", + "away_team_canonical_id": "team_mls_ny", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_mls_audi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261014_clt_clb", + "sport": "MLS", + "season": "2026", + "date": "2026-10-14", + "time": "7:30p", + "home_team": "Columbus Columbus Crew", + "away_team": "Charlotte Charlotte FC", + "home_team_abbrev": "CLB", + "away_team_abbrev": "CLT", + "home_team_canonical_id": "team_mls_clb", + "away_team_canonical_id": "team_mls_clt", + "venue": "Lower.com Field", + "stadium_canonical_id": "stadium_mls_lowercom_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261014_atl_mtl", + "sport": "MLS", + "season": "2026", + "date": "2026-10-14", + "time": "7:30p", + "home_team": "Montreal CF Montreal", + "away_team": "Atlanta Atlanta United", + "home_team_abbrev": "MTL", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mls_mtl", + "away_team_canonical_id": "team_mls_atl", + "venue": "Stade Saputo", + "stadium_canonical_id": "stadium_mls_stade_saputo", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261015_skc_nsh", + "sport": "MLS", + "season": "2026", + "date": "2026-10-14", + "time": "7:30p", + "home_team": "Nashville Nashville SC", + "away_team": "Kansas City Sporting Kansas City", + "home_team_abbrev": "NSH", + "away_team_abbrev": "SKC", + "home_team_canonical_id": "team_mls_nsh", + "away_team_canonical_id": "team_mls_skc", + "venue": "GEODIS Park", + "stadium_canonical_id": "stadium_mls_geodis_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261015_van_stl", + "sport": "MLS", + "season": "2026", + "date": "2026-10-14", + "time": "7:30p", + "home_team": "St. Louis St. Louis City SC", + "away_team": "Vancouver Vancouver Whitecaps", + "home_team_abbrev": "STL", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_mls_stl", + "away_team_canonical_id": "team_mls_van", + "venue": "CITYPARK", + "stadium_canonical_id": "stadium_mls_citypark", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261015_phi_chi", + "sport": "MLS", + "season": "2026", + "date": "2026-10-14", + "time": "7:30p", + "home_team": "Chicago Chicago Fire", + "away_team": "Philadelphia Philadelphia Union", + "home_team_abbrev": "CHI", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mls_chi", + "away_team_canonical_id": "team_mls_phi", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_mls_soldier_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261015_sea_dal", + "sport": "MLS", + "season": "2026", + "date": "2026-10-14", + "time": "7:30p", + "home_team": "Dallas FC Dallas", + "away_team": "Seattle Seattle Sounders", + "home_team_abbrev": "DAL", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mls_dal", + "away_team_canonical_id": "team_mls_sea", + "venue": "Toyota Stadium", + "stadium_canonical_id": "stadium_mls_toyota_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261015_min_col", + "sport": "MLS", + "season": "2026", + "date": "2026-10-14", + "time": "7:30p", + "home_team": "Colorado Colorado Rapids", + "away_team": "Minnesota Minnesota United", + "home_team_abbrev": "COL", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mls_col", + "away_team_canonical_id": "team_mls_min", + "venue": "Dick's Sporting Goods Park", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261015_sj_slc", + "sport": "MLS", + "season": "2026", + "date": "2026-10-14", + "time": "7:30p", + "home_team": "Salt Lake Real Salt Lake", + "away_team": "San Jose San Jose Earthquakes", + "home_team_abbrev": "SLC", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_mls_slc", + "away_team_canonical_id": "team_mls_sj", + "venue": "America First Field", + "stadium_canonical_id": "stadium_mls_america_first_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261015_hou_sd", + "sport": "MLS", + "season": "2026", + "date": "2026-10-14", + "time": "7:30p", + "home_team": "San Diego San Diego FC", + "away_team": "Houston Houston Dynamo", + "home_team_abbrev": "SD", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mls_sd", + "away_team_canonical_id": "team_mls_hou", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261015_aus_lafc", + "sport": "MLS", + "season": "2026", + "date": "2026-10-14", + "time": "7:30p", + "home_team": "Los Angeles Los Angeles FC", + "away_team": "Austin Austin FC", + "home_team_abbrev": "LAFC", + "away_team_abbrev": "AUS", + "home_team_canonical_id": "team_mls_lafc", + "away_team_canonical_id": "team_mls_aus", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261015_por_lag", + "sport": "MLS", + "season": "2026", + "date": "2026-10-14", + "time": "7:30p", + "home_team": "Los Angeles LA Galaxy", + "away_team": "Portland Portland Timbers", + "home_team_abbrev": "LAG", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_mls_lag", + "away_team_canonical_id": "team_mls_por", + "venue": "Dignity Health Sports Park", + "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261017_rgn_bos", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-16", + "time": "8p", + "home_team": "Boston Boston Legacy FC", + "away_team": "Louisville Racing Louisville", + "home_team_abbrev": "BOS", + "away_team_abbrev": "RGN", + "home_team_canonical_id": "team_nwsl_bos", + "away_team_canonical_id": "team_nwsl_rgn", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_nwsl_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261017_njy_wsh", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-17", + "time": "12:30p", + "home_team": "Washington Washington Spirit", + "away_team": "New Jersey NJ/NY Gotham FC", + "home_team_abbrev": "WSH", + "away_team_abbrev": "NJY", + "home_team_canonical_id": "team_nwsl_wsh", + "away_team_canonical_id": "team_nwsl_njy", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_nwsl_audi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261017_clt_phi", + "sport": "MLS", + "season": "2026", + "date": "2026-10-17", + "time": "2:30p", + "home_team": "Philadelphia Philadelphia Union", + "away_team": "Charlotte Charlotte FC", + "home_team_abbrev": "PHI", + "away_team_abbrev": "CLT", + "home_team_canonical_id": "team_mls_phi", + "away_team_canonical_id": "team_mls_clt", + "venue": "Subaru Park", + "stadium_canonical_id": "stadium_mls_subaru_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261017_stl_min", + "sport": "MLS", + "season": "2026", + "date": "2026-10-17", + "time": "3:30p", + "home_team": "Minnesota Minnesota United", + "away_team": "St. Louis St. Louis City SC", + "home_team_abbrev": "MIN", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mls_min", + "away_team_canonical_id": "team_mls_stl", + "venue": "Allianz Field", + "stadium_canonical_id": "stadium_mls_allianz_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261017_kcc_uta", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-17", + "time": "4:30p", + "home_team": "Utah Utah Royals", + "away_team": "Kansas City Kansas City Current", + "home_team_abbrev": "UTA", + "away_team_abbrev": "KCC", + "home_team_canonical_id": "team_nwsl_uta", + "away_team_canonical_id": "team_nwsl_kcc", + "venue": "America First Field", + "stadium_canonical_id": "stadium_nwsl_america_first_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261017_sdw_ncc", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-17", + "time": "7p", + "home_team": "North Carolina North Carolina Courage", + "away_team": "San Diego San Diego Wave", + "home_team_abbrev": "NCC", + "away_team_abbrev": "SDW", + "home_team_canonical_id": "team_nwsl_ncc", + "away_team_canonical_id": "team_nwsl_sdw", + "venue": "WakeMed Soccer Park", + "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261017_dc_orl", + "sport": "MLS", + "season": "2026", + "date": "2026-10-17", + "time": "7:30p", + "home_team": "Orlando Orlando City", + "away_team": "Washington D.C. United", + "home_team_abbrev": "ORL", + "away_team_abbrev": "DC", + "home_team_canonical_id": "team_mls_orl", + "away_team_canonical_id": "team_mls_dc", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261017_mia_atl", + "sport": "MLS", + "season": "2026", + "date": "2026-10-17", + "time": "7:30p", + "home_team": "Atlanta Atlanta United", + "away_team": "Miami Inter Miami", + "home_team_abbrev": "ATL", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mls_atl", + "away_team_canonical_id": "team_mls_mia", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261017_tor_ny", + "sport": "MLS", + "season": "2026", + "date": "2026-10-17", + "time": "7:30p", + "home_team": "New York New York Red Bulls", + "away_team": "Toronto Toronto FC", + "home_team_abbrev": "RB", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mls_ny", + "away_team_canonical_id": "team_mls_tor", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_mls_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261017_chi_ne", + "sport": "MLS", + "season": "2026", + "date": "2026-10-17", + "time": "7:30p", + "home_team": "New England New England Revolution", + "away_team": "Chicago Chicago Fire", + "home_team_abbrev": "NE", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_mls_ne", + "away_team_canonical_id": "team_mls_chi", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_mls_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261018_slc_skc", + "sport": "MLS", + "season": "2026", + "date": "2026-10-17", + "time": "7:30p", + "home_team": "Kansas City Sporting Kansas City", + "away_team": "Salt Lake Real Salt Lake", + "home_team_abbrev": "SKC", + "away_team_abbrev": "SLC", + "home_team_canonical_id": "team_mls_skc", + "away_team_canonical_id": "team_mls_slc", + "venue": "Children's Mercy Park", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261018_dal_hou", + "sport": "MLS", + "season": "2026", + "date": "2026-10-17", + "time": "7:30p", + "home_team": "Houston Houston Dynamo", + "away_team": "Dallas FC Dallas", + "home_team_abbrev": "HOU", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_mls_hou", + "away_team_canonical_id": "team_mls_dal", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_mls_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261018_van_aus", + "sport": "MLS", + "season": "2026", + "date": "2026-10-17", + "time": "7:30p", + "home_team": "Austin Austin FC", + "away_team": "Vancouver Vancouver Whitecaps", + "home_team_abbrev": "AUS", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_mls_aus", + "away_team_canonical_id": "team_mls_van", + "venue": "Q2 Stadium", + "stadium_canonical_id": "stadium_mls_q2_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261018_ang_den", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-17", + "time": "6:45p", + "home_team": "Denver Denver Summit FC", + "away_team": "Los Angeles Angel City FC", + "home_team_abbrev": "DEN", + "away_team_abbrev": "ANG", + "home_team_canonical_id": "team_nwsl_den", + "away_team_canonical_id": "team_nwsl_ang", + "venue": "Centennial Stadium", + "stadium_canonical_id": "stadium_nwsl_centennial_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261018_mtl_sea", + "sport": "MLS", + "season": "2026", + "date": "2026-10-17", + "time": "7:30p", + "home_team": "Seattle Seattle Sounders", + "away_team": "Montreal CF Montreal", + "home_team_abbrev": "SEA", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_mls_sea", + "away_team_canonical_id": "team_mls_mtl", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_mls_lumen_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261018_col_por", + "sport": "MLS", + "season": "2026", + "date": "2026-10-17", + "time": "7:30p", + "home_team": "Portland Portland Timbers", + "away_team": "Colorado Colorado Rapids", + "home_team_abbrev": "POR", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mls_por", + "away_team_canonical_id": "team_mls_col", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_mls_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261018_nsh_sj", + "sport": "MLS", + "season": "2026", + "date": "2026-10-17", + "time": "7:30p", + "home_team": "San Jose San Jose Earthquakes", + "away_team": "Nashville Nashville SC", + "home_team_abbrev": "SJ", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_mls_sj", + "away_team_canonical_id": "team_mls_nsh", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_mls_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261018_sd_lag", + "sport": "MLS", + "season": "2026", + "date": "2026-10-17", + "time": "7:30p", + "home_team": "Los Angeles LA Galaxy", + "away_team": "San Diego San Diego FC", + "home_team_abbrev": "LAG", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mls_lag", + "away_team_canonical_id": "team_mls_sd", + "venue": "Dignity Health Sports Park", + "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261018_orl_hou", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-18", + "time": "12p", + "home_team": "Houston Houston Dash", + "away_team": "Orlando Orlando Pride", + "home_team_abbrev": "HOU", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nwsl_hou", + "away_team_canonical_id": "team_nwsl_orl", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261018_por_bay", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-18", + "time": "2p", + "home_team": "San Francisco Bay FC", + "away_team": "Portland Portland Thorns", + "home_team_abbrev": "BAY", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nwsl_bay", + "away_team_canonical_id": "team_nwsl_por", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_nwsl_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261018_clb_cin", + "sport": "MLS", + "season": "2026", + "date": "2026-10-18", + "time": "7p", + "home_team": "Cincinnati FC Cincinnati", + "away_team": "Columbus Columbus Crew", + "home_team_abbrev": "CIN", + "away_team_abbrev": "CLB", + "home_team_canonical_id": "team_mls_cin", + "away_team_canonical_id": "team_mls_clb", + "venue": "TQL Stadium", + "stadium_canonical_id": "stadium_mls_tql_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261018_sea_chi", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-18", + "time": "6p", + "home_team": "Chicago Chicago Red Stars", + "away_team": "Seattle Seattle Reign", + "home_team_abbrev": "CHI", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nwsl_chi", + "away_team_canonical_id": "team_nwsl_sea", + "venue": "Northwestern Medicine Field at Martin Stadium", + "stadium_canonical_id": "stadium_nwsl_northwestern_medicine_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261024_hou_chi", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-23", + "time": "7p", + "home_team": "Chicago Chicago Red Stars", + "away_team": "Houston Houston Dash", + "home_team_abbrev": "CHI", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_nwsl_chi", + "away_team_canonical_id": "team_nwsl_hou", + "venue": "Northwestern Medicine Field at Martin Stadium", + "stadium_canonical_id": "stadium_nwsl_northwestern_medicine_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261024_sea_uta", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-23", + "time": "7:30p", + "home_team": "Utah Utah Royals", + "away_team": "Seattle Seattle Reign", + "home_team_abbrev": "UTA", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_nwsl_uta", + "away_team_canonical_id": "team_nwsl_sea", + "venue": "America First Field", + "stadium_canonical_id": "stadium_nwsl_america_first_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261024_ncc_por", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-23", + "time": "7p", + "home_team": "Portland Portland Thorns", + "away_team": "North Carolina North Carolina Courage", + "home_team_abbrev": "POR", + "away_team_abbrev": "NCC", + "home_team_canonical_id": "team_nwsl_por", + "away_team_canonical_id": "team_nwsl_ncc", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_nwsl_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261024_nsh_mtl", + "sport": "MLS", + "season": "2026", + "date": "2026-10-24", + "time": "1:30p", + "home_team": "Montreal CF Montreal", + "away_team": "Nashville Nashville SC", + "home_team_abbrev": "MTL", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_mls_mtl", + "away_team_canonical_id": "team_mls_nsh", + "venue": "Stade Saputo", + "stadium_canonical_id": "stadium_mls_stade_saputo", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261024_tor_clb", + "sport": "MLS", + "season": "2026", + "date": "2026-10-24", + "time": "2:30p", + "home_team": "Columbus Columbus Crew", + "away_team": "Toronto Toronto FC", + "home_team_abbrev": "CLB", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mls_clb", + "away_team_canonical_id": "team_mls_tor", + "venue": "Lower.com Field", + "stadium_canonical_id": "stadium_mls_lowercom_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261024_mia_ny", + "sport": "MLS", + "season": "2026", + "date": "2026-10-24", + "time": "4:30p", + "home_team": "New York New York Red Bulls", + "away_team": "Miami Inter Miami", + "home_team_abbrev": "RB", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mls_ny", + "away_team_canonical_id": "team_mls_mia", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_mls_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261024_rgn_den", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-24", + "time": "4:30p", + "home_team": "Denver Denver Summit FC", + "away_team": "Louisville Racing Louisville", + "home_team_abbrev": "DEN", + "away_team_abbrev": "RGN", + "home_team_canonical_id": "team_nwsl_den", + "away_team_canonical_id": "team_nwsl_rgn", + "venue": "Centennial Stadium", + "stadium_canonical_id": "stadium_nwsl_centennial_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261024_nyc_orl", + "sport": "MLS", + "season": "2026", + "date": "2026-10-24", + "time": "7:30p", + "home_team": "Orlando Orlando City", + "away_team": "New York New York City FC", + "home_team_abbrev": "ORL", + "away_team_abbrev": "NYC", + "home_team_canonical_id": "team_mls_orl", + "away_team_canonical_id": "team_mls_nyc", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261024_cin_dc", + "sport": "MLS", + "season": "2026", + "date": "2026-10-24", + "time": "7:30p", + "home_team": "Washington D.C. United", + "away_team": "Cincinnati FC Cincinnati", + "home_team_abbrev": "DC", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mls_dc", + "away_team_canonical_id": "team_mls_cin", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_mls_audi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261024_ne_phi", + "sport": "MLS", + "season": "2026", + "date": "2026-10-24", + "time": "7:30p", + "home_team": "Philadelphia Philadelphia Union", + "away_team": "New England New England Revolution", + "home_team_abbrev": "PHI", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_mls_phi", + "away_team_canonical_id": "team_mls_ne", + "venue": "Subaru Park", + "stadium_canonical_id": "stadium_mls_subaru_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261024_chi_atl", + "sport": "MLS", + "season": "2026", + "date": "2026-10-24", + "time": "7:30p", + "home_team": "Atlanta Atlanta United", + "away_team": "Chicago Chicago Fire", + "home_team_abbrev": "ATL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_mls_atl", + "away_team_canonical_id": "team_mls_chi", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261025_stl_slc", + "sport": "MLS", + "season": "2026", + "date": "2026-10-24", + "time": "6:30p", + "home_team": "Salt Lake Real Salt Lake", + "away_team": "St. Louis St. Louis City SC", + "home_team_abbrev": "SLC", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mls_slc", + "away_team_canonical_id": "team_mls_stl", + "venue": "America First Field", + "stadium_canonical_id": "stadium_mls_america_first_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261025_sj_dal", + "sport": "MLS", + "season": "2026", + "date": "2026-10-24", + "time": "7:30p", + "home_team": "Dallas FC Dallas", + "away_team": "San Jose San Jose Earthquakes", + "home_team_abbrev": "DAL", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_mls_dal", + "away_team_canonical_id": "team_mls_sj", + "venue": "Toyota Stadium", + "stadium_canonical_id": "stadium_mls_toyota_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261025_aus_skc", + "sport": "MLS", + "season": "2026", + "date": "2026-10-24", + "time": "7:30p", + "home_team": "Kansas City Sporting Kansas City", + "away_team": "Austin Austin FC", + "home_team_abbrev": "SKC", + "away_team_abbrev": "AUS", + "home_team_canonical_id": "team_mls_skc", + "away_team_canonical_id": "team_mls_aus", + "venue": "Children's Mercy Park", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261025_van_col", + "sport": "MLS", + "season": "2026", + "date": "2026-10-24", + "time": "6:30p", + "home_team": "Colorado Colorado Rapids", + "away_team": "Vancouver Vancouver Whitecaps", + "home_team_abbrev": "COL", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_mls_col", + "away_team_canonical_id": "team_mls_van", + "venue": "Dick's Sporting Goods Park", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261025_min_hou", + "sport": "MLS", + "season": "2026", + "date": "2026-10-24", + "time": "7:30p", + "home_team": "Houston Houston Dynamo", + "away_team": "Minnesota Minnesota United", + "home_team_abbrev": "HOU", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mls_hou", + "away_team_canonical_id": "team_mls_min", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_mls_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261025_bay_ang", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-24", + "time": "6:45p", + "home_team": "Los Angeles Angel City FC", + "away_team": "San Francisco Bay FC", + "home_team_abbrev": "ANG", + "away_team_abbrev": "BAY", + "home_team_canonical_id": "team_nwsl_ang", + "away_team_canonical_id": "team_nwsl_bay", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_nwsl_bmo_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261025_clt_por", + "sport": "MLS", + "season": "2026", + "date": "2026-10-24", + "time": "7:30p", + "home_team": "Portland Portland Timbers", + "away_team": "Charlotte Charlotte FC", + "home_team_abbrev": "POR", + "away_team_abbrev": "CLT", + "home_team_canonical_id": "team_mls_por", + "away_team_canonical_id": "team_mls_clt", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_mls_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261025_sea_sd", + "sport": "MLS", + "season": "2026", + "date": "2026-10-24", + "time": "7:30p", + "home_team": "San Diego San Diego FC", + "away_team": "Seattle Seattle Sounders", + "home_team_abbrev": "SD", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mls_sd", + "away_team_canonical_id": "team_mls_sea", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261025_njy_orl", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-25", + "time": "3p", + "home_team": "Orlando Orlando Pride", + "away_team": "New Jersey NJ/NY Gotham FC", + "home_team_abbrev": "ORL", + "away_team_abbrev": "NJY", + "home_team_canonical_id": "team_nwsl_orl", + "away_team_canonical_id": "team_nwsl_njy", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261025_wsh_kcc", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-25", + "time": "4p", + "home_team": "Kansas City Kansas City Current", + "away_team": "Washington Washington Spirit", + "home_team_abbrev": "KCC", + "away_team_abbrev": "WSH", + "home_team_canonical_id": "team_nwsl_kcc", + "away_team_canonical_id": "team_nwsl_wsh", + "venue": "CPKC Stadium", + "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261025_bos_sdw", + "sport": "NWSL", + "season": "2026", + "date": "2026-10-25", + "time": "4p", + "home_team": "San Diego San Diego Wave", + "away_team": "Boston Boston Legacy FC", + "home_team_abbrev": "SDW", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nwsl_sdw", + "away_team_canonical_id": "team_nwsl_bos", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261026_lag_lafc", + "sport": "MLS", + "season": "2026", + "date": "2026-10-25", + "time": "6p", + "home_team": "Los Angeles Los Angeles FC", + "away_team": "Los Angeles LA Galaxy", + "home_team_abbrev": "LAFC", + "away_team_abbrev": "LAG", + "home_team_canonical_id": "team_mls_lafc", + "away_team_canonical_id": "team_mls_lag", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261028_dc_tor", + "sport": "MLS", + "season": "2026", + "date": "2026-10-28", + "time": "7:30p", + "home_team": "Toronto Toronto FC", + "away_team": "Washington D.C. United", + "home_team_abbrev": "TOR", + "away_team_abbrev": "DC", + "home_team_canonical_id": "team_mls_tor", + "away_team_canonical_id": "team_mls_dc", + "venue": "BMO Field", + "stadium_canonical_id": "stadium_mls_bmo_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261028_atl_nyc", + "sport": "MLS", + "season": "2026", + "date": "2026-10-28", + "time": "11:30p", + "home_team": "New York New York City FC", + "away_team": "Atlanta Atlanta United", + "home_team_abbrev": "NYC", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mls_nyc", + "away_team_canonical_id": "team_mls_atl", + "venue": null, + "stadium_canonical_id": null, + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261028_ny_ne", + "sport": "MLS", + "season": "2026", + "date": "2026-10-28", + "time": "7:30p", + "home_team": "New England New England Revolution", + "away_team": "New York New York Red Bulls", + "home_team_abbrev": "NE", + "away_team_abbrev": "RB", + "home_team_canonical_id": "team_mls_ne", + "away_team_canonical_id": "team_mls_ny", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_mls_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261028_cin_mia", + "sport": "MLS", + "season": "2026", + "date": "2026-10-28", + "time": "7:30p", + "home_team": "Miami Inter Miami", + "away_team": "Cincinnati FC Cincinnati", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CIN", + "home_team_canonical_id": "team_mls_mia", + "away_team_canonical_id": "team_mls_cin", + "venue": "Miami Freedom Park", + "stadium_canonical_id": "stadium_mls_miami_freedom_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261028_mtl_clt", + "sport": "MLS", + "season": "2026", + "date": "2026-10-28", + "time": "7:30p", + "home_team": "Charlotte Charlotte FC", + "away_team": "Montreal CF Montreal", + "home_team_abbrev": "CLT", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_mls_clt", + "away_team_canonical_id": "team_mls_mtl", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261029_por_stl", + "sport": "MLS", + "season": "2026", + "date": "2026-10-28", + "time": "7:30p", + "home_team": "St. Louis St. Louis City SC", + "away_team": "Portland Portland Timbers", + "home_team_abbrev": "STL", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_mls_stl", + "away_team_canonical_id": "team_mls_por", + "venue": "CITYPARK", + "stadium_canonical_id": "stadium_mls_citypark", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261029_skc_min", + "sport": "MLS", + "season": "2026", + "date": "2026-10-28", + "time": "7:30p", + "home_team": "Minnesota Minnesota United", + "away_team": "Kansas City Sporting Kansas City", + "home_team_abbrev": "MIN", + "away_team_abbrev": "SKC", + "home_team_canonical_id": "team_mls_min", + "away_team_canonical_id": "team_mls_skc", + "venue": "Allianz Field", + "stadium_canonical_id": "stadium_mls_allianz_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261029_clb_dal", + "sport": "MLS", + "season": "2026", + "date": "2026-10-28", + "time": "7:30p", + "home_team": "Dallas FC Dallas", + "away_team": "Columbus Columbus Crew", + "home_team_abbrev": "DAL", + "away_team_abbrev": "CLB", + "home_team_canonical_id": "team_mls_dal", + "away_team_canonical_id": "team_mls_clb", + "venue": "Toyota Stadium", + "stadium_canonical_id": "stadium_mls_toyota_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261029_slc_aus", + "sport": "MLS", + "season": "2026", + "date": "2026-10-28", + "time": "7:30p", + "home_team": "Austin Austin FC", + "away_team": "Salt Lake Real Salt Lake", + "home_team_abbrev": "AUS", + "away_team_abbrev": "SLC", + "home_team_canonical_id": "team_mls_aus", + "away_team_canonical_id": "team_mls_slc", + "venue": "Q2 Stadium", + "stadium_canonical_id": "stadium_mls_q2_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261029_orl_chi", + "sport": "MLS", + "season": "2026", + "date": "2026-10-28", + "time": "7:30p", + "home_team": "Chicago Chicago Fire", + "away_team": "Orlando Orlando City", + "home_team_abbrev": "CHI", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_mls_chi", + "away_team_canonical_id": "team_mls_orl", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_mls_soldier_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261029_phi_nsh", + "sport": "MLS", + "season": "2026", + "date": "2026-10-28", + "time": "7:30p", + "home_team": "Nashville Nashville SC", + "away_team": "Philadelphia Philadelphia Union", + "home_team_abbrev": "NSH", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mls_nsh", + "away_team_canonical_id": "team_mls_phi", + "venue": "GEODIS Park", + "stadium_canonical_id": "stadium_mls_geodis_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261029_hou_sea", + "sport": "MLS", + "season": "2026", + "date": "2026-10-28", + "time": "7:30p", + "home_team": "Seattle Seattle Sounders", + "away_team": "Houston Houston Dynamo", + "home_team_abbrev": "SEA", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mls_sea", + "away_team_canonical_id": "team_mls_hou", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_mls_lumen_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261029_sd_van", + "sport": "MLS", + "season": "2026", + "date": "2026-10-28", + "time": "7:30p", + "home_team": "Vancouver Vancouver Whitecaps", + "away_team": "San Diego San Diego FC", + "home_team_abbrev": "VAN", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mls_van", + "away_team_canonical_id": "team_mls_sd", + "venue": "BC Place", + "stadium_canonical_id": "stadium_mls_bc_place", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261029_col_sj", + "sport": "MLS", + "season": "2026", + "date": "2026-10-28", + "time": "7:30p", + "home_team": "San Jose San Jose Earthquakes", + "away_team": "Colorado Colorado Rapids", + "home_team_abbrev": "SJ", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mls_sj", + "away_team_canonical_id": "team_mls_col", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_mls_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261031_orl_clt", + "sport": "MLS", + "season": "2026", + "date": "2026-10-31", + "time": "1p", + "home_team": "Charlotte Charlotte FC", + "away_team": "Orlando Orlando City", + "home_team_abbrev": "CLT", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_mls_clt", + "away_team_canonical_id": "team_mls_orl", + "venue": "Bank of America Stadium", + "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261031_dc_clb", + "sport": "MLS", + "season": "2026", + "date": "2026-10-31", + "time": "2p", + "home_team": "Columbus Columbus Crew", + "away_team": "Washington D.C. United", + "home_team_abbrev": "CLB", + "away_team_abbrev": "DC", + "home_team_canonical_id": "team_mls_clb", + "away_team_canonical_id": "team_mls_dc", + "venue": "Lower.com Field", + "stadium_canonical_id": "stadium_mls_lowercom_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261031_phi_cin", + "sport": "MLS", + "season": "2026", + "date": "2026-10-31", + "time": "2p", + "home_team": "Cincinnati FC Cincinnati", + "away_team": "Philadelphia Philadelphia Union", + "home_team_abbrev": "CIN", + "away_team_abbrev": "PHI", + "home_team_canonical_id": "team_mls_cin", + "away_team_canonical_id": "team_mls_phi", + "venue": "TQL Stadium", + "stadium_canonical_id": "stadium_mls_tql_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261031_dal_skc", + "sport": "MLS", + "season": "2026", + "date": "2026-10-31", + "time": "2p", + "home_team": "Kansas City Sporting Kansas City", + "away_team": "Dallas FC Dallas", + "home_team_abbrev": "SKC", + "away_team_abbrev": "DAL", + "home_team_canonical_id": "team_mls_skc", + "away_team_canonical_id": "team_mls_dal", + "venue": "Children's Mercy Park", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261031_aus_lag", + "sport": "MLS", + "season": "2026", + "date": "2026-10-31", + "time": "2p", + "home_team": "Los Angeles LA Galaxy", + "away_team": "Austin Austin FC", + "home_team_abbrev": "LAG", + "away_team_abbrev": "AUS", + "home_team_canonical_id": "team_mls_lag", + "away_team_canonical_id": "team_mls_aus", + "venue": "Dignity Health Sports Park", + "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261101_chi_col", + "sport": "MLS", + "season": "2026", + "date": "2026-10-31", + "time": "7:30p", + "home_team": "Colorado Colorado Rapids", + "away_team": "Chicago Chicago Fire", + "home_team_abbrev": "COL", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_mls_col", + "away_team_canonical_id": "team_mls_chi", + "venue": "Dick's Sporting Goods Park", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261101_sd_stl", + "sport": "MLS", + "season": "2026", + "date": "2026-11-01", + "time": "2p", + "home_team": "St. Louis St. Louis City SC", + "away_team": "San Diego San Diego FC", + "home_team_abbrev": "STL", + "away_team_abbrev": "SD", + "home_team_canonical_id": "team_mls_stl", + "away_team_canonical_id": "team_mls_sd", + "venue": "CITYPARK", + "stadium_canonical_id": "stadium_mls_citypark", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261101_slc_sj", + "sport": "MLS", + "season": "2026", + "date": "2026-11-01", + "time": "12p", + "home_team": "San Jose San Jose Earthquakes", + "away_team": "Salt Lake Real Salt Lake", + "home_team_abbrev": "SJ", + "away_team_abbrev": "SLC", + "home_team_canonical_id": "team_mls_sj", + "away_team_canonical_id": "team_mls_slc", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_mls_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261101_min_lafc", + "sport": "MLS", + "season": "2026", + "date": "2026-11-01", + "time": "12p", + "home_team": "Los Angeles Los Angeles FC", + "away_team": "Minnesota Minnesota United", + "home_team_abbrev": "LAFC", + "away_team_abbrev": "MIN", + "home_team_canonical_id": "team_mls_lafc", + "away_team_canonical_id": "team_mls_min", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261101_mtl_nyc", + "sport": "MLS", + "season": "2026", + "date": "2026-11-01", + "time": "8p", + "home_team": "New York New York City FC", + "away_team": "Montreal CF Montreal", + "home_team_abbrev": "NYC", + "away_team_abbrev": "MTL", + "home_team_canonical_id": "team_mls_nyc", + "away_team_canonical_id": "team_mls_mtl", + "venue": null, + "stadium_canonical_id": null, + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261101_ny_nsh", + "sport": "MLS", + "season": "2026", + "date": "2026-11-01", + "time": "3:30p", + "home_team": "Nashville Nashville SC", + "away_team": "New York New York Red Bulls", + "home_team_abbrev": "NSH", + "away_team_abbrev": "RB", + "home_team_canonical_id": "team_mls_nsh", + "away_team_canonical_id": "team_mls_ny", + "venue": "GEODIS Park", + "stadium_canonical_id": "stadium_mls_geodis_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261101_tor_atl", + "sport": "MLS", + "season": "2026", + "date": "2026-11-01", + "time": "4:30p", + "home_team": "Atlanta Atlanta United", + "away_team": "Toronto Toronto FC", + "home_team_abbrev": "ATL", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mls_atl", + "away_team_canonical_id": "team_mls_tor", + "venue": "Mercedes-Benz Stadium", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261101_sea_van", + "sport": "MLS", + "season": "2026", + "date": "2026-11-01", + "time": "1:30p", + "home_team": "Vancouver Vancouver Whitecaps", + "away_team": "Seattle Seattle Sounders", + "home_team_abbrev": "VAN", + "away_team_abbrev": "SEA", + "home_team_canonical_id": "team_mls_van", + "away_team_canonical_id": "team_mls_sea", + "venue": "BC Place", + "stadium_canonical_id": "stadium_mls_bc_place", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261101_uta_njy", + "sport": "NWSL", + "season": "2026", + "date": "2026-11-01", + "time": "5p", + "home_team": "New Jersey NJ/NY Gotham FC", + "away_team": "Utah Utah Royals", + "home_team_abbrev": "NJY", + "away_team_abbrev": "UTA", + "home_team_canonical_id": "team_nwsl_njy", + "away_team_canonical_id": "team_nwsl_uta", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_nwsl_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261101_por_hou", + "sport": "NWSL", + "season": "2026", + "date": "2026-11-01", + "time": "4p", + "home_team": "Houston Houston Dash", + "away_team": "Portland Portland Thorns", + "home_team_abbrev": "HOU", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_nwsl_hou", + "away_team_canonical_id": "team_nwsl_por", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261101_chi_wsh", + "sport": "NWSL", + "season": "2026", + "date": "2026-11-01", + "time": "5p", + "home_team": "Washington Washington Spirit", + "away_team": "Chicago Chicago Red Stars", + "home_team_abbrev": "WSH", + "away_team_abbrev": "CHI", + "home_team_canonical_id": "team_nwsl_wsh", + "away_team_canonical_id": "team_nwsl_chi", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_nwsl_audi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261101_bos_ang", + "sport": "NWSL", + "season": "2026", + "date": "2026-11-01", + "time": "2p", + "home_team": "Los Angeles Angel City FC", + "away_team": "Boston Boston Legacy FC", + "home_team_abbrev": "ANG", + "away_team_abbrev": "BOS", + "home_team_canonical_id": "team_nwsl_ang", + "away_team_canonical_id": "team_nwsl_bos", + "venue": "BMO Stadium", + "stadium_canonical_id": "stadium_nwsl_bmo_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261101_sdw_bay", + "sport": "NWSL", + "season": "2026", + "date": "2026-11-01", + "time": "2p", + "home_team": "San Francisco Bay FC", + "away_team": "San Diego San Diego Wave", + "home_team_abbrev": "BAY", + "away_team_abbrev": "SDW", + "home_team_canonical_id": "team_nwsl_bay", + "away_team_canonical_id": "team_nwsl_sdw", + "venue": "PayPal Park", + "stadium_canonical_id": "stadium_nwsl_paypal_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261101_orl_sea", + "sport": "NWSL", + "season": "2026", + "date": "2026-11-01", + "time": "2p", + "home_team": "Seattle Seattle Reign", + "away_team": "Orlando Orlando Pride", + "home_team_abbrev": "SEA", + "away_team_abbrev": "ORL", + "home_team_canonical_id": "team_nwsl_sea", + "away_team_canonical_id": "team_nwsl_orl", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_nwsl_lumen_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261101_den_ncc", + "sport": "NWSL", + "season": "2026", + "date": "2026-11-01", + "time": "5p", + "home_team": "North Carolina North Carolina Courage", + "away_team": "Denver Denver Summit FC", + "home_team_abbrev": "NCC", + "away_team_abbrev": "DEN", + "home_team_canonical_id": "team_nwsl_ncc", + "away_team_canonical_id": "team_nwsl_den", + "venue": "WakeMed Soccer Park", + "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_nwsl_2026_20261101_kcc_rgn", + "sport": "NWSL", + "season": "2026", + "date": "2026-11-01", + "time": "5p", + "home_team": "Louisville Racing Louisville", + "away_team": "Kansas City Kansas City Current", + "home_team_abbrev": "RGN", + "away_team_abbrev": "KCC", + "home_team_canonical_id": "team_nwsl_rgn", + "away_team_canonical_id": "team_nwsl_kcc", + "venue": "Lynn Family Stadium", + "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261101_mia_ne", + "sport": "MLS", + "season": "2026", + "date": "2026-11-01", + "time": "6p", + "home_team": "New England New England Revolution", + "away_team": "Miami Inter Miami", + "home_team_abbrev": "NE", + "away_team_abbrev": "MIA", + "home_team_canonical_id": "team_mls_ne", + "away_team_canonical_id": "team_mls_mia", + "venue": "Gillette Stadium", + "stadium_canonical_id": "stadium_mls_gillette_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261102_hou_por", + "sport": "MLS", + "season": "2026", + "date": "2026-11-01", + "time": "5p", + "home_team": "Portland Portland Timbers", + "away_team": "Houston Houston Dynamo", + "home_team_abbrev": "POR", + "away_team_abbrev": "HOU", + "home_team_canonical_id": "team_mls_por", + "away_team_canonical_id": "team_mls_hou", + "venue": "Providence Park", + "stadium_canonical_id": "stadium_mls_providence_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261107_atl_ny", + "sport": "MLS", + "season": "2026", + "date": "2026-11-07", + "time": "4p", + "home_team": "New York New York Red Bulls", + "away_team": "Atlanta Atlanta United", + "home_team_abbrev": "RB", + "away_team_abbrev": "ATL", + "home_team_canonical_id": "team_mls_ny", + "away_team_canonical_id": "team_mls_atl", + "venue": "Red Bull Arena", + "stadium_canonical_id": "stadium_mls_red_bull_arena", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261107_clt_mia", + "sport": "MLS", + "season": "2026", + "date": "2026-11-07", + "time": "4p", + "home_team": "Miami Inter Miami", + "away_team": "Charlotte Charlotte FC", + "home_team_abbrev": "MIA", + "away_team_abbrev": "CLT", + "home_team_canonical_id": "team_mls_mia", + "away_team_canonical_id": "team_mls_clt", + "venue": "Miami Freedom Park", + "stadium_canonical_id": "stadium_mls_miami_freedom_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261107_nsh_cin", + "sport": "MLS", + "season": "2026", + "date": "2026-11-07", + "time": "4p", + "home_team": "Cincinnati FC Cincinnati", + "away_team": "Nashville Nashville SC", + "home_team_abbrev": "CIN", + "away_team_abbrev": "NSH", + "home_team_canonical_id": "team_mls_cin", + "away_team_canonical_id": "team_mls_nsh", + "venue": "TQL Stadium", + "stadium_canonical_id": "stadium_mls_tql_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261107_nyc_dc", + "sport": "MLS", + "season": "2026", + "date": "2026-11-07", + "time": "4p", + "home_team": "Washington D.C. United", + "away_team": "New York New York City FC", + "home_team_abbrev": "DC", + "away_team_abbrev": "NYC", + "home_team_canonical_id": "team_mls_dc", + "away_team_canonical_id": "team_mls_nyc", + "venue": "Audi Field", + "stadium_canonical_id": "stadium_mls_audi_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261107_clb_chi", + "sport": "MLS", + "season": "2026", + "date": "2026-11-07", + "time": "3p", + "home_team": "Chicago Chicago Fire", + "away_team": "Columbus Columbus Crew", + "home_team_abbrev": "CHI", + "away_team_abbrev": "CLB", + "home_team_canonical_id": "team_mls_chi", + "away_team_canonical_id": "team_mls_clb", + "venue": "Soldier Field", + "stadium_canonical_id": "stadium_mls_soldier_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261107_van_mtl", + "sport": "MLS", + "season": "2026", + "date": "2026-11-07", + "time": "4p", + "home_team": "Montreal CF Montreal", + "away_team": "Vancouver Vancouver Whitecaps", + "home_team_abbrev": "MTL", + "away_team_abbrev": "VAN", + "home_team_canonical_id": "team_mls_mtl", + "away_team_canonical_id": "team_mls_van", + "venue": "Stade Saputo", + "stadium_canonical_id": "stadium_mls_stade_saputo", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261107_ne_orl", + "sport": "MLS", + "season": "2026", + "date": "2026-11-07", + "time": "4p", + "home_team": "Orlando Orlando City", + "away_team": "New England New England Revolution", + "home_team_abbrev": "ORL", + "away_team_abbrev": "NE", + "home_team_canonical_id": "team_mls_orl", + "away_team_canonical_id": "team_mls_ne", + "venue": "Inter&Co Stadium", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261107_tor_phi", + "sport": "MLS", + "season": "2026", + "date": "2026-11-07", + "time": "4p", + "home_team": "Philadelphia Philadelphia Union", + "away_team": "Toronto Toronto FC", + "home_team_abbrev": "PHI", + "away_team_abbrev": "TOR", + "home_team_canonical_id": "team_mls_phi", + "away_team_canonical_id": "team_mls_tor", + "venue": "Subaru Park", + "stadium_canonical_id": "stadium_mls_subaru_park", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261108_lafc_sea", + "sport": "MLS", + "season": "2026", + "date": "2026-11-07", + "time": "4p", + "home_team": "Seattle Seattle Sounders", + "away_team": "Los Angeles Los Angeles FC", + "home_team_abbrev": "SEA", + "away_team_abbrev": "LAFC", + "home_team_canonical_id": "team_mls_sea", + "away_team_canonical_id": "team_mls_lafc", + "venue": "Lumen Field", + "stadium_canonical_id": "stadium_mls_lumen_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261108_lag_slc", + "sport": "MLS", + "season": "2026", + "date": "2026-11-07", + "time": "5p", + "home_team": "Salt Lake Real Salt Lake", + "away_team": "Los Angeles LA Galaxy", + "home_team_abbrev": "SLC", + "away_team_abbrev": "LAG", + "home_team_canonical_id": "team_mls_slc", + "away_team_canonical_id": "team_mls_lag", + "venue": "America First Field", + "stadium_canonical_id": "stadium_mls_america_first_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261108_sj_min", + "sport": "MLS", + "season": "2026", + "date": "2026-11-07", + "time": "6p", + "home_team": "Minnesota Minnesota United", + "away_team": "San Jose San Jose Earthquakes", + "home_team_abbrev": "MIN", + "away_team_abbrev": "SJ", + "home_team_canonical_id": "team_mls_min", + "away_team_canonical_id": "team_mls_sj", + "venue": "Allianz Field", + "stadium_canonical_id": "stadium_mls_allianz_field", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261108_stl_hou", + "sport": "MLS", + "season": "2026", + "date": "2026-11-07", + "time": "6p", + "home_team": "Houston Houston Dynamo", + "away_team": "St. Louis St. Louis City SC", + "home_team_abbrev": "HOU", + "away_team_abbrev": "STL", + "home_team_canonical_id": "team_mls_hou", + "away_team_canonical_id": "team_mls_stl", + "venue": "Shell Energy Stadium", + "stadium_canonical_id": "stadium_mls_shell_energy_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261108_col_dal", + "sport": "MLS", + "season": "2026", + "date": "2026-11-07", + "time": "6p", + "home_team": "Dallas FC Dallas", + "away_team": "Colorado Colorado Rapids", + "home_team_abbrev": "DAL", + "away_team_abbrev": "COL", + "home_team_canonical_id": "team_mls_dal", + "away_team_canonical_id": "team_mls_col", + "venue": "Toyota Stadium", + "stadium_canonical_id": "stadium_mls_toyota_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261108_por_aus", + "sport": "MLS", + "season": "2026", + "date": "2026-11-07", + "time": "6p", + "home_team": "Austin Austin FC", + "away_team": "Portland Portland Timbers", + "home_team_abbrev": "AUS", + "away_team_abbrev": "POR", + "home_team_canonical_id": "team_mls_aus", + "away_team_canonical_id": "team_mls_por", + "venue": "Q2 Stadium", + "stadium_canonical_id": "stadium_mls_q2_stadium", + "source": "site.api.espn.com", + "is_playoff": false, + "broadcast_info": null + }, + { + "canonical_id": "game_mls_2026_20261108_skc_sd", + "sport": "MLS", + "season": "2026", + "date": "2026-11-07", + "time": "4p", + "home_team": "San Diego San Diego FC", + "away_team": "Kansas City Sporting Kansas City", + "home_team_abbrev": "SD", + "away_team_abbrev": "SKC", + "home_team_canonical_id": "team_mls_sd", + "away_team_canonical_id": "team_mls_skc", + "venue": "Snapdragon Stadium", + "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "source": "site.api.espn.com", "is_playoff": false, "broadcast_info": null } diff --git a/SportsTime/Resources/league_structure.json b/SportsTime/Resources/league_structure.json index a18393c..d7ebe94 100644 --- a/SportsTime/Resources/league_structure.json +++ b/SportsTime/Resources/league_structure.json @@ -17,6 +17,33 @@ "parent_id": "mlb_league", "display_order": 1 }, + { + "id": "mlb_al_east", + "sport": "MLB", + "type": "division", + "name": "AL East", + "abbreviation": null, + "parent_id": "mlb_al", + "display_order": 3 + }, + { + "id": "mlb_al_central", + "sport": "MLB", + "type": "division", + "name": "AL Central", + "abbreviation": null, + "parent_id": "mlb_al", + "display_order": 4 + }, + { + "id": "mlb_al_west", + "sport": "MLB", + "type": "division", + "name": "AL West", + "abbreviation": null, + "parent_id": "mlb_al", + "display_order": 5 + }, { "id": "mlb_nl", "sport": "MLB", @@ -26,33 +53,6 @@ "parent_id": "mlb_league", "display_order": 2 }, - { - "id": "mlb_al_east", - "sport": "MLB", - "type": "division", - "name": "AL East", - "abbreviation": null, - "parent_id": "mlb_al", - "display_order": 1 - }, - { - "id": "mlb_al_central", - "sport": "MLB", - "type": "division", - "name": "AL Central", - "abbreviation": null, - "parent_id": "mlb_al", - "display_order": 2 - }, - { - "id": "mlb_al_west", - "sport": "MLB", - "type": "division", - "name": "AL West", - "abbreviation": null, - "parent_id": "mlb_al", - "display_order": 3 - }, { "id": "mlb_nl_east", "sport": "MLB", @@ -60,7 +60,7 @@ "name": "NL East", "abbreviation": null, "parent_id": "mlb_nl", - "display_order": 1 + "display_order": 6 }, { "id": "mlb_nl_central", @@ -69,7 +69,7 @@ "name": "NL Central", "abbreviation": null, "parent_id": "mlb_nl", - "display_order": 2 + "display_order": 7 }, { "id": "mlb_nl_west", @@ -78,7 +78,43 @@ "name": "NL West", "abbreviation": null, "parent_id": "mlb_nl", - "display_order": 3 + "display_order": 8 + }, + { + "id": "mls_league", + "sport": "MLS", + "type": "league", + "name": "Major League Soccer", + "abbreviation": "MLS", + "parent_id": null, + "display_order": 1 + }, + { + "id": "mls_eastern", + "sport": "MLS", + "type": "conference", + "name": "Eastern Conference", + "abbreviation": "East", + "parent_id": "mls_league", + "display_order": 38 + }, + { + "id": "", + "sport": "MLS", + "type": "division", + "name": "Eastern", + "abbreviation": "East", + "parent_id": "mls_eastern", + "display_order": 0 + }, + { + "id": "mls_western", + "sport": "MLS", + "type": "conference", + "name": "Western Conference", + "abbreviation": "West", + "parent_id": "mls_league", + "display_order": 39 }, { "id": "nba_league", @@ -87,7 +123,7 @@ "name": "National Basketball Association", "abbreviation": "NBA", "parent_id": null, - "display_order": 0 + "display_order": 2 }, { "id": "nba_eastern", @@ -96,16 +132,7 @@ "name": "Eastern Conference", "abbreviation": "East", "parent_id": "nba_league", - "display_order": 1 - }, - { - "id": "nba_western", - "sport": "NBA", - "type": "conference", - "name": "Western Conference", - "abbreviation": "West", - "parent_id": "nba_league", - "display_order": 2 + "display_order": 10 }, { "id": "nba_atlantic", @@ -114,7 +141,7 @@ "name": "Atlantic", "abbreviation": null, "parent_id": "nba_eastern", - "display_order": 1 + "display_order": 12 }, { "id": "nba_central", @@ -123,7 +150,7 @@ "name": "Central", "abbreviation": null, "parent_id": "nba_eastern", - "display_order": 2 + "display_order": 13 }, { "id": "nba_southeast", @@ -132,7 +159,16 @@ "name": "Southeast", "abbreviation": null, "parent_id": "nba_eastern", - "display_order": 3 + "display_order": 14 + }, + { + "id": "nba_western", + "sport": "NBA", + "type": "conference", + "name": "Western Conference", + "abbreviation": "West", + "parent_id": "nba_league", + "display_order": 11 }, { "id": "nba_northwest", @@ -141,7 +177,7 @@ "name": "Northwest", "abbreviation": null, "parent_id": "nba_western", - "display_order": 1 + "display_order": 15 }, { "id": "nba_pacific", @@ -150,7 +186,7 @@ "name": "Pacific", "abbreviation": null, "parent_id": "nba_western", - "display_order": 2 + "display_order": 16 }, { "id": "nba_southwest", @@ -159,8 +195,107 @@ "name": "Southwest", "abbreviation": null, "parent_id": "nba_western", + "display_order": 17 + }, + { + "id": "nfl_league", + "sport": "NFL", + "type": "league", + "name": "National Football League", + "abbreviation": "NFL", + "parent_id": null, "display_order": 3 }, + { + "id": "nfl_afc", + "sport": "NFL", + "type": "conference", + "name": "American Football Conference", + "abbreviation": "AFC", + "parent_id": "nfl_league", + "display_order": 19 + }, + { + "id": "nfl_afc_east", + "sport": "NFL", + "type": "division", + "name": "AFC East", + "abbreviation": null, + "parent_id": "nfl_afc", + "display_order": 21 + }, + { + "id": "nfl_afc_north", + "sport": "NFL", + "type": "division", + "name": "AFC North", + "abbreviation": null, + "parent_id": "nfl_afc", + "display_order": 22 + }, + { + "id": "nfl_afc_south", + "sport": "NFL", + "type": "division", + "name": "AFC South", + "abbreviation": null, + "parent_id": "nfl_afc", + "display_order": 23 + }, + { + "id": "nfl_afc_west", + "sport": "NFL", + "type": "division", + "name": "AFC West", + "abbreviation": null, + "parent_id": "nfl_afc", + "display_order": 24 + }, + { + "id": "nfl_nfc", + "sport": "NFL", + "type": "conference", + "name": "National Football Conference", + "abbreviation": "NFC", + "parent_id": "nfl_league", + "display_order": 20 + }, + { + "id": "nfl_nfc_east", + "sport": "NFL", + "type": "division", + "name": "NFC East", + "abbreviation": null, + "parent_id": "nfl_nfc", + "display_order": 25 + }, + { + "id": "nfl_nfc_north", + "sport": "NFL", + "type": "division", + "name": "NFC North", + "abbreviation": null, + "parent_id": "nfl_nfc", + "display_order": 26 + }, + { + "id": "nfl_nfc_south", + "sport": "NFL", + "type": "division", + "name": "NFC South", + "abbreviation": null, + "parent_id": "nfl_nfc", + "display_order": 27 + }, + { + "id": "nfl_nfc_west", + "sport": "NFL", + "type": "division", + "name": "NFC West", + "abbreviation": null, + "parent_id": "nfl_nfc", + "display_order": 28 + }, { "id": "nhl_league", "sport": "NHL", @@ -168,7 +303,7 @@ "name": "National Hockey League", "abbreviation": "NHL", "parent_id": null, - "display_order": 0 + "display_order": 4 }, { "id": "nhl_eastern", @@ -177,16 +312,7 @@ "name": "Eastern Conference", "abbreviation": "East", "parent_id": "nhl_league", - "display_order": 1 - }, - { - "id": "nhl_western", - "sport": "NHL", - "type": "conference", - "name": "Western Conference", - "abbreviation": "West", - "parent_id": "nhl_league", - "display_order": 2 + "display_order": 30 }, { "id": "nhl_atlantic", @@ -195,7 +321,7 @@ "name": "Atlantic", "abbreviation": null, "parent_id": "nhl_eastern", - "display_order": 1 + "display_order": 32 }, { "id": "nhl_metropolitan", @@ -204,7 +330,16 @@ "name": "Metropolitan", "abbreviation": null, "parent_id": "nhl_eastern", - "display_order": 2 + "display_order": 33 + }, + { + "id": "nhl_western", + "sport": "NHL", + "type": "conference", + "name": "Western Conference", + "abbreviation": "West", + "parent_id": "nhl_league", + "display_order": 31 }, { "id": "nhl_central", @@ -213,7 +348,7 @@ "name": "Central", "abbreviation": null, "parent_id": "nhl_western", - "display_order": 1 + "display_order": 34 }, { "id": "nhl_pacific", @@ -222,6 +357,24 @@ "name": "Pacific", "abbreviation": null, "parent_id": "nhl_western", - "display_order": 2 + "display_order": 35 + }, + { + "id": "nwsl_league", + "sport": "NWSL", + "type": "league", + "name": "National Women's Soccer League", + "abbreviation": "NWSL", + "parent_id": null, + "display_order": 5 + }, + { + "id": "wnba_league", + "sport": "WNBA", + "type": "league", + "name": "Women's National Basketball Association", + "abbreviation": "WNBA", + "parent_id": null, + "display_order": 6 } -] +] \ No newline at end of file diff --git a/SportsTime/Resources/sports_canonical.json b/SportsTime/Resources/sports_canonical.json new file mode 100644 index 0000000..628d1cb --- /dev/null +++ b/SportsTime/Resources/sports_canonical.json @@ -0,0 +1,72 @@ +[ + { + "sport_id": "MLB", + "abbreviation": "MLB", + "display_name": "Major League Baseball", + "icon_name": "baseball.fill", + "color_hex": "#FF0000", + "season_start_month": 3, + "season_end_month": 10, + "is_active": true + }, + { + "sport_id": "MLS", + "abbreviation": "MLS", + "display_name": "Major League Soccer", + "icon_name": "soccerball", + "color_hex": "#34C759", + "season_start_month": 2, + "season_end_month": 12, + "is_active": true + }, + { + "sport_id": "NBA", + "abbreviation": "NBA", + "display_name": "National Basketball Association", + "icon_name": "basketball.fill", + "color_hex": "#FF8C00", + "season_start_month": 10, + "season_end_month": 6, + "is_active": true + }, + { + "sport_id": "NFL", + "abbreviation": "NFL", + "display_name": "National Football League", + "icon_name": "football.fill", + "color_hex": "#8B4513", + "season_start_month": 9, + "season_end_month": 2, + "is_active": true + }, + { + "sport_id": "NHL", + "abbreviation": "NHL", + "display_name": "National Hockey League", + "icon_name": "hockey.puck.fill", + "color_hex": "#007AFF", + "season_start_month": 10, + "season_end_month": 6, + "is_active": true + }, + { + "sport_id": "NWSL", + "abbreviation": "NWSL", + "display_name": "National Women's Soccer League", + "icon_name": "soccerball", + "color_hex": "#5AC8FA", + "season_start_month": 3, + "season_end_month": 11, + "is_active": true + }, + { + "sport_id": "WNBA", + "abbreviation": "WNBA", + "display_name": "Women's National Basketball Association", + "icon_name": "basketball.fill", + "color_hex": "#AF52DE", + "season_start_month": 5, + "season_end_month": 10, + "is_active": true + } +] \ No newline at end of file diff --git a/SportsTime/Resources/stadium_aliases.json b/SportsTime/Resources/stadium_aliases.json index 1401b37..b266643 100644 --- a/SportsTime/Resources/stadium_aliases.json +++ b/SportsTime/Resources/stadium_aliases.json @@ -1,94 +1,4 @@ [ - { - "alias_name": "chase field", - "stadium_canonical_id": "stadium_mlb_chase_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "truist park", - "stadium_canonical_id": "stadium_mlb_truist_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "oriole park at camden yards", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "fenway park", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "wrigley field", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "guaranteed rate field", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "great american ball park", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "progressive field", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "coors field", - "stadium_canonical_id": "stadium_mlb_coors_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "comerica park", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "minute maid park", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "kauffman stadium", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "angel stadium", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "dodger stadium", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "loandepot park", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "valid_from": null, - "valid_until": null - }, { "alias_name": "american family field", "stadium_canonical_id": "stadium_mlb_american_family_field", @@ -96,62 +6,14 @@ "valid_until": null }, { - "alias_name": "target field", - "stadium_canonical_id": "stadium_mlb_target_field", - "valid_from": null, - "valid_until": null + "alias_name": "miller park", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "valid_from": "2001-04-01", + "valid_until": "2020-12-31" }, { - "alias_name": "citi field", - "stadium_canonical_id": "stadium_mlb_citi_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "yankee stadium", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "sutter health park", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "citizens bank park", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "pnc park", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "petco park", - "stadium_canonical_id": "stadium_mlb_petco_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "oracle park", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "t-mobile park", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "tmobile park", - "stadium_canonical_id": "stadium_mlb_tmobile_park", + "alias_name": "angel stadium", + "stadium_canonical_id": "stadium_mlb_angel_stadium", "valid_from": null, "valid_until": null }, @@ -162,8 +24,56 @@ "valid_until": null }, { - "alias_name": "tropicana field", - "stadium_canonical_id": "stadium_mlb_tropicana_field", + "alias_name": "chase field", + "stadium_canonical_id": "stadium_mlb_chase_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "citi field", + "stadium_canonical_id": "stadium_mlb_citi_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "citizens bank park", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "comerica park", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "coors field", + "stadium_canonical_id": "stadium_mlb_coors_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "dodger stadium", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "fenway park", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "field of dreams", + "stadium_canonical_id": "stadium_mlb_field_of_dreams", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "dyersville", + "stadium_canonical_id": "stadium_mlb_field_of_dreams", "valid_from": null, "valid_until": null }, @@ -174,1019 +84,23 @@ "valid_until": null }, { - "alias_name": "rogers centre", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "nationals park", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "state farm arena", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "td garden", - "stadium_canonical_id": "stadium_nba_td_garden", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "barclays center", - "stadium_canonical_id": "stadium_nba_barclays_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "spectrum center", - "stadium_canonical_id": "stadium_nba_spectrum_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "united center", - "stadium_canonical_id": "stadium_nba_united_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "rocket mortgage fieldhouse", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "american airlines center", - "stadium_canonical_id": "stadium_nba_american_airlines_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "ball arena", - "stadium_canonical_id": "stadium_nba_ball_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "little caesars arena", - "stadium_canonical_id": "stadium_nba_little_caesars_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "chase center", - "stadium_canonical_id": "stadium_nba_chase_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "toyota center", - "stadium_canonical_id": "stadium_nba_toyota_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "gainbridge fieldhouse", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "intuit dome", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "crypto.com arena", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "cryptocom arena", - "stadium_canonical_id": "stadium_nba_cryptocom_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "fedexforum", - "stadium_canonical_id": "stadium_nba_fedexforum", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "kaseya center", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "fiserv forum", - "stadium_canonical_id": "stadium_nba_fiserv_forum", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "target center", - "stadium_canonical_id": "stadium_nba_target_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "smoothie king center", - "stadium_canonical_id": "stadium_nba_smoothie_king_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "madison square garden", - "stadium_canonical_id": "stadium_nba_madison_square_garden", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "paycom center", - "stadium_canonical_id": "stadium_nba_paycom_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "kia center", - "stadium_canonical_id": "stadium_nba_kia_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "wells fargo center", - "stadium_canonical_id": "stadium_nba_wells_fargo_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "footprint center", - "stadium_canonical_id": "stadium_nba_footprint_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "moda center", - "stadium_canonical_id": "stadium_nba_moda_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "golden 1 center", - "stadium_canonical_id": "stadium_nba_golden_1_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "frost bank center", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "scotiabank arena", - "stadium_canonical_id": "stadium_nba_scotiabank_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "delta center", - "stadium_canonical_id": "stadium_nba_delta_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "capital one arena", - "stadium_canonical_id": "stadium_nba_capital_one_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "td garden", - "stadium_canonical_id": "stadium_nhl_td_garden", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "keybank center", - "stadium_canonical_id": "stadium_nhl_keybank_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "little caesars arena", - "stadium_canonical_id": "stadium_nhl_little_caesars_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "amerant bank arena", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "bell centre", - "stadium_canonical_id": "stadium_nhl_bell_centre", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "canadian tire centre", - "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "amalie arena", - "stadium_canonical_id": "stadium_nhl_amalie_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "scotiabank arena", - "stadium_canonical_id": "stadium_nhl_scotiabank_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "pnc arena", - "stadium_canonical_id": "stadium_nhl_pnc_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "nationwide arena", - "stadium_canonical_id": "stadium_nhl_nationwide_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "prudential center", - "stadium_canonical_id": "stadium_nhl_prudential_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "ubs arena", - "stadium_canonical_id": "stadium_nhl_ubs_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "madison square garden", - "stadium_canonical_id": "stadium_nhl_madison_square_garden", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "wells fargo center", - "stadium_canonical_id": "stadium_nhl_wells_fargo_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "ppg paints arena", - "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "capital one arena", - "stadium_canonical_id": "stadium_nhl_capital_one_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "united center", - "stadium_canonical_id": "stadium_nhl_united_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "ball arena", - "stadium_canonical_id": "stadium_nhl_ball_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "american airlines center", - "stadium_canonical_id": "stadium_nhl_american_airlines_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "xcel energy center", - "stadium_canonical_id": "stadium_nhl_xcel_energy_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "bridgestone arena", - "stadium_canonical_id": "stadium_nhl_bridgestone_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "enterprise center", - "stadium_canonical_id": "stadium_nhl_enterprise_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "canada life centre", - "stadium_canonical_id": "stadium_nhl_canada_life_centre", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "honda center", - "stadium_canonical_id": "stadium_nhl_honda_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "delta center", - "stadium_canonical_id": "stadium_nhl_delta_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "sap center", - "stadium_canonical_id": "stadium_nhl_sap_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "rogers arena", - "stadium_canonical_id": "stadium_nhl_rogers_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "t-mobile arena", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "tmobile arena", - "stadium_canonical_id": "stadium_nhl_tmobile_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "climate pledge arena", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "crypto.com arena", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "cryptocom arena", - "stadium_canonical_id": "stadium_nhl_cryptocom_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "rogers place", - "stadium_canonical_id": "stadium_nhl_rogers_place", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "scotiabank saddledome", - "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "state farm stadium", - "stadium_canonical_id": "stadium_nfl_state_farm_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "mercedes-benz stadium", - "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "mercedesbenz stadium", - "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "m&t bank stadium", - "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "mt bank stadium", - "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "highmark stadium", - "stadium_canonical_id": "stadium_nfl_highmark_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "bank of america stadium", - "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "soldier field", - "stadium_canonical_id": "stadium_nfl_soldier_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "paycor stadium", - "stadium_canonical_id": "stadium_nfl_paycor_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "cleveland browns stadium", - "stadium_canonical_id": "stadium_nfl_huntington_bank_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "at&t stadium", - "stadium_canonical_id": "stadium_nfl_att_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "att stadium", - "stadium_canonical_id": "stadium_nfl_att_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "empower field at mile high", - "stadium_canonical_id": "stadium_nfl_empower_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "ford field", - "stadium_canonical_id": "stadium_nfl_ford_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "lambeau field", - "stadium_canonical_id": "stadium_nfl_lambeau_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "nrg stadium", - "stadium_canonical_id": "stadium_nfl_nrg_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "lucas oil stadium", - "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "everbank stadium", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "geha field at arrowhead stadium", - "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "allegiant stadium", - "stadium_canonical_id": "stadium_nfl_allegiant_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "sofi stadium", - "stadium_canonical_id": "stadium_nfl_sofi_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "hard rock stadium", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "u.s. bank stadium", - "stadium_canonical_id": "stadium_nfl_us_bank_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "us bank stadium", - "stadium_canonical_id": "stadium_nfl_us_bank_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "gillette stadium", - "stadium_canonical_id": "stadium_nfl_gillette_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "caesars superdome", - "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "metlife stadium", - "stadium_canonical_id": "stadium_nfl_metlife_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "lincoln financial field", - "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "acrisure stadium", - "stadium_canonical_id": "stadium_nfl_acrisure_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "levi's stadium", - "stadium_canonical_id": "stadium_nfl_levis_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "levis stadium", - "stadium_canonical_id": "stadium_nfl_levis_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "lumen field", - "stadium_canonical_id": "stadium_nfl_lumen_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "raymond james stadium", - "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "nissan stadium", - "stadium_canonical_id": "stadium_nfl_nissan_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "northwest stadium", - "stadium_canonical_id": "stadium_nfl_northwest_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "mercedes-benz stadium", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "mercedesbenz stadium", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "q2 stadium", - "stadium_canonical_id": "stadium_mls_q2_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "bank of america stadium", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "soldier field", - "stadium_canonical_id": "stadium_mls_soldier_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "tql stadium", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "dick's sporting goods park", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "dicks sporting goods park", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "lower.com field", - "stadium_canonical_id": "stadium_mls_lowercom_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "lowercom field", - "stadium_canonical_id": "stadium_mls_lowercom_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "toyota stadium", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "audi field", - "stadium_canonical_id": "stadium_mls_audi_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "shell energy stadium", - "stadium_canonical_id": "stadium_mls_shell_energy_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "dignity health sports park", - "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "bmo stadium", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "chase stadium", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "allianz field", - "stadium_canonical_id": "stadium_mls_allianz_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "stade saputo", - "stadium_canonical_id": "stadium_mls_stade_saputo", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "geodis park", - "stadium_canonical_id": "stadium_mls_geodis_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "gillette stadium", - "stadium_canonical_id": "stadium_mls_gillette_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "yankee stadium", - "stadium_canonical_id": "stadium_mls_yankee_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "red bull arena", - "stadium_canonical_id": "stadium_mls_red_bull_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "inter&co stadium", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "interco stadium", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "subaru park", - "stadium_canonical_id": "stadium_mls_subaru_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "providence park", - "stadium_canonical_id": "stadium_mls_providence_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "america first field", - "stadium_canonical_id": "stadium_mls_america_first_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "paypal park", - "stadium_canonical_id": "stadium_mls_paypal_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "lumen field", - "stadium_canonical_id": "stadium_mls_lumen_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "children's mercy park", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "childrens mercy park", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "citypark", - "stadium_canonical_id": "stadium_mls_citypark", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "bmo field", - "stadium_canonical_id": "stadium_mls_bmo_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "bc place", - "stadium_canonical_id": "stadium_mls_bc_place", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "snapdragon stadium", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "gateway center arena", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "wintrust arena", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "mohegan sun arena", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "college park center", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "michelob ultra arena", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "entertainment & sports arena", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "entertainment sports arena", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "chase center", - "stadium_canonical_id": "stadium_wnba_chase_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "gainbridge fieldhouse", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "crypto.com arena", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "cryptocom arena", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "target center", - "stadium_canonical_id": "stadium_wnba_target_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "barclays center", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "footprint center", - "stadium_canonical_id": "stadium_wnba_footprint_center", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "climate pledge arena", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "bmo stadium", - "stadium_canonical_id": "stadium_nwsl_bmo_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "paypal park", - "stadium_canonical_id": "stadium_nwsl_paypal_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "shell energy stadium", - "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "red bull arena", - "stadium_canonical_id": "stadium_nwsl_red_bull_arena", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "inter&co stadium", - "stadium_canonical_id": "stadium_nwsl_interco_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "interco stadium", - "stadium_canonical_id": "stadium_nwsl_interco_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "providence park", - "stadium_canonical_id": "stadium_nwsl_providence_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "lumen field", - "stadium_canonical_id": "stadium_nwsl_lumen_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "snapdragon stadium", - "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "america first field", - "stadium_canonical_id": "stadium_nwsl_america_first_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "audi field", - "stadium_canonical_id": "stadium_nwsl_audi_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "seatgeek stadium", - "stadium_canonical_id": "stadium_nwsl_seatgeek_stadium", - "valid_from": null, + "alias_name": "choctaw stadium", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "valid_from": "2020-01-01", "valid_until": null }, { - "alias_name": "cpkc stadium", - "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", + "alias_name": "great american ball park", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", "valid_from": null, "valid_until": null }, { - "alias_name": "wakemed soccer park", - "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", + "alias_name": "guaranteed rate field", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", "valid_from": null, "valid_until": null }, - { - "alias_name": "daikin park", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "valid_from": "2025-01-01", - "valid_until": null - }, - { - "alias_name": "enron field", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "valid_from": "2000-04-01", - "valid_until": "2002-02-28" - }, - { - "alias_name": "astros field", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "valid_from": "2002-03-01", - "valid_until": "2002-06-04" - }, { "alias_name": "rate field", "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", @@ -1212,34 +126,52 @@ "valid_until": "2002-12-31" }, { - "alias_name": "suntrust park", - "stadium_canonical_id": "stadium_mlb_truist_park", - "valid_from": "2017-04-01", - "valid_until": "2020-01-13" + "alias_name": "journey bank ballpark", + "stadium_canonical_id": "stadium_mlb_journey_bank_ballpark", + "valid_from": null, + "valid_until": null }, { - "alias_name": "jacobs field", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "valid_from": "1994-04-01", - "valid_until": "2008-01-10" + "alias_name": "bb&t ballpark williamsport", + "stadium_canonical_id": "stadium_mlb_journey_bank_ballpark", + "valid_from": null, + "valid_until": null }, { - "alias_name": "the jake", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "valid_from": "1994-04-01", - "valid_until": "2008-01-10" + "alias_name": "williamsport ballpark", + "stadium_canonical_id": "stadium_mlb_journey_bank_ballpark", + "valid_from": null, + "valid_until": null }, { - "alias_name": "miller park", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "valid_from": "2001-04-01", - "valid_until": "2020-12-31" + "alias_name": "little league classic", + "stadium_canonical_id": "stadium_mlb_journey_bank_ballpark", + "valid_from": null, + "valid_until": null }, { - "alias_name": "skydome", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "valid_from": "1989-06-01", - "valid_until": "2005-02-01" + "alias_name": "kauffman stadium", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "las vegas ballpark", + "stadium_canonical_id": "stadium_mlb_las_vegas_ballpark", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "vegas ballpark", + "stadium_canonical_id": "stadium_mlb_las_vegas_ballpark", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "loandepot park", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "valid_from": null, + "valid_until": null }, { "alias_name": "marlins park", @@ -1247,6 +179,66 @@ "valid_from": "2012-04-01", "valid_until": "2021-03-31" }, + { + "alias_name": "estadio alfredo harp helu", + "stadium_canonical_id": "stadium_mlb_mexico_alfredo_harp_helu", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "alfredo harp helu", + "stadium_canonical_id": "stadium_mlb_mexico_alfredo_harp_helu", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "diablos rojos stadium", + "stadium_canonical_id": "stadium_mlb_mexico_alfredo_harp_helu", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "mexico city stadium", + "stadium_canonical_id": "stadium_mlb_mexico_alfredo_harp_helu", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "minute maid park", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "daikin park", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "valid_from": "2025-01-01", + "valid_until": null + }, + { + "alias_name": "enron field", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "valid_from": "2000-04-01", + "valid_until": "2002-02-28" + }, + { + "alias_name": "astros field", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "valid_from": "2002-03-01", + "valid_until": "2002-06-04" + }, + { + "alias_name": "nationals park", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "oracle park", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "valid_from": null, + "valid_until": null + }, { "alias_name": "att park", "stadium_canonical_id": "stadium_mlb_oracle_park", @@ -1266,358 +258,52 @@ "valid_until": "2003-12-31" }, { - "alias_name": "choctaw stadium", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "valid_from": "2020-01-01", - "valid_until": null - }, - { - "alias_name": "philips arena", - "stadium_canonical_id": "stadium_nba_state_farm_arena", - "valid_from": "1999-09-01", - "valid_until": "2018-06-25" - }, - { - "alias_name": "ftx arena", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "valid_from": "2021-06-01", - "valid_until": "2023-03-31" - }, - { - "alias_name": "american airlines arena", - "stadium_canonical_id": "stadium_nba_kaseya_center", - "valid_from": "1999-12-01", - "valid_until": "2021-05-31" - }, - { - "alias_name": "bankers life fieldhouse", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "valid_from": "2011-01-01", - "valid_until": "2021-12-31" - }, - { - "alias_name": "conseco fieldhouse", - "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", - "valid_from": "1999-11-01", - "valid_until": "2010-12-31" - }, - { - "alias_name": "quicken loans arena", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "valid_from": "2005-08-01", - "valid_until": "2019-08-08" - }, - { - "alias_name": "gund arena", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "valid_from": "1994-10-01", - "valid_until": "2005-07-31" - }, - { - "alias_name": "amway center", - "stadium_canonical_id": "stadium_nba_kia_center", - "valid_from": "2010-10-01", - "valid_until": "2023-07-12" - }, - { - "alias_name": "att center", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "valid_from": "2002-10-01", - "valid_until": "2023-10-01" - }, - { - "alias_name": "at&t center", - "stadium_canonical_id": "stadium_nba_frost_bank_center", - "valid_from": "2002-10-18", - "valid_until": "2024-07-01" - }, - { - "alias_name": "vivint arena", - "stadium_canonical_id": "stadium_nba_delta_center", - "valid_from": "2020-12-01", - "valid_until": "2023-07-01" - }, - { - "alias_name": "vivint smart home arena", - "stadium_canonical_id": "stadium_nba_delta_center", - "valid_from": "2015-11-01", - "valid_until": "2020-11-30" - }, - { - "alias_name": "energysolutions arena", - "stadium_canonical_id": "stadium_nba_delta_center", - "valid_from": "2006-11-01", - "valid_until": "2015-10-31" - }, - { - "alias_name": "fla live arena", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "valid_from": "2021-10-01", - "valid_until": "2024-05-31" - }, - { - "alias_name": "bb&t center", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "valid_from": "2012-06-01", - "valid_until": "2021-09-30" - }, - { - "alias_name": "bankatlantic center", - "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", - "valid_from": "2005-10-01", - "valid_until": "2012-05-31" - }, - { - "alias_name": "keyarena", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "valid_from": "1995-01-01", - "valid_until": "2018-10-01" - }, - { - "alias_name": "seattle center coliseum", - "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", - "valid_from": "1962-01-01", - "valid_until": "1994-12-31" - }, - { - "alias_name": "mercedes-benz superdome", - "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "valid_from": "2011-10-01", - "valid_until": "2021-07-01" - }, - { - "alias_name": "louisiana superdome", - "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "valid_from": "1975-08-01", - "valid_until": "2011-09-30" - }, - { - "alias_name": "superdome", - "stadium_canonical_id": "stadium_nfl_caesars_superdome", - "valid_from": "1975-08-01", - "valid_until": null - }, - { - "alias_name": "paul brown stadium", - "stadium_canonical_id": "stadium_nfl_paycor_stadium", - "valid_from": "2000-08-01", - "valid_until": "2022-09-05" - }, - { - "alias_name": "broncos stadium at mile high", - "stadium_canonical_id": "stadium_nfl_empower_field", - "valid_from": "2018-09-01", - "valid_until": "2019-08-31" - }, - { - "alias_name": "sports authority field at mile high", - "stadium_canonical_id": "stadium_nfl_empower_field", - "valid_from": "2011-08-01", - "valid_until": "2018-08-31" - }, - { - "alias_name": "invesco field at mile high", - "stadium_canonical_id": "stadium_nfl_empower_field", - "valid_from": "2001-09-01", - "valid_until": "2011-07-31" - }, - { - "alias_name": "mile high stadium", - "stadium_canonical_id": "stadium_nfl_empower_field", - "valid_from": "1960-01-01", - "valid_until": "2001-08-31" - }, - { - "alias_name": "heinz field", - "stadium_canonical_id": "stadium_nfl_acrisure_stadium", - "valid_from": "2001-08-01", - "valid_until": "2022-07-10" - }, - { - "alias_name": "tiaa bank field", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", - "valid_from": "2018-01-01", - "valid_until": "2023-03-31" - }, - { - "alias_name": "everbank field", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", - "valid_from": "2014-01-01", - "valid_until": "2017-12-31" - }, - { - "alias_name": "alltel stadium", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", - "valid_from": "1997-06-01", - "valid_until": "2006-12-31" - }, - { - "alias_name": "jacksonville municipal stadium", - "stadium_canonical_id": "stadium_nfl_everbank_stadium", - "valid_from": "1995-08-01", - "valid_until": "1997-05-31" - }, - { - "alias_name": "fedexfield", - "stadium_canonical_id": "stadium_nfl_northwest_stadium", - "valid_from": "1999-11-01", - "valid_until": "2025-01-01" - }, - { - "alias_name": "fedex field", - "stadium_canonical_id": "stadium_nfl_northwest_stadium", - "valid_from": "1999-11-01", - "valid_until": "2025-01-01" - }, - { - "alias_name": "jack kent cooke stadium", - "stadium_canonical_id": "stadium_nfl_northwest_stadium", - "valid_from": "1997-09-01", - "valid_until": "1999-10-31" - }, - { - "alias_name": "sun life stadium", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", - "valid_from": "2010-01-01", - "valid_until": "2016-07-31" - }, - { - "alias_name": "land shark stadium", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", - "valid_from": "2009-01-01", - "valid_until": "2009-12-31" - }, - { - "alias_name": "dolphin stadium", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", - "valid_from": "2005-01-01", - "valid_until": "2008-12-31" - }, - { - "alias_name": "pro player stadium", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", - "valid_from": "1996-04-01", - "valid_until": "2004-12-31" - }, - { - "alias_name": "joe robbie stadium", - "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", - "valid_from": "1987-08-01", - "valid_until": "1996-03-31" - }, - { - "alias_name": "bills stadium", - "stadium_canonical_id": "stadium_nfl_highmark_stadium", - "valid_from": "2020-03-01", - "valid_until": "2021-03-31" - }, - { - "alias_name": "new era field", - "stadium_canonical_id": "stadium_nfl_highmark_stadium", - "valid_from": "2016-08-01", - "valid_until": "2020-02-29" - }, - { - "alias_name": "ralph wilson stadium", - "stadium_canonical_id": "stadium_nfl_highmark_stadium", - "valid_from": "1998-08-01", - "valid_until": "2016-07-31" - }, - { - "alias_name": "rich stadium", - "stadium_canonical_id": "stadium_nfl_highmark_stadium", - "valid_from": "1973-08-01", - "valid_until": "1998-07-31" - }, - { - "alias_name": "arrowhead stadium", - "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", - "valid_from": "1972-08-01", - "valid_until": null - }, - { - "alias_name": "cowboys stadium", - "stadium_canonical_id": "stadium_nfl_att_stadium", - "valid_from": "2009-05-01", - "valid_until": "2013-07-24" - }, - { - "alias_name": "centurylink field", - "stadium_canonical_id": "stadium_nfl_lumen_field", - "valid_from": "2011-06-01", - "valid_until": "2020-11-18" - }, - { - "alias_name": "qwest field", - "stadium_canonical_id": "stadium_nfl_lumen_field", - "valid_from": "2004-06-01", - "valid_until": "2011-05-31" - }, - { - "alias_name": "seahawks stadium", - "stadium_canonical_id": "stadium_nfl_lumen_field", - "valid_from": "2002-07-01", - "valid_until": "2004-05-31" - }, - { - "alias_name": "salt river fields at talking stick", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "alias_name": "oriole park at camden yards", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", "valid_from": null, "valid_until": null }, { - "alias_name": "salt river fields", - "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", + "alias_name": "petco park", + "stadium_canonical_id": "stadium_mlb_petco_park", "valid_from": null, "valid_until": null }, { - "alias_name": "sloan park", - "stadium_canonical_id": "stadium_mlb_spring_sloan_park", + "alias_name": "pnc park", + "stadium_canonical_id": "stadium_mlb_pnc_park", "valid_from": null, "valid_until": null }, { - "alias_name": "hohokam stadium", - "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", + "alias_name": "progressive field", + "stadium_canonical_id": "stadium_mlb_progressive_field", "valid_from": null, "valid_until": null }, { - "alias_name": "hohokam park", - "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", + "alias_name": "jacobs field", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "valid_from": "1994-04-01", + "valid_until": "2008-01-10" + }, + { + "alias_name": "the jake", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "valid_from": "1994-04-01", + "valid_until": "2008-01-10" + }, + { + "alias_name": "rogers centre", + "stadium_canonical_id": "stadium_mlb_rogers_centre", "valid_from": null, "valid_until": null }, { - "alias_name": "camelback ranch", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "camelback ranch-glendale", - "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "goodyear ballpark", - "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "tempe diablo stadium", - "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "scottsdale stadium", - "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", - "valid_from": null, - "valid_until": null + "alias_name": "skydome", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "valid_from": "1989-06-01", + "valid_until": "2005-02-01" }, { "alias_name": "american family fields of phoenix", @@ -1637,126 +323,6 @@ "valid_from": null, "valid_until": null }, - { - "alias_name": "peoria sports complex", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "peoria stadium", - "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "surprise stadium", - "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "jetblue park", - "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "jetblue park at fenway south", - "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "fenway south", - "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "roger dean chevrolet stadium", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "roger dean stadium", - "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "ed smith stadium", - "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "george m. steinbrenner field", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "steinbrenner field", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "legends field", - "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "td ballpark", - "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "dunedin stadium", - "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "cooltoday park", - "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "cool today park", - "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "hammond stadium", - "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "lee health sports complex", - "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "clover park", - "stadium_canonical_id": "stadium_mlb_spring_clover_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "first data field", - "stadium_canonical_id": "stadium_mlb_spring_clover_park", - "valid_from": null, - "valid_until": null - }, { "alias_name": "baycare ballpark", "stadium_canonical_id": "stadium_mlb_spring_baycare_ballpark", @@ -1775,30 +341,6 @@ "valid_from": null, "valid_until": null }, - { - "alias_name": "lecom park", - "stadium_canonical_id": "stadium_mlb_spring_lecom_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "mckechnie field", - "stadium_canonical_id": "stadium_mlb_spring_lecom_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "charlotte sports park", - "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", - "valid_from": null, - "valid_until": null - }, - { - "alias_name": "charlotte county stadium", - "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", - "valid_from": null, - "valid_until": null - }, { "alias_name": "cacti park of the palm beaches", "stadium_canonical_id": "stadium_mlb_spring_cacti_park", @@ -1823,6 +365,108 @@ "valid_from": null, "valid_until": null }, + { + "alias_name": "camelback ranch", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "camelback ranch-glendale", + "stadium_canonical_id": "stadium_mlb_spring_camelback_ranch", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "charlotte sports park", + "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "charlotte county stadium", + "stadium_canonical_id": "stadium_mlb_spring_charlotte_sports_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "clover park", + "stadium_canonical_id": "stadium_mlb_spring_clover_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "first data field", + "stadium_canonical_id": "stadium_mlb_spring_clover_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "cooltoday park", + "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "cool today park", + "stadium_canonical_id": "stadium_mlb_spring_cooltoday_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "ed smith stadium", + "stadium_canonical_id": "stadium_mlb_spring_ed_smith_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "goodyear ballpark", + "stadium_canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "hammond stadium", + "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "lee health sports complex", + "stadium_canonical_id": "stadium_mlb_spring_hammond_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "hohokam stadium", + "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "hohokam park", + "stadium_canonical_id": "stadium_mlb_spring_hohokam_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "jetblue park", + "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "jetblue park at fenway south", + "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "fenway south", + "stadium_canonical_id": "stadium_mlb_spring_jetblue_park", + "valid_from": null, + "valid_until": null + }, { "alias_name": "publix field at joker marchant stadium", "stadium_canonical_id": "stadium_mlb_spring_joker_marchant", @@ -1854,104 +498,332 @@ "valid_until": null }, { - "alias_name": "las vegas ballpark", - "stadium_canonical_id": "stadium_mlb_las_vegas_ballpark", + "alias_name": "lecom park", + "stadium_canonical_id": "stadium_mlb_spring_lecom_park", "valid_from": null, "valid_until": null }, { - "alias_name": "vegas ballpark", - "stadium_canonical_id": "stadium_mlb_las_vegas_ballpark", + "alias_name": "mckechnie field", + "stadium_canonical_id": "stadium_mlb_spring_lecom_park", "valid_from": null, "valid_until": null }, { - "alias_name": "estadio alfredo harp helu", - "stadium_canonical_id": "stadium_mlb_mexico_alfredo_harp_helu", + "alias_name": "peoria sports complex", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", "valid_from": null, "valid_until": null }, { - "alias_name": "alfredo harp helu", - "stadium_canonical_id": "stadium_mlb_mexico_alfredo_harp_helu", + "alias_name": "peoria stadium", + "stadium_canonical_id": "stadium_mlb_spring_peoria_sports_complex", "valid_from": null, "valid_until": null }, { - "alias_name": "diablos rojos stadium", - "stadium_canonical_id": "stadium_mlb_mexico_alfredo_harp_helu", + "alias_name": "roger dean chevrolet stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", "valid_from": null, "valid_until": null }, { - "alias_name": "mexico city stadium", - "stadium_canonical_id": "stadium_mlb_mexico_alfredo_harp_helu", + "alias_name": "roger dean stadium", + "stadium_canonical_id": "stadium_mlb_spring_roger_dean_stadium", "valid_from": null, "valid_until": null }, { - "alias_name": "field of dreams", - "stadium_canonical_id": "stadium_mlb_field_of_dreams", + "alias_name": "salt river fields at talking stick", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", "valid_from": null, "valid_until": null }, { - "alias_name": "dyersville", - "stadium_canonical_id": "stadium_mlb_field_of_dreams", + "alias_name": "salt river fields", + "stadium_canonical_id": "stadium_mlb_spring_salt_river_fields", "valid_from": null, "valid_until": null }, { - "alias_name": "journey bank ballpark", - "stadium_canonical_id": "stadium_mlb_journey_bank_ballpark", + "alias_name": "scottsdale stadium", + "stadium_canonical_id": "stadium_mlb_spring_scottsdale_stadium", "valid_from": null, "valid_until": null }, { - "alias_name": "bb&t ballpark williamsport", - "stadium_canonical_id": "stadium_mlb_journey_bank_ballpark", + "alias_name": "sloan park", + "stadium_canonical_id": "stadium_mlb_spring_sloan_park", "valid_from": null, "valid_until": null }, { - "alias_name": "williamsport ballpark", - "stadium_canonical_id": "stadium_mlb_journey_bank_ballpark", + "alias_name": "george m. steinbrenner field", + "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", "valid_from": null, "valid_until": null }, { - "alias_name": "little league classic", - "stadium_canonical_id": "stadium_mlb_journey_bank_ballpark", + "alias_name": "steinbrenner field", + "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", "valid_from": null, "valid_until": null }, { - "alias_name": "mortgage matchup center", - "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "alias_name": "legends field", + "stadium_canonical_id": "stadium_mlb_spring_steinbrenner_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "surprise stadium", + "stadium_canonical_id": "stadium_mlb_spring_surprise_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "td ballpark", + "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "dunedin stadium", + "stadium_canonical_id": "stadium_mlb_spring_td_ballpark", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "tempe diablo stadium", + "stadium_canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "sutter health park", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "target field", + "stadium_canonical_id": "stadium_mlb_target_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "t-mobile park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "tmobile park", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "tropicana field", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "truist park", + "stadium_canonical_id": "stadium_mlb_truist_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "suntrust park", + "stadium_canonical_id": "stadium_mlb_truist_park", + "valid_from": "2017-04-01", + "valid_until": "2020-01-13" + }, + { + "alias_name": "wrigley field", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "yankee stadium", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "allianz field", + "stadium_canonical_id": "stadium_mls_allianz_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "america first field", + "stadium_canonical_id": "stadium_mls_america_first_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "audi field", + "stadium_canonical_id": "stadium_mls_audi_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "dc united", + "stadium_canonical_id": "stadium_mls_audi_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "d.c. united", + "stadium_canonical_id": "stadium_mls_audi_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "bank of america stadium", + "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "bc place", + "stadium_canonical_id": "stadium_mls_bc_place", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "bmo field", + "stadium_canonical_id": "stadium_mls_bmo_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "bmo stadium", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "lafc", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "los angeles fc", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "chase stadium", + "stadium_canonical_id": "stadium_mls_chase_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "inter miami", + "stadium_canonical_id": "stadium_mls_chase_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "inter miami cf", + "stadium_canonical_id": "stadium_mls_chase_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "miami", + "stadium_canonical_id": "stadium_mls_chase_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "mia", + "stadium_canonical_id": "stadium_mls_chase_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "children's mercy park", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "childrens mercy park", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "citypark", + "stadium_canonical_id": "stadium_mls_citypark", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "energizer park", + "stadium_canonical_id": "stadium_mls_citypark", "valid_from": "2025-01-01", "valid_until": null }, { - "alias_name": "xfinity mobile arena", - "stadium_canonical_id": "stadium_nba_intuit_dome", - "valid_from": "2025-01-01", - "valid_until": null - }, - { - "alias_name": "rocket arena", - "stadium_canonical_id": "stadium_nba_toyota_center", - "valid_from": "2025-01-01", - "valid_until": null - }, - { - "alias_name": "mexico city arena", - "stadium_canonical_id": "stadium_nba_mexico_city_arena", + "alias_name": "dick's sporting goods park", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", "valid_from": null, "valid_until": null }, { - "alias_name": "arena cdmx", - "stadium_canonical_id": "stadium_nba_mexico_city_arena", + "alias_name": "dicks sporting goods park", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "dignity health sports park", + "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "geodis park", + "stadium_canonical_id": "stadium_mls_geodis_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "gillette stadium", + "stadium_canonical_id": "stadium_mls_gillette_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "inter&co stadium", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "interco stadium", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "lower.com field", + "stadium_canonical_id": "stadium_mls_lowercom_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "lowercom field", + "stadium_canonical_id": "stadium_mls_lowercom_field", "valid_from": null, "valid_until": null }, @@ -1968,9 +840,45 @@ "valid_until": null }, { - "alias_name": "energizer park", - "stadium_canonical_id": "stadium_mls_citypark", - "valid_from": "2025-01-01", + "alias_name": "lumen field", + "stadium_canonical_id": "stadium_mls_lumen_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "mercedes-benz stadium", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "mercedesbenz stadium", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "paypal park", + "stadium_canonical_id": "stadium_mls_paypal_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "providence park", + "stadium_canonical_id": "stadium_mls_providence_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "q2 stadium", + "stadium_canonical_id": "stadium_mls_q2_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "red bull arena", + "stadium_canonical_id": "stadium_mls_red_bull_arena", + "valid_from": null, "valid_until": null }, { @@ -1979,12 +887,1098 @@ "valid_from": "2025-01-01", "valid_until": null }, + { + "alias_name": "shell energy stadium", + "stadium_canonical_id": "stadium_mls_shell_energy_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "snapdragon stadium", + "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "soldier field", + "stadium_canonical_id": "stadium_mls_soldier_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "stade saputo", + "stadium_canonical_id": "stadium_mls_stade_saputo", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "subaru park", + "stadium_canonical_id": "stadium_mls_subaru_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "toyota stadium", + "stadium_canonical_id": "stadium_mls_toyota_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "tql stadium", + "stadium_canonical_id": "stadium_mls_tql_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "yankee stadium", + "stadium_canonical_id": "stadium_mls_yankee_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "nycfc", + "stadium_canonical_id": "stadium_mls_yankee_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "nyc", + "stadium_canonical_id": "stadium_mls_yankee_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "new york city fc", + "stadium_canonical_id": "stadium_mls_yankee_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "american airlines center", + "stadium_canonical_id": "stadium_nba_american_airlines_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "ball arena", + "stadium_canonical_id": "stadium_nba_ball_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "barclays center", + "stadium_canonical_id": "stadium_nba_barclays_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "capital one arena", + "stadium_canonical_id": "stadium_nba_capital_one_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "chase center", + "stadium_canonical_id": "stadium_nba_chase_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "crypto.com arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "cryptocom arena", + "stadium_canonical_id": "stadium_nba_cryptocom_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "delta center", + "stadium_canonical_id": "stadium_nba_delta_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "vivint arena", + "stadium_canonical_id": "stadium_nba_delta_center", + "valid_from": "2020-12-01", + "valid_until": "2023-07-01" + }, + { + "alias_name": "vivint smart home arena", + "stadium_canonical_id": "stadium_nba_delta_center", + "valid_from": "2015-11-01", + "valid_until": "2020-11-30" + }, + { + "alias_name": "energysolutions arena", + "stadium_canonical_id": "stadium_nba_delta_center", + "valid_from": "2006-11-01", + "valid_until": "2015-10-31" + }, + { + "alias_name": "fedexforum", + "stadium_canonical_id": "stadium_nba_fedexforum", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "fiserv forum", + "stadium_canonical_id": "stadium_nba_fiserv_forum", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "footprint center", + "stadium_canonical_id": "stadium_nba_footprint_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "frost bank center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "att center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "valid_from": "2002-10-01", + "valid_until": "2023-10-01" + }, + { + "alias_name": "at&t center", + "stadium_canonical_id": "stadium_nba_frost_bank_center", + "valid_from": "2002-10-18", + "valid_until": "2024-07-01" + }, + { + "alias_name": "gainbridge fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "bankers life fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "valid_from": "2011-01-01", + "valid_until": "2021-12-31" + }, + { + "alias_name": "conseco fieldhouse", + "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", + "valid_from": "1999-11-01", + "valid_until": "2010-12-31" + }, + { + "alias_name": "golden 1 center", + "stadium_canonical_id": "stadium_nba_golden_1_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "intuit dome", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "xfinity mobile arena", + "stadium_canonical_id": "stadium_nba_intuit_dome", + "valid_from": "2025-01-01", + "valid_until": null + }, + { + "alias_name": "kaseya center", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "ftx arena", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "valid_from": "2021-06-01", + "valid_until": "2023-03-31" + }, + { + "alias_name": "american airlines arena", + "stadium_canonical_id": "stadium_nba_kaseya_center", + "valid_from": "1999-12-01", + "valid_until": "2021-05-31" + }, + { + "alias_name": "kia center", + "stadium_canonical_id": "stadium_nba_kia_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "amway center", + "stadium_canonical_id": "stadium_nba_kia_center", + "valid_from": "2010-10-01", + "valid_until": "2023-07-12" + }, + { + "alias_name": "little caesars arena", + "stadium_canonical_id": "stadium_nba_little_caesars_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "madison square garden", + "stadium_canonical_id": "stadium_nba_madison_square_garden", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "mexico city arena", + "stadium_canonical_id": "stadium_nba_mexico_city_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "arena cdmx", + "stadium_canonical_id": "stadium_nba_mexico_city_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "moda center", + "stadium_canonical_id": "stadium_nba_moda_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "paycom center", + "stadium_canonical_id": "stadium_nba_paycom_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "rocket mortgage fieldhouse", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "quicken loans arena", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "valid_from": "2005-08-01", + "valid_until": "2019-08-08" + }, + { + "alias_name": "gund arena", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "valid_from": "1994-10-01", + "valid_until": "2005-07-31" + }, + { + "alias_name": "mortgage matchup center", + "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", + "valid_from": "2025-01-01", + "valid_until": null + }, + { + "alias_name": "scotiabank arena", + "stadium_canonical_id": "stadium_nba_scotiabank_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "smoothie king center", + "stadium_canonical_id": "stadium_nba_smoothie_king_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "spectrum center", + "stadium_canonical_id": "stadium_nba_spectrum_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "state farm arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "philips arena", + "stadium_canonical_id": "stadium_nba_state_farm_arena", + "valid_from": "1999-09-01", + "valid_until": "2018-06-25" + }, + { + "alias_name": "target center", + "stadium_canonical_id": "stadium_nba_target_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "td garden", + "stadium_canonical_id": "stadium_nba_td_garden", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "toyota center", + "stadium_canonical_id": "stadium_nba_toyota_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "rocket arena", + "stadium_canonical_id": "stadium_nba_toyota_center", + "valid_from": "2025-01-01", + "valid_until": null + }, + { + "alias_name": "united center", + "stadium_canonical_id": "stadium_nba_united_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "wells fargo center", + "stadium_canonical_id": "stadium_nba_wells_fargo_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "acrisure stadium", + "stadium_canonical_id": "stadium_nfl_acrisure_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "heinz field", + "stadium_canonical_id": "stadium_nfl_acrisure_stadium", + "valid_from": "2001-08-01", + "valid_until": "2022-07-10" + }, + { + "alias_name": "allegiant stadium", + "stadium_canonical_id": "stadium_nfl_allegiant_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "geha field at arrowhead stadium", + "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "arrowhead stadium", + "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", + "valid_from": "1972-08-01", + "valid_until": null + }, + { + "alias_name": "at&t stadium", + "stadium_canonical_id": "stadium_nfl_att_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "att stadium", + "stadium_canonical_id": "stadium_nfl_att_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "cowboys stadium", + "stadium_canonical_id": "stadium_nfl_att_stadium", + "valid_from": "2009-05-01", + "valid_until": "2013-07-24" + }, + { + "alias_name": "bank of america stadium", + "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "caesars superdome", + "stadium_canonical_id": "stadium_nfl_caesars_superdome", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "mercedes-benz superdome", + "stadium_canonical_id": "stadium_nfl_caesars_superdome", + "valid_from": "2011-10-01", + "valid_until": "2021-07-01" + }, + { + "alias_name": "louisiana superdome", + "stadium_canonical_id": "stadium_nfl_caesars_superdome", + "valid_from": "1975-08-01", + "valid_until": "2011-09-30" + }, + { + "alias_name": "superdome", + "stadium_canonical_id": "stadium_nfl_caesars_superdome", + "valid_from": "1975-08-01", + "valid_until": null + }, + { + "alias_name": "empower field at mile high", + "stadium_canonical_id": "stadium_nfl_empower_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "broncos stadium at mile high", + "stadium_canonical_id": "stadium_nfl_empower_field", + "valid_from": "2018-09-01", + "valid_until": "2019-08-31" + }, + { + "alias_name": "sports authority field at mile high", + "stadium_canonical_id": "stadium_nfl_empower_field", + "valid_from": "2011-08-01", + "valid_until": "2018-08-31" + }, + { + "alias_name": "invesco field at mile high", + "stadium_canonical_id": "stadium_nfl_empower_field", + "valid_from": "2001-09-01", + "valid_until": "2011-07-31" + }, + { + "alias_name": "mile high stadium", + "stadium_canonical_id": "stadium_nfl_empower_field", + "valid_from": "1960-01-01", + "valid_until": "2001-08-31" + }, + { + "alias_name": "everbank stadium", + "stadium_canonical_id": "stadium_nfl_everbank_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "tiaa bank field", + "stadium_canonical_id": "stadium_nfl_everbank_stadium", + "valid_from": "2018-01-01", + "valid_until": "2023-03-31" + }, + { + "alias_name": "everbank field", + "stadium_canonical_id": "stadium_nfl_everbank_stadium", + "valid_from": "2014-01-01", + "valid_until": "2017-12-31" + }, + { + "alias_name": "alltel stadium", + "stadium_canonical_id": "stadium_nfl_everbank_stadium", + "valid_from": "1997-06-01", + "valid_until": "2006-12-31" + }, + { + "alias_name": "jacksonville municipal stadium", + "stadium_canonical_id": "stadium_nfl_everbank_stadium", + "valid_from": "1995-08-01", + "valid_until": "1997-05-31" + }, + { + "alias_name": "ford field", + "stadium_canonical_id": "stadium_nfl_ford_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "gillette stadium", + "stadium_canonical_id": "stadium_nfl_gillette_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "hard rock stadium", + "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "sun life stadium", + "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", + "valid_from": "2010-01-01", + "valid_until": "2016-07-31" + }, + { + "alias_name": "land shark stadium", + "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", + "valid_from": "2009-01-01", + "valid_until": "2009-12-31" + }, + { + "alias_name": "dolphin stadium", + "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", + "valid_from": "2005-01-01", + "valid_until": "2008-12-31" + }, + { + "alias_name": "pro player stadium", + "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", + "valid_from": "1996-04-01", + "valid_until": "2004-12-31" + }, + { + "alias_name": "joe robbie stadium", + "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", + "valid_from": "1987-08-01", + "valid_until": "1996-03-31" + }, + { + "alias_name": "highmark stadium", + "stadium_canonical_id": "stadium_nfl_highmark_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "bills stadium", + "stadium_canonical_id": "stadium_nfl_highmark_stadium", + "valid_from": "2020-03-01", + "valid_until": "2021-03-31" + }, + { + "alias_name": "new era field", + "stadium_canonical_id": "stadium_nfl_highmark_stadium", + "valid_from": "2016-08-01", + "valid_until": "2020-02-29" + }, + { + "alias_name": "ralph wilson stadium", + "stadium_canonical_id": "stadium_nfl_highmark_stadium", + "valid_from": "1998-08-01", + "valid_until": "2016-07-31" + }, + { + "alias_name": "rich stadium", + "stadium_canonical_id": "stadium_nfl_highmark_stadium", + "valid_from": "1973-08-01", + "valid_until": "1998-07-31" + }, + { + "alias_name": "cleveland browns stadium", + "stadium_canonical_id": "stadium_nfl_huntington_bank_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "lambeau field", + "stadium_canonical_id": "stadium_nfl_lambeau_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "levi's stadium", + "stadium_canonical_id": "stadium_nfl_levis_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "levis stadium", + "stadium_canonical_id": "stadium_nfl_levis_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "lincoln financial field", + "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "lucas oil stadium", + "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "lumen field", + "stadium_canonical_id": "stadium_nfl_lumen_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "centurylink field", + "stadium_canonical_id": "stadium_nfl_lumen_field", + "valid_from": "2011-06-01", + "valid_until": "2020-11-18" + }, + { + "alias_name": "qwest field", + "stadium_canonical_id": "stadium_nfl_lumen_field", + "valid_from": "2004-06-01", + "valid_until": "2011-05-31" + }, + { + "alias_name": "seahawks stadium", + "stadium_canonical_id": "stadium_nfl_lumen_field", + "valid_from": "2002-07-01", + "valid_until": "2004-05-31" + }, + { + "alias_name": "m&t bank stadium", + "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "mt bank stadium", + "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "mercedes-benz stadium", + "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "mercedesbenz stadium", + "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "metlife stadium", + "stadium_canonical_id": "stadium_nfl_metlife_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "nissan stadium", + "stadium_canonical_id": "stadium_nfl_nissan_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "northwest stadium", + "stadium_canonical_id": "stadium_nfl_northwest_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "fedexfield", + "stadium_canonical_id": "stadium_nfl_northwest_stadium", + "valid_from": "1999-11-01", + "valid_until": "2025-01-01" + }, + { + "alias_name": "fedex field", + "stadium_canonical_id": "stadium_nfl_northwest_stadium", + "valid_from": "1999-11-01", + "valid_until": "2025-01-01" + }, + { + "alias_name": "jack kent cooke stadium", + "stadium_canonical_id": "stadium_nfl_northwest_stadium", + "valid_from": "1997-09-01", + "valid_until": "1999-10-31" + }, + { + "alias_name": "nrg stadium", + "stadium_canonical_id": "stadium_nfl_nrg_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "paycor stadium", + "stadium_canonical_id": "stadium_nfl_paycor_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "paul brown stadium", + "stadium_canonical_id": "stadium_nfl_paycor_stadium", + "valid_from": "2000-08-01", + "valid_until": "2022-09-05" + }, + { + "alias_name": "raymond james stadium", + "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "sofi stadium", + "stadium_canonical_id": "stadium_nfl_sofi_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "soldier field", + "stadium_canonical_id": "stadium_nfl_soldier_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "state farm stadium", + "stadium_canonical_id": "stadium_nfl_state_farm_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "u.s. bank stadium", + "stadium_canonical_id": "stadium_nfl_us_bank_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "us bank stadium", + "stadium_canonical_id": "stadium_nfl_us_bank_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "amalie arena", + "stadium_canonical_id": "stadium_nhl_amalie_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "amerant bank arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "fla live arena", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "valid_from": "2021-10-01", + "valid_until": "2024-05-31" + }, + { + "alias_name": "bb&t center", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "valid_from": "2012-06-01", + "valid_until": "2021-09-30" + }, + { + "alias_name": "bankatlantic center", + "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", + "valid_from": "2005-10-01", + "valid_until": "2012-05-31" + }, + { + "alias_name": "american airlines center", + "stadium_canonical_id": "stadium_nhl_american_airlines_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "ball arena", + "stadium_canonical_id": "stadium_nhl_ball_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "bell centre", + "stadium_canonical_id": "stadium_nhl_bell_centre", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "bridgestone arena", + "stadium_canonical_id": "stadium_nhl_bridgestone_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "canada life centre", + "stadium_canonical_id": "stadium_nhl_canada_life_centre", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "canadian tire centre", + "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "capital one arena", + "stadium_canonical_id": "stadium_nhl_capital_one_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "climate pledge arena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "keyarena", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "valid_from": "1995-01-01", + "valid_until": "2018-10-01" + }, + { + "alias_name": "seattle center coliseum", + "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", + "valid_from": "1962-01-01", + "valid_until": "1994-12-31" + }, + { + "alias_name": "crypto.com arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "cryptocom arena", + "stadium_canonical_id": "stadium_nhl_cryptocom_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "delta center", + "stadium_canonical_id": "stadium_nhl_delta_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "enterprise center", + "stadium_canonical_id": "stadium_nhl_enterprise_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "honda center", + "stadium_canonical_id": "stadium_nhl_honda_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "keybank center", + "stadium_canonical_id": "stadium_nhl_keybank_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "little caesars arena", + "stadium_canonical_id": "stadium_nhl_little_caesars_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "madison square garden", + "stadium_canonical_id": "stadium_nhl_madison_square_garden", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "nationwide arena", + "stadium_canonical_id": "stadium_nhl_nationwide_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "pnc arena", + "stadium_canonical_id": "stadium_nhl_pnc_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "ppg paints arena", + "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "prudential center", + "stadium_canonical_id": "stadium_nhl_prudential_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "rogers arena", + "stadium_canonical_id": "stadium_nhl_rogers_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "rogers place", + "stadium_canonical_id": "stadium_nhl_rogers_place", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "sap center", + "stadium_canonical_id": "stadium_nhl_sap_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "scotiabank arena", + "stadium_canonical_id": "stadium_nhl_scotiabank_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "scotiabank saddledome", + "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "td garden", + "stadium_canonical_id": "stadium_nhl_td_garden", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "t-mobile arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "tmobile arena", + "stadium_canonical_id": "stadium_nhl_tmobile_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "ubs arena", + "stadium_canonical_id": "stadium_nhl_ubs_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "united center", + "stadium_canonical_id": "stadium_nhl_united_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "wells fargo center", + "stadium_canonical_id": "stadium_nhl_wells_fargo_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "xcel energy center", + "stadium_canonical_id": "stadium_nhl_xcel_energy_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "america first field", + "stadium_canonical_id": "stadium_nwsl_america_first_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "audi field", + "stadium_canonical_id": "stadium_nwsl_audi_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "bmo stadium", + "stadium_canonical_id": "stadium_nwsl_bmo_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "cpkc stadium", + "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "inter&co stadium", + "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "interco stadium", + "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "lumen field", + "stadium_canonical_id": "stadium_nwsl_lumen_field", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "oracle park", + "stadium_canonical_id": "stadium_nwsl_oracle_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "paypal park", + "stadium_canonical_id": "stadium_nwsl_paypal_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "providence park", + "stadium_canonical_id": "stadium_nwsl_providence_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "red bull arena", + "stadium_canonical_id": "stadium_nwsl_red_bull_arena", + "valid_from": null, + "valid_until": null + }, { "alias_name": "sports illustrated stadium", "stadium_canonical_id": "stadium_nwsl_red_bull_arena", "valid_from": "2025-01-01", "valid_until": null }, + { + "alias_name": "seatgeek stadium", + "stadium_canonical_id": "stadium_nwsl_seatgeek_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "chicago red stars", + "stadium_canonical_id": "stadium_nwsl_seatgeek_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "chi", + "stadium_canonical_id": "stadium_nwsl_seatgeek_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "chicago", + "stadium_canonical_id": "stadium_nwsl_seatgeek_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "shell energy stadium", + "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "snapdragon stadium", + "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", + "valid_from": null, + "valid_until": null + }, { "alias_name": "soldier field", "stadium_canonical_id": "stadium_nwsl_soldier_field", @@ -1992,8 +1986,62 @@ "valid_until": null }, { - "alias_name": "oracle park", - "stadium_canonical_id": "stadium_nwsl_oracle_park", + "alias_name": "wakemed soccer park", + "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "barclays center", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "cfg bank arena", + "stadium_canonical_id": "stadium_wnba_cfg_bank_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "chase center", + "stadium_canonical_id": "stadium_wnba_chase_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "climate pledge arena", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "college park center", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "crypto.com arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "cryptocom arena", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "entertainment & sports arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "entertainment sports arena", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", "valid_from": null, "valid_until": null }, @@ -2009,6 +2057,42 @@ "valid_from": "2025-01-01", "valid_until": null }, + { + "alias_name": "footprint center", + "stadium_canonical_id": "stadium_wnba_footprint_center", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "gainbridge fieldhouse", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "gateway center arena", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "michelob ultra arena", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "mohegan sun arena", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "valid_from": null, + "valid_until": null + }, + { + "alias_name": "purcell pavilion", + "stadium_canonical_id": "stadium_wnba_purcell_pavilion", + "valid_from": null, + "valid_until": null + }, { "alias_name": "mortgage matchup center", "stadium_canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", @@ -2022,14 +2106,14 @@ "valid_until": null }, { - "alias_name": "cfg bank arena", - "stadium_canonical_id": "stadium_wnba_cfg_bank_arena", + "alias_name": "target center", + "stadium_canonical_id": "stadium_wnba_target_center", "valid_from": null, "valid_until": null }, { - "alias_name": "purcell pavilion", - "stadium_canonical_id": "stadium_wnba_purcell_pavilion", + "alias_name": "wintrust arena", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", "valid_from": null, "valid_until": null } diff --git a/SportsTime/Resources/stadiums.json b/SportsTime/Resources/stadiums.json deleted file mode 100644 index a0a5217..0000000 --- a/SportsTime/Resources/stadiums.json +++ /dev/null @@ -1,1382 +0,0 @@ -[ - { - "id": "manual_nba_atl", - "name": "State Farm Arena", - "city": "Atlanta", - "state": "", - "latitude": 33.7573, - "longitude": -84.3963, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "ATL" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_bos", - "name": "TD Garden", - "city": "Boston", - "state": "", - "latitude": 42.3662, - "longitude": -71.0621, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "BOS" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_brk", - "name": "Barclays Center", - "city": "Brooklyn", - "state": "", - "latitude": 40.6826, - "longitude": -73.9754, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "BRK" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_cho", - "name": "Spectrum Center", - "city": "Charlotte", - "state": "", - "latitude": 35.2251, - "longitude": -80.8392, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "CHO" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_chi", - "name": "United Center", - "city": "Chicago", - "state": "", - "latitude": 41.8807, - "longitude": -87.6742, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "CHI" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_cle", - "name": "Rocket Mortgage FieldHouse", - "city": "Cleveland", - "state": "", - "latitude": 41.4965, - "longitude": -81.6882, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "CLE" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_dal", - "name": "American Airlines Center", - "city": "Dallas", - "state": "", - "latitude": 32.7905, - "longitude": -96.8103, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "DAL" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_den", - "name": "Ball Arena", - "city": "Denver", - "state": "", - "latitude": 39.7487, - "longitude": -105.0077, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "DEN" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_det", - "name": "Little Caesars Arena", - "city": "Detroit", - "state": "", - "latitude": 42.3411, - "longitude": -83.0553, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "DET" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_gsw", - "name": "Chase Center", - "city": "San Francisco", - "state": "", - "latitude": 37.768, - "longitude": -122.3879, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "GSW" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_hou", - "name": "Toyota Center", - "city": "Houston", - "state": "", - "latitude": 29.7508, - "longitude": -95.3621, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "HOU" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_ind", - "name": "Gainbridge Fieldhouse", - "city": "Indianapolis", - "state": "", - "latitude": 39.764, - "longitude": -86.1555, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "IND" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_lac", - "name": "Intuit Dome", - "city": "Inglewood", - "state": "", - "latitude": 33.9425, - "longitude": -118.3419, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "LAC" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_lal", - "name": "Crypto.com Arena", - "city": "Los Angeles", - "state": "", - "latitude": 34.043, - "longitude": -118.2673, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "LAL" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_mem", - "name": "FedExForum", - "city": "Memphis", - "state": "", - "latitude": 35.1382, - "longitude": -90.0506, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "MEM" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_mia", - "name": "Kaseya Center", - "city": "Miami", - "state": "", - "latitude": 25.7814, - "longitude": -80.187, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "MIA" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_mil", - "name": "Fiserv Forum", - "city": "Milwaukee", - "state": "", - "latitude": 43.0451, - "longitude": -87.9174, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "MIL" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_min", - "name": "Target Center", - "city": "Minneapolis", - "state": "", - "latitude": 44.9795, - "longitude": -93.2761, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "MIN" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_nop", - "name": "Smoothie King Center", - "city": "New Orleans", - "state": "", - "latitude": 29.949, - "longitude": -90.0821, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "NOP" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_nyk", - "name": "Madison Square Garden", - "city": "New York", - "state": "", - "latitude": 40.7505, - "longitude": -73.9934, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "NYK" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_okc", - "name": "Paycom Center", - "city": "Oklahoma City", - "state": "", - "latitude": 35.4634, - "longitude": -97.5151, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "OKC" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_orl", - "name": "Kia Center", - "city": "Orlando", - "state": "", - "latitude": 28.5392, - "longitude": -81.3839, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "ORL" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_phi", - "name": "Wells Fargo Center", - "city": "Philadelphia", - "state": "", - "latitude": 39.9012, - "longitude": -75.172, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "PHI" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_pho", - "name": "Footprint Center", - "city": "Phoenix", - "state": "", - "latitude": 33.4457, - "longitude": -112.0712, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "PHO" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_por", - "name": "Moda Center", - "city": "Portland", - "state": "", - "latitude": 45.5316, - "longitude": -122.6668, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "POR" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_sac", - "name": "Golden 1 Center", - "city": "Sacramento", - "state": "", - "latitude": 38.5802, - "longitude": -121.4997, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "SAC" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_sas", - "name": "Frost Bank Center", - "city": "San Antonio", - "state": "", - "latitude": 29.427, - "longitude": -98.4375, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "SAS" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_tor", - "name": "Scotiabank Arena", - "city": "Toronto", - "state": "", - "latitude": 43.6435, - "longitude": -79.3791, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "TOR" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_uta", - "name": "Delta Center", - "city": "Salt Lake City", - "state": "", - "latitude": 40.7683, - "longitude": -111.9011, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "UTA" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nba_was", - "name": "Capital One Arena", - "city": "Washington", - "state": "", - "latitude": 38.8982, - "longitude": -77.0209, - "capacity": 0, - "sport": "NBA", - "team_abbrevs": [ - "WAS" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_ari", - "name": "Chase Field", - "city": "Phoenix", - "state": "AZ", - "latitude": 33.4453, - "longitude": -112.0667, - "capacity": 48686, - "sport": "MLB", - "team_abbrevs": [ - "ARI" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_atl", - "name": "Truist Park", - "city": "Atlanta", - "state": "GA", - "latitude": 33.8907, - "longitude": -84.4678, - "capacity": 41084, - "sport": "MLB", - "team_abbrevs": [ - "ATL" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_bal", - "name": "Oriole Park at Camden Yards", - "city": "Baltimore", - "state": "MD", - "latitude": 39.2838, - "longitude": -76.6218, - "capacity": 45971, - "sport": "MLB", - "team_abbrevs": [ - "BAL" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_bos", - "name": "Fenway Park", - "city": "Boston", - "state": "MA", - "latitude": 42.3467, - "longitude": -71.0972, - "capacity": 37755, - "sport": "MLB", - "team_abbrevs": [ - "BOS" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_chc", - "name": "Wrigley Field", - "city": "Chicago", - "state": "IL", - "latitude": 41.9484, - "longitude": -87.6553, - "capacity": 41649, - "sport": "MLB", - "team_abbrevs": [ - "CHC" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_chw", - "name": "Guaranteed Rate Field", - "city": "Chicago", - "state": "IL", - "latitude": 41.8299, - "longitude": -87.6338, - "capacity": 40615, - "sport": "MLB", - "team_abbrevs": [ - "CHW" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_cin", - "name": "Great American Ball Park", - "city": "Cincinnati", - "state": "OH", - "latitude": 39.0979, - "longitude": -84.5082, - "capacity": 42319, - "sport": "MLB", - "team_abbrevs": [ - "CIN" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_cle", - "name": "Progressive Field", - "city": "Cleveland", - "state": "OH", - "latitude": 41.4962, - "longitude": -81.6852, - "capacity": 34830, - "sport": "MLB", - "team_abbrevs": [ - "CLE" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_col", - "name": "Coors Field", - "city": "Denver", - "state": "CO", - "latitude": 39.7559, - "longitude": -104.9942, - "capacity": 50144, - "sport": "MLB", - "team_abbrevs": [ - "COL" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_det", - "name": "Comerica Park", - "city": "Detroit", - "state": "MI", - "latitude": 42.339, - "longitude": -83.0485, - "capacity": 41083, - "sport": "MLB", - "team_abbrevs": [ - "DET" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_hou", - "name": "Minute Maid Park", - "city": "Houston", - "state": "TX", - "latitude": 29.7573, - "longitude": -95.3555, - "capacity": 41168, - "sport": "MLB", - "team_abbrevs": [ - "HOU" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_kcr", - "name": "Kauffman Stadium", - "city": "Kansas City", - "state": "MO", - "latitude": 39.0517, - "longitude": -94.4803, - "capacity": 37903, - "sport": "MLB", - "team_abbrevs": [ - "KCR" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_laa", - "name": "Angel Stadium", - "city": "Anaheim", - "state": "CA", - "latitude": 33.8003, - "longitude": -117.8827, - "capacity": 45517, - "sport": "MLB", - "team_abbrevs": [ - "LAA" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_lad", - "name": "Dodger Stadium", - "city": "Los Angeles", - "state": "CA", - "latitude": 34.0739, - "longitude": -118.24, - "capacity": 56000, - "sport": "MLB", - "team_abbrevs": [ - "LAD" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_mia", - "name": "LoanDepot Park", - "city": "Miami", - "state": "FL", - "latitude": 25.7781, - "longitude": -80.2196, - "capacity": 36742, - "sport": "MLB", - "team_abbrevs": [ - "MIA" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_mil", - "name": "American Family Field", - "city": "Milwaukee", - "state": "WI", - "latitude": 43.028, - "longitude": -87.9712, - "capacity": 41900, - "sport": "MLB", - "team_abbrevs": [ - "MIL" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_min", - "name": "Target Field", - "city": "Minneapolis", - "state": "MN", - "latitude": 44.9817, - "longitude": -93.2776, - "capacity": 38544, - "sport": "MLB", - "team_abbrevs": [ - "MIN" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_nym", - "name": "Citi Field", - "city": "New York", - "state": "NY", - "latitude": 40.7571, - "longitude": -73.8458, - "capacity": 41922, - "sport": "MLB", - "team_abbrevs": [ - "NYM" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_nyy", - "name": "Yankee Stadium", - "city": "New York", - "state": "NY", - "latitude": 40.8296, - "longitude": -73.9262, - "capacity": 46537, - "sport": "MLB", - "team_abbrevs": [ - "NYY" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_oak", - "name": "Sutter Health Park", - "city": "Sacramento", - "state": "CA", - "latitude": 38.5802, - "longitude": -121.5097, - "capacity": 14014, - "sport": "MLB", - "team_abbrevs": [ - "OAK" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_phi", - "name": "Citizens Bank Park", - "city": "Philadelphia", - "state": "PA", - "latitude": 39.9061, - "longitude": -75.1665, - "capacity": 42792, - "sport": "MLB", - "team_abbrevs": [ - "PHI" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_pit", - "name": "PNC Park", - "city": "Pittsburgh", - "state": "PA", - "latitude": 40.4469, - "longitude": -80.0057, - "capacity": 38362, - "sport": "MLB", - "team_abbrevs": [ - "PIT" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_sdp", - "name": "Petco Park", - "city": "San Diego", - "state": "CA", - "latitude": 32.7076, - "longitude": -117.157, - "capacity": 40209, - "sport": "MLB", - "team_abbrevs": [ - "SDP" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_sfg", - "name": "Oracle Park", - "city": "San Francisco", - "state": "CA", - "latitude": 37.7786, - "longitude": -122.3893, - "capacity": 41265, - "sport": "MLB", - "team_abbrevs": [ - "SFG" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_sea", - "name": "T-Mobile Park", - "city": "Seattle", - "state": "WA", - "latitude": 47.5914, - "longitude": -122.3325, - "capacity": 47929, - "sport": "MLB", - "team_abbrevs": [ - "SEA" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_stl", - "name": "Busch Stadium", - "city": "St. Louis", - "state": "MO", - "latitude": 38.6226, - "longitude": -90.1928, - "capacity": 45494, - "sport": "MLB", - "team_abbrevs": [ - "STL" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_tbr", - "name": "Tropicana Field", - "city": "St. Petersburg", - "state": "FL", - "latitude": 27.7682, - "longitude": -82.6534, - "capacity": 25000, - "sport": "MLB", - "team_abbrevs": [ - "TBR" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_tex", - "name": "Globe Life Field", - "city": "Arlington", - "state": "TX", - "latitude": 32.7473, - "longitude": -97.0845, - "capacity": 40300, - "sport": "MLB", - "team_abbrevs": [ - "TEX" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_tor", - "name": "Rogers Centre", - "city": "Toronto", - "state": "ON", - "latitude": 43.6414, - "longitude": -79.3894, - "capacity": 49282, - "sport": "MLB", - "team_abbrevs": [ - "TOR" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_mlb_wsn", - "name": "Nationals Park", - "city": "Washington", - "state": "DC", - "latitude": 38.873, - "longitude": -77.0074, - "capacity": 41339, - "sport": "MLB", - "team_abbrevs": [ - "WSN" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_ana", - "name": "Honda Center", - "city": "Anaheim", - "state": "CA", - "latitude": 33.8078, - "longitude": -117.8765, - "capacity": 17174, - "sport": "NHL", - "team_abbrevs": [ - "ANA" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_ari", - "name": "Delta Center", - "city": "Salt Lake City", - "state": "UT", - "latitude": 40.7683, - "longitude": -111.9011, - "capacity": 18306, - "sport": "NHL", - "team_abbrevs": [ - "ARI" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_bos", - "name": "TD Garden", - "city": "Boston", - "state": "MA", - "latitude": 42.3662, - "longitude": -71.0621, - "capacity": 17565, - "sport": "NHL", - "team_abbrevs": [ - "BOS" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_buf", - "name": "KeyBank Center", - "city": "Buffalo", - "state": "NY", - "latitude": 42.875, - "longitude": -78.8764, - "capacity": 19070, - "sport": "NHL", - "team_abbrevs": [ - "BUF" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_cgy", - "name": "Scotiabank Saddledome", - "city": "Calgary", - "state": "AB", - "latitude": 51.0374, - "longitude": -114.0519, - "capacity": 19289, - "sport": "NHL", - "team_abbrevs": [ - "CGY" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_car", - "name": "PNC Arena", - "city": "Raleigh", - "state": "NC", - "latitude": 35.8034, - "longitude": -78.722, - "capacity": 18680, - "sport": "NHL", - "team_abbrevs": [ - "CAR" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_chi", - "name": "United Center", - "city": "Chicago", - "state": "IL", - "latitude": 41.8807, - "longitude": -87.6742, - "capacity": 19717, - "sport": "NHL", - "team_abbrevs": [ - "CHI" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_col", - "name": "Ball Arena", - "city": "Denver", - "state": "CO", - "latitude": 39.7487, - "longitude": -105.0077, - "capacity": 18007, - "sport": "NHL", - "team_abbrevs": [ - "COL" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_cbj", - "name": "Nationwide Arena", - "city": "Columbus", - "state": "OH", - "latitude": 39.9693, - "longitude": -83.0061, - "capacity": 18500, - "sport": "NHL", - "team_abbrevs": [ - "CBJ" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_dal", - "name": "American Airlines Center", - "city": "Dallas", - "state": "TX", - "latitude": 32.7905, - "longitude": -96.8103, - "capacity": 18532, - "sport": "NHL", - "team_abbrevs": [ - "DAL" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_det", - "name": "Little Caesars Arena", - "city": "Detroit", - "state": "MI", - "latitude": 42.3411, - "longitude": -83.0553, - "capacity": 19515, - "sport": "NHL", - "team_abbrevs": [ - "DET" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_edm", - "name": "Rogers Place", - "city": "Edmonton", - "state": "AB", - "latitude": 53.5469, - "longitude": -113.4978, - "capacity": 18347, - "sport": "NHL", - "team_abbrevs": [ - "EDM" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_fla", - "name": "Amerant Bank Arena", - "city": "Sunrise", - "state": "FL", - "latitude": 26.1584, - "longitude": -80.3256, - "capacity": 19250, - "sport": "NHL", - "team_abbrevs": [ - "FLA" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_lak", - "name": "Crypto.com Arena", - "city": "Los Angeles", - "state": "CA", - "latitude": 34.043, - "longitude": -118.2673, - "capacity": 18230, - "sport": "NHL", - "team_abbrevs": [ - "LAK" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_min", - "name": "Xcel Energy Center", - "city": "St. Paul", - "state": "MN", - "latitude": 44.9448, - "longitude": -93.101, - "capacity": 17954, - "sport": "NHL", - "team_abbrevs": [ - "MIN" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_mtl", - "name": "Bell Centre", - "city": "Montreal", - "state": "QC", - "latitude": 45.4961, - "longitude": -73.5693, - "capacity": 21302, - "sport": "NHL", - "team_abbrevs": [ - "MTL" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_nsh", - "name": "Bridgestone Arena", - "city": "Nashville", - "state": "TN", - "latitude": 36.1592, - "longitude": -86.7785, - "capacity": 17159, - "sport": "NHL", - "team_abbrevs": [ - "NSH" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_njd", - "name": "Prudential Center", - "city": "Newark", - "state": "NJ", - "latitude": 40.7334, - "longitude": -74.1712, - "capacity": 16514, - "sport": "NHL", - "team_abbrevs": [ - "NJD" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_nyi", - "name": "UBS Arena", - "city": "Elmont", - "state": "NY", - "latitude": 40.7161, - "longitude": -73.7246, - "capacity": 17255, - "sport": "NHL", - "team_abbrevs": [ - "NYI" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_nyr", - "name": "Madison Square Garden", - "city": "New York", - "state": "NY", - "latitude": 40.7505, - "longitude": -73.9934, - "capacity": 18006, - "sport": "NHL", - "team_abbrevs": [ - "NYR" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_ott", - "name": "Canadian Tire Centre", - "city": "Ottawa", - "state": "ON", - "latitude": 45.2969, - "longitude": -75.9272, - "capacity": 18652, - "sport": "NHL", - "team_abbrevs": [ - "OTT" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_phi", - "name": "Wells Fargo Center", - "city": "Philadelphia", - "state": "PA", - "latitude": 39.9012, - "longitude": -75.172, - "capacity": 19543, - "sport": "NHL", - "team_abbrevs": [ - "PHI" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_pit", - "name": "PPG Paints Arena", - "city": "Pittsburgh", - "state": "PA", - "latitude": 40.4395, - "longitude": -79.9892, - "capacity": 18387, - "sport": "NHL", - "team_abbrevs": [ - "PIT" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_sjs", - "name": "SAP Center", - "city": "San Jose", - "state": "CA", - "latitude": 37.3327, - "longitude": -121.901, - "capacity": 17562, - "sport": "NHL", - "team_abbrevs": [ - "SJS" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_sea", - "name": "Climate Pledge Arena", - "city": "Seattle", - "state": "WA", - "latitude": 47.6221, - "longitude": -122.354, - "capacity": 17100, - "sport": "NHL", - "team_abbrevs": [ - "SEA" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_stl", - "name": "Enterprise Center", - "city": "St. Louis", - "state": "MO", - "latitude": 38.6268, - "longitude": -90.2025, - "capacity": 18096, - "sport": "NHL", - "team_abbrevs": [ - "STL" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_tbl", - "name": "Amalie Arena", - "city": "Tampa", - "state": "FL", - "latitude": 27.9426, - "longitude": -82.4519, - "capacity": 19092, - "sport": "NHL", - "team_abbrevs": [ - "TBL" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_tor", - "name": "Scotiabank Arena", - "city": "Toronto", - "state": "ON", - "latitude": 43.6435, - "longitude": -79.3791, - "capacity": 18819, - "sport": "NHL", - "team_abbrevs": [ - "TOR" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_van", - "name": "Rogers Arena", - "city": "Vancouver", - "state": "BC", - "latitude": 49.2778, - "longitude": -123.1089, - "capacity": 18910, - "sport": "NHL", - "team_abbrevs": [ - "VAN" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_vgk", - "name": "T-Mobile Arena", - "city": "Las Vegas", - "state": "NV", - "latitude": 36.1028, - "longitude": -115.1784, - "capacity": 17500, - "sport": "NHL", - "team_abbrevs": [ - "VGK" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_wsh", - "name": "Capital One Arena", - "city": "Washington", - "state": "DC", - "latitude": 38.8982, - "longitude": -77.0209, - "capacity": 18573, - "sport": "NHL", - "team_abbrevs": [ - "WSH" - ], - "source": "manual", - "year_opened": null - }, - { - "id": "manual_nhl_wpg", - "name": "Canada Life Centre", - "city": "Winnipeg", - "state": "MB", - "latitude": 49.8928, - "longitude": -97.1436, - "capacity": 15321, - "sport": "NHL", - "team_abbrevs": [ - "WPG" - ], - "source": "manual", - "year_opened": null - } -] \ No newline at end of file diff --git a/SportsTime/Resources/stadiums_canonical.json b/SportsTime/Resources/stadiums_canonical.json index ff51f12..49394fc 100644 --- a/SportsTime/Resources/stadiums_canonical.json +++ b/SportsTime/Resources/stadiums_canonical.json @@ -1,513 +1,35 @@ [ { - "canonical_id": "stadium_nba_state_farm_arena", - "name": "State Farm Arena", - "city": "Atlanta", - "state": "GA", - "latitude": 33.7573, - "longitude": -84.3963, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "ATL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_td_garden", - "name": "TD Garden", - "city": "Boston", - "state": "MA", - "latitude": 42.3662, - "longitude": -71.0621, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "BOS" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_barclays_center", - "name": "Barclays Center", - "city": "Brooklyn", - "state": "NY", - "latitude": 40.6826, - "longitude": -73.9754, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "BKN" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_spectrum_center", - "name": "Spectrum Center", - "city": "Charlotte", - "state": "NC", - "latitude": 35.2251, - "longitude": -80.8392, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "CHA" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_united_center", - "name": "United Center", - "city": "Chicago", - "state": "IL", - "latitude": 41.8807, - "longitude": -87.6742, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "CHI" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", - "name": "Rocket Mortgage FieldHouse", - "city": "Cleveland", - "state": "OH", - "latitude": 41.4965, - "longitude": -81.6882, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "CLE" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_american_airlines_center", - "name": "American Airlines Center", - "city": "Dallas", - "state": "TX", - "latitude": 32.7905, - "longitude": -96.8103, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "DAL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_ball_arena", - "name": "Ball Arena", - "city": "Denver", - "state": "CO", - "latitude": 39.7487, - "longitude": -105.0077, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "DEN" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_little_caesars_arena", - "name": "Little Caesars Arena", - "city": "Detroit", - "state": "MI", - "latitude": 42.3411, - "longitude": -83.0553, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "DET" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_chase_center", - "name": "Chase Center", - "city": "San Francisco", + "canonical_id": "stadium_mlb_angel_stadium", + "name": "Angel Stadium", + "city": "Anaheim", "state": "CA", - "latitude": 37.768, - "longitude": -122.3877, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "GSW" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_toyota_center", - "name": "Toyota Center", - "city": "Houston", - "state": "TX", - "latitude": 29.7508, - "longitude": -95.3621, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "HOU" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_gainbridge_fieldhouse", - "name": "Gainbridge Fieldhouse", - "city": "Indianapolis", - "state": "IN", - "latitude": 39.764, - "longitude": -86.1555, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "IND" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_intuit_dome", - "name": "Intuit Dome", - "city": "Inglewood", - "state": "CA", - "latitude": 33.9425, - "longitude": -118.3417, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "LAC" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_cryptocom_arena", - "name": "Crypto.com Arena", - "city": "Los Angeles", - "state": "CA", - "latitude": 34.043, - "longitude": -118.2673, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "LAL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_fedexforum", - "name": "FedExForum", - "city": "Memphis", - "state": "TN", - "latitude": 35.1383, - "longitude": -90.0505, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "MEM" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_kaseya_center", - "name": "Kaseya Center", - "city": "Miami", - "state": "FL", - "latitude": 25.7814, - "longitude": -80.187, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "MIA" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_fiserv_forum", - "name": "Fiserv Forum", - "city": "Milwaukee", - "state": "WI", - "latitude": 43.0451, - "longitude": -87.9172, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "MIL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_target_center", - "name": "Target Center", - "city": "Minneapolis", - "state": "MN", - "latitude": 44.9795, - "longitude": -93.2761, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "MIN" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_smoothie_king_center", - "name": "Smoothie King Center", - "city": "New Orleans", - "state": "LA", - "latitude": 29.949, - "longitude": -90.0821, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "NOP" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_madison_square_garden", - "name": "Madison Square Garden", - "city": "New York", - "state": "NY", - "latitude": 40.7505, - "longitude": -73.9934, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "NYK" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_paycom_center", - "name": "Paycom Center", - "city": "Oklahoma City", - "state": "OK", - "latitude": 35.4634, - "longitude": -97.5151, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "OKC" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_kia_center", - "name": "Kia Center", - "city": "Orlando", - "state": "FL", - "latitude": 28.5392, - "longitude": -81.3839, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "ORL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_wells_fargo_center", - "name": "Wells Fargo Center", - "city": "Philadelphia", - "state": "PA", - "latitude": 39.9012, - "longitude": -75.172, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "PHI" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_footprint_center", - "name": "Footprint Center", - "city": "Phoenix", - "state": "AZ", - "latitude": 33.4457, - "longitude": -112.0712, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "PHX" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_moda_center", - "name": "Moda Center", - "city": "Portland", - "state": "OR", - "latitude": 45.5316, - "longitude": -122.6668, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "POR" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_golden_1_center", - "name": "Golden 1 Center", - "city": "Sacramento", - "state": "CA", - "latitude": 38.5802, - "longitude": -121.4997, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "SAC" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_frost_bank_center", - "name": "Frost Bank Center", - "city": "San Antonio", - "state": "TX", - "latitude": 29.427, - "longitude": -98.4375, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "SAS" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_scotiabank_arena", - "name": "Scotiabank Arena", - "city": "Toronto", - "state": "ON", - "latitude": 43.6435, - "longitude": -79.3791, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "TOR" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_delta_center", - "name": "Delta Center", - "city": "Salt Lake City", - "state": "UT", - "latitude": 40.7683, - "longitude": -111.9011, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "UTA" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_capital_one_arena", - "name": "Capital One Arena", - "city": "Washington", - "state": "DC", - "latitude": 38.8981, - "longitude": -77.0209, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [ - "WAS" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nba_mexico_city_arena", - "name": "Mexico City Arena", - "city": "Mexico City", - "state": "CDMX", - "latitude": 19.4042, - "longitude": -99.097, - "capacity": 0, - "sport": "NBA", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_chase_field", - "name": "Chase Field", - "city": "Phoenix", - "state": "AZ", - "latitude": 33.4455, - "longitude": -112.0667, - "capacity": 0, + "latitude": 33.8003, + "longitude": -117.8827, + "capacity": 45517, "sport": "MLB", "primary_team_abbrevs": [ - "ARI" + "LAA" ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null + "year_opened": 1966, + "timezone_identifier": "America/Los_Angeles", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/3.jpg" + }, + { + "canonical_id": "stadium_mlb_globe_life_field", + "name": "Globe Life Field", + "city": "Arlington", + "state": "TX", + "latitude": 32.7473, + "longitude": -97.0845, + "capacity": 40300, + "sport": "MLB", + "primary_team_abbrevs": [ + "TEX" + ], + "year_opened": 2020, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/231.jpg" }, { "canonical_id": "stadium_mlb_truist_park", @@ -516,14 +38,14 @@ "state": "GA", "latitude": 33.8908, "longitude": -84.4678, - "capacity": 0, + "capacity": 41084, "sport": "MLB", "primary_team_abbrevs": [ "ATL" ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null + "year_opened": 2017, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/218.jpg" }, { "canonical_id": "stadium_mlb_oriole_park_at_camden_yards", @@ -532,14 +54,14 @@ "state": "MD", "latitude": 39.2839, "longitude": -76.6217, - "capacity": 0, + "capacity": 44970, "sport": "MLB", "primary_team_abbrevs": [ "BAL" ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null + "year_opened": 1992, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/1.jpg" }, { "canonical_id": "stadium_mlb_fenway_park", @@ -548,30 +70,44 @@ "state": "MA", "latitude": 42.3467, "longitude": -71.0972, - "capacity": 0, + "capacity": 37755, "sport": "MLB", "primary_team_abbrevs": [ "BOS" ], + "year_opened": 1912, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/2.jpg" + }, + { + "canonical_id": "stadium_mlb_spring_lecom_park", + "name": "LECOM Park", + "city": "Bradenton", + "state": "FL", + "latitude": 27.4939, + "longitude": -82.5753, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/New_York", "image_url": null }, { - "canonical_id": "stadium_mlb_wrigley_field", - "name": "Wrigley Field", - "city": "Chicago", - "state": "IL", - "latitude": 41.9484, - "longitude": -87.6553, - "capacity": 0, + "canonical_id": "stadium_mlb_yankee_stadium", + "name": "Yankee Stadium", + "city": "Bronx", + "state": "NY", + "latitude": 40.8296, + "longitude": -73.9262, + "capacity": 46537, "sport": "MLB", "primary_team_abbrevs": [ - "CHC" + "NYY" ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null + "year_opened": 2009, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/208.jpg" }, { "canonical_id": "stadium_mlb_guaranteed_rate_field", @@ -580,14 +116,30 @@ "state": "IL", "latitude": 41.8299, "longitude": -87.6338, - "capacity": 0, + "capacity": 40615, "sport": "MLB", "primary_team_abbrevs": [ "CHW" ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null + "year_opened": 1991, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/4.jpg" + }, + { + "canonical_id": "stadium_mlb_wrigley_field", + "name": "Wrigley Field", + "city": "Chicago", + "state": "IL", + "latitude": 41.9484, + "longitude": -87.6553, + "capacity": 41649, + "sport": "MLB", + "primary_team_abbrevs": [ + "CHC" + ], + "year_opened": 1914, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/16.jpg" }, { "canonical_id": "stadium_mlb_great_american_ball_park", @@ -596,13 +148,27 @@ "state": "OH", "latitude": 39.0974, "longitude": -84.5082, - "capacity": 0, + "capacity": 43500, "sport": "MLB", "primary_team_abbrevs": [ "CIN" ], + "year_opened": 2003, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/83.jpg" + }, + { + "canonical_id": "stadium_mlb_spring_baycare_ballpark", + "name": "BayCare Ballpark", + "city": "Clearwater", + "state": "FL", + "latitude": 27.9697, + "longitude": -82.7257, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/New_York", "image_url": null }, { @@ -612,14 +178,14 @@ "state": "OH", "latitude": 41.4962, "longitude": -81.6852, - "capacity": 0, + "capacity": 34820, "sport": "MLB", "primary_team_abbrevs": [ "CLE" ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null + "year_opened": 1994, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/5.jpg" }, { "canonical_id": "stadium_mlb_coors_field", @@ -628,14 +194,14 @@ "state": "CO", "latitude": 39.7559, "longitude": -104.9942, - "capacity": 0, + "capacity": 46897, "sport": "MLB", "primary_team_abbrevs": [ "COL" ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null + "year_opened": 1995, + "timezone_identifier": "America/Denver", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/27.jpg" }, { "canonical_id": "stadium_mlb_comerica_park", @@ -644,13 +210,97 @@ "state": "MI", "latitude": 42.339, "longitude": -83.0485, - "capacity": 0, + "capacity": 41083, "sport": "MLB", "primary_team_abbrevs": [ "DET" ], + "year_opened": 2000, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/45.jpg" + }, + { + "canonical_id": "stadium_mlb_spring_td_ballpark", + "name": "TD Ballpark", + "city": "Dunedin", + "state": "FL", + "latitude": 28.0039, + "longitude": -82.7867, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_mlb_field_of_dreams", + "name": "Field of Dreams", + "city": "Dyersville", + "state": "IA", + "latitude": 42.4671, + "longitude": -91.1095, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/Chicago", + "image_url": null + }, + { + "canonical_id": "stadium_mlb_spring_hammond_stadium", + "name": "Hammond Stadium", + "city": "Fort Myers", + "state": "FL", + "latitude": 26.5363, + "longitude": -81.8385, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_mlb_spring_jetblue_park", + "name": "JetBlue Park", + "city": "Fort Myers", + "state": "FL", + "latitude": 26.5511, + "longitude": -81.762, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_mlb_spring_camelback_ranch", + "name": "Camelback Ranch", + "city": "Glendale", + "state": "AZ", + "latitude": 33.509, + "longitude": -112.272, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/Phoenix", + "image_url": null + }, + { + "canonical_id": "stadium_mlb_spring_goodyear_ballpark", + "name": "Goodyear Ballpark", + "city": "Goodyear", + "state": "AZ", + "latitude": 33.4286, + "longitude": -112.3908, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/Phoenix", "image_url": null }, { @@ -666,466 +316,8 @@ "HOU" ], "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_kauffman_stadium", - "name": "Kauffman Stadium", - "city": "Kansas City", - "state": "MO", - "latitude": 39.0517, - "longitude": -94.4803, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [ - "KC" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_angel_stadium", - "name": "Angel Stadium", - "city": "Anaheim", - "state": "CA", - "latitude": 33.8003, - "longitude": -117.8827, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [ - "LAA" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_dodger_stadium", - "name": "Dodger Stadium", - "city": "Los Angeles", - "state": "CA", - "latitude": 34.0739, - "longitude": -118.24, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [ - "LAD" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_loandepot_park", - "name": "loanDepot park", - "city": "Miami", - "state": "FL", - "latitude": 25.7781, - "longitude": -80.2195, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [ - "MIA" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_american_family_field", - "name": "American Family Field", - "city": "Milwaukee", - "state": "WI", - "latitude": 43.028, - "longitude": -87.9712, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [ - "MIL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_target_field", - "name": "Target Field", - "city": "Minneapolis", - "state": "MN", - "latitude": 44.9818, - "longitude": -93.2775, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [ - "MIN" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_citi_field", - "name": "Citi Field", - "city": "New York", - "state": "NY", - "latitude": 40.7571, - "longitude": -73.8458, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [ - "NYM" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_yankee_stadium", - "name": "Yankee Stadium", - "city": "Bronx", - "state": "NY", - "latitude": 40.8296, - "longitude": -73.9262, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [ - "NYY" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_sutter_health_park", - "name": "Sutter Health Park", - "city": "Sacramento", - "state": "CA", - "latitude": 38.5803, - "longitude": -121.5005, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [ - "OAK" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_citizens_bank_park", - "name": "Citizens Bank Park", - "city": "Philadelphia", - "state": "PA", - "latitude": 39.9061, - "longitude": -75.1665, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [ - "PHI" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_pnc_park", - "name": "PNC Park", - "city": "Pittsburgh", - "state": "PA", - "latitude": 40.4469, - "longitude": -80.0057, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [ - "PIT" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_petco_park", - "name": "Petco Park", - "city": "San Diego", - "state": "CA", - "latitude": 32.7076, - "longitude": -117.157, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [ - "SD" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_oracle_park", - "name": "Oracle Park", - "city": "San Francisco", - "state": "CA", - "latitude": 37.7786, - "longitude": -122.3893, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [ - "SF" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_tmobile_park", - "name": "T-Mobile Park", - "city": "Seattle", - "state": "WA", - "latitude": 47.5914, - "longitude": -122.3325, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [ - "SEA" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_busch_stadium", - "name": "Busch Stadium", - "city": "St. Louis", - "state": "MO", - "latitude": 38.6226, - "longitude": -90.1928, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [ - "STL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_tropicana_field", - "name": "Tropicana Field", - "city": "St. Petersburg", - "state": "FL", - "latitude": 27.7682, - "longitude": -82.6534, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [ - "TB" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_globe_life_field", - "name": "Globe Life Field", - "city": "Arlington", - "state": "TX", - "latitude": 32.7473, - "longitude": -97.0845, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [ - "TEX" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_rogers_centre", - "name": "Rogers Centre", - "city": "Toronto", - "state": "ON", - "latitude": 43.6414, - "longitude": -79.3894, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [ - "TOR" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_nationals_park", - "name": "Nationals Park", - "city": "Washington", - "state": "DC", - "latitude": 38.873, - "longitude": -77.0074, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [ - "WSN" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_salt_river_fields", - "name": "Salt River Fields at Talking Stick", - "city": "Scottsdale", - "state": "AZ", - "latitude": 33.5412, - "longitude": -111.8847, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_sloan_park", - "name": "Sloan Park", - "city": "Mesa", - "state": "AZ", - "latitude": 33.4312, - "longitude": -111.8821, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_hohokam_stadium", - "name": "Hohokam Stadium", - "city": "Mesa", - "state": "AZ", - "latitude": 33.4385, - "longitude": -111.8295, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_camelback_ranch", - "name": "Camelback Ranch", - "city": "Glendale", - "state": "AZ", - "latitude": 33.509, - "longitude": -112.272, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_goodyear_ballpark", - "name": "Goodyear Ballpark", - "city": "Goodyear", - "state": "AZ", - "latitude": 33.4286, - "longitude": -112.3908, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", - "name": "Tempe Diablo Stadium", - "city": "Tempe", - "state": "AZ", - "latitude": 33.4003, - "longitude": -111.9685, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_scottsdale_stadium", - "name": "Scottsdale Stadium", - "city": "Scottsdale", - "state": "AZ", - "latitude": 33.4881, - "longitude": -111.921, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_american_family_fields", - "name": "American Family Fields of Phoenix", - "city": "Phoenix", - "state": "AZ", - "latitude": 33.4916, - "longitude": -112.1733, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_peoria_sports_complex", - "name": "Peoria Sports Complex", - "city": "Peoria", - "state": "AZ", - "latitude": 33.6224, - "longitude": -112.2274, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_surprise_stadium", - "name": "Surprise Stadium", - "city": "Surprise", - "state": "AZ", - "latitude": 33.6306, - "longitude": -112.3332, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_jetblue_park", - "name": "JetBlue Park", - "city": "Fort Myers", - "state": "FL", - "latitude": 26.5511, - "longitude": -81.762, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/44.jpg" }, { "canonical_id": "stadium_mlb_spring_roger_dean_stadium", @@ -1138,148 +330,24 @@ "sport": "MLB", "primary_team_abbrevs": [], "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/New_York", "image_url": null }, { - "canonical_id": "stadium_mlb_spring_ed_smith_stadium", - "name": "Ed Smith Stadium", - "city": "Sarasota", - "state": "FL", - "latitude": 27.3482, - "longitude": -82.5176, - "capacity": 0, + "canonical_id": "stadium_mlb_kauffman_stadium", + "name": "Kauffman Stadium", + "city": "Kansas City", + "state": "MO", + "latitude": 39.0517, + "longitude": -94.4803, + "capacity": 37903, "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_steinbrenner_field", - "name": "George M. Steinbrenner Field", - "city": "Tampa", - "state": "FL", - "latitude": 27.9748, - "longitude": -82.504, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_td_ballpark", - "name": "TD Ballpark", - "city": "Dunedin", - "state": "FL", - "latitude": 28.0039, - "longitude": -82.7867, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_cooltoday_park", - "name": "CoolToday Park", - "city": "North Port", - "state": "FL", - "latitude": 27.0219, - "longitude": -82.2358, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_hammond_stadium", - "name": "Hammond Stadium", - "city": "Fort Myers", - "state": "FL", - "latitude": 26.5363, - "longitude": -81.8385, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_clover_park", - "name": "Clover Park", - "city": "Port St. Lucie", - "state": "FL", - "latitude": 27.29, - "longitude": -80.41, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_baycare_ballpark", - "name": "BayCare Ballpark", - "city": "Clearwater", - "state": "FL", - "latitude": 27.9697, - "longitude": -82.7257, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_lecom_park", - "name": "LECOM Park", - "city": "Bradenton", - "state": "FL", - "latitude": 27.4939, - "longitude": -82.5753, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_charlotte_sports_park", - "name": "Charlotte Sports Park", - "city": "Port Charlotte", - "state": "FL", - "latitude": 26.9992, - "longitude": -82.1817, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mlb_spring_cacti_park", - "name": "CACTI Park of the Palm Beaches", - "city": "West Palm Beach", - "state": "FL", - "latitude": 26.7697, - "longitude": -80.1014, - "capacity": 0, - "sport": "MLB", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null + "primary_team_abbrevs": [ + "KC" + ], + "year_opened": 1973, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/7.jpg" }, { "canonical_id": "stadium_mlb_spring_joker_marchant", @@ -1292,7 +360,7 @@ "sport": "MLB", "primary_team_abbrevs": [], "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/New_York", "image_url": null }, { @@ -1306,7 +374,51 @@ "sport": "MLB", "primary_team_abbrevs": [], "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/Los_Angeles", + "image_url": null + }, + { + "canonical_id": "stadium_mlb_dodger_stadium", + "name": "Dodger Stadium", + "city": "Los Angeles", + "state": "CA", + "latitude": 34.0739, + "longitude": -118.24, + "capacity": 56000, + "sport": "MLB", + "primary_team_abbrevs": [ + "LAD" + ], + "year_opened": 1962, + "timezone_identifier": "America/Los_Angeles", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/19.jpg" + }, + { + "canonical_id": "stadium_mlb_spring_hohokam_stadium", + "name": "Hohokam Stadium", + "city": "Mesa", + "state": "AZ", + "latitude": 33.4385, + "longitude": -111.8295, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/Phoenix", + "image_url": null + }, + { + "canonical_id": "stadium_mlb_spring_sloan_park", + "name": "Sloan Park", + "city": "Mesa", + "state": "AZ", + "latitude": 33.4312, + "longitude": -111.8821, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/Phoenix", "image_url": null }, { @@ -1320,21 +432,415 @@ "sport": "MLB", "primary_team_abbrevs": [], "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/Mexico_City", "image_url": null }, { - "canonical_id": "stadium_mlb_field_of_dreams", - "name": "Field of Dreams", - "city": "Dyersville", - "state": "IA", - "latitude": 42.4671, - "longitude": -91.1095, + "canonical_id": "stadium_mlb_loandepot_park", + "name": "loanDepot park", + "city": "Miami", + "state": "FL", + "latitude": 25.7781, + "longitude": -80.2195, + "capacity": 36742, + "sport": "MLB", + "primary_team_abbrevs": [ + "MIA" + ], + "year_opened": 2012, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/4223.jpg" + }, + { + "canonical_id": "stadium_mlb_american_family_field", + "name": "American Family Field", + "city": "Milwaukee", + "state": "WI", + "latitude": 43.028, + "longitude": -87.9712, + "capacity": 41900, + "sport": "MLB", + "primary_team_abbrevs": [ + "MIL" + ], + "year_opened": 2001, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/4242.jpg" + }, + { + "canonical_id": "stadium_mlb_target_field", + "name": "Target Field", + "city": "Minneapolis", + "state": "MN", + "latitude": 44.9818, + "longitude": -93.2775, + "capacity": 38544, + "sport": "MLB", + "primary_team_abbrevs": [ + "MIN" + ], + "year_opened": 2010, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/210.jpg" + }, + { + "canonical_id": "stadium_mlb_citi_field", + "name": "Citi Field", + "city": "New York", + "state": "NY", + "latitude": 40.7571, + "longitude": -73.8458, + "capacity": 41922, + "sport": "MLB", + "primary_team_abbrevs": [ + "NYM" + ], + "year_opened": 2009, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/209.jpg" + }, + { + "canonical_id": "stadium_mlb_spring_cooltoday_park", + "name": "CoolToday Park", + "city": "North Port", + "state": "FL", + "latitude": 27.0219, + "longitude": -82.2358, "capacity": 0, "sport": "MLB", "primary_team_abbrevs": [], "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_mlb_spring_peoria_sports_complex", + "name": "Peoria Sports Complex", + "city": "Peoria", + "state": "AZ", + "latitude": 33.6224, + "longitude": -112.2274, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/Phoenix", + "image_url": null + }, + { + "canonical_id": "stadium_mlb_citizens_bank_park", + "name": "Citizens Bank Park", + "city": "Philadelphia", + "state": "PA", + "latitude": 39.9061, + "longitude": -75.1665, + "capacity": 42901, + "sport": "MLB", + "primary_team_abbrevs": [ + "PHI" + ], + "year_opened": 2004, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/84.jpg" + }, + { + "canonical_id": "stadium_mlb_spring_american_family_fields", + "name": "American Family Fields of Phoenix", + "city": "Phoenix", + "state": "AZ", + "latitude": 33.4916, + "longitude": -112.1733, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/Phoenix", + "image_url": null + }, + { + "canonical_id": "stadium_mlb_chase_field", + "name": "Chase Field", + "city": "Phoenix", + "state": "AZ", + "latitude": 33.4455, + "longitude": -112.0667, + "capacity": 48330, + "sport": "MLB", + "primary_team_abbrevs": [ + "ARI" + ], + "year_opened": 1998, + "timezone_identifier": "America/Phoenix", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/30.jpg" + }, + { + "canonical_id": "stadium_mlb_pnc_park", + "name": "PNC Park", + "city": "Pittsburgh", + "state": "PA", + "latitude": 40.4469, + "longitude": -80.0057, + "capacity": 38747, + "sport": "MLB", + "primary_team_abbrevs": [ + "PIT" + ], + "year_opened": 2001, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/47.jpg" + }, + { + "canonical_id": "stadium_mlb_spring_charlotte_sports_park", + "name": "Charlotte Sports Park", + "city": "Port Charlotte", + "state": "FL", + "latitude": 26.9992, + "longitude": -82.1817, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_mlb_spring_clover_park", + "name": "Clover Park", + "city": "Port St. Lucie", + "state": "FL", + "latitude": 27.29, + "longitude": -80.41, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_mlb_sutter_health_park", + "name": "Sutter Health Park", + "city": "Sacramento", + "state": "CA", + "latitude": 38.5803, + "longitude": -121.5005, + "capacity": 13416, + "sport": "MLB", + "primary_team_abbrevs": [ + "OAK" + ], + "year_opened": 2000, + "timezone_identifier": "America/Los_Angeles", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/3867.jpg" + }, + { + "canonical_id": "stadium_mlb_petco_park", + "name": "Petco Park", + "city": "San Diego", + "state": "CA", + "latitude": 32.7076, + "longitude": -117.157, + "capacity": 39860, + "sport": "MLB", + "primary_team_abbrevs": [ + "SD" + ], + "year_opened": 2004, + "timezone_identifier": "America/Los_Angeles", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/85.jpg" + }, + { + "canonical_id": "stadium_mlb_oracle_park", + "name": "Oracle Park", + "city": "San Francisco", + "state": "CA", + "latitude": 37.7786, + "longitude": -122.3893, + "capacity": 41331, + "sport": "MLB", + "primary_team_abbrevs": [ + "SF" + ], + "year_opened": 2000, + "timezone_identifier": "America/Los_Angeles", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/43.jpg" + }, + { + "canonical_id": "stadium_mlb_spring_ed_smith_stadium", + "name": "Ed Smith Stadium", + "city": "Sarasota", + "state": "FL", + "latitude": 27.3482, + "longitude": -82.5176, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_mlb_spring_salt_river_fields", + "name": "Salt River Fields at Talking Stick", + "city": "Scottsdale", + "state": "AZ", + "latitude": 33.5412, + "longitude": -111.8847, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/Phoenix", + "image_url": null + }, + { + "canonical_id": "stadium_mlb_spring_scottsdale_stadium", + "name": "Scottsdale Stadium", + "city": "Scottsdale", + "state": "AZ", + "latitude": 33.4881, + "longitude": -111.921, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/Phoenix", + "image_url": null + }, + { + "canonical_id": "stadium_mlb_tmobile_park", + "name": "T-Mobile Park", + "city": "Seattle", + "state": "WA", + "latitude": 47.5914, + "longitude": -122.3325, + "capacity": 47929, + "sport": "MLB", + "primary_team_abbrevs": [ + "SEA" + ], + "year_opened": 1999, + "timezone_identifier": "America/Los_Angeles", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/41.jpg" + }, + { + "canonical_id": "stadium_mlb_busch_stadium", + "name": "Busch Stadium", + "city": "St. Louis", + "state": "MO", + "latitude": 38.6226, + "longitude": -90.1928, + "capacity": 44383, + "sport": "MLB", + "primary_team_abbrevs": [ + "STL" + ], + "year_opened": 2006, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/87.jpg" + }, + { + "canonical_id": "stadium_mlb_tropicana_field", + "name": "Tropicana Field", + "city": "St. Petersburg", + "state": "FL", + "latitude": 27.7682, + "longitude": -82.6534, + "capacity": 25000, + "sport": "MLB", + "primary_team_abbrevs": [ + "TB" + ], + "year_opened": 1990, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/31.jpg" + }, + { + "canonical_id": "stadium_mlb_spring_surprise_stadium", + "name": "Surprise Stadium", + "city": "Surprise", + "state": "AZ", + "latitude": 33.6306, + "longitude": -112.3332, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/Phoenix", + "image_url": null + }, + { + "canonical_id": "stadium_mlb_spring_steinbrenner_field", + "name": "George M. Steinbrenner Field", + "city": "Tampa", + "state": "FL", + "latitude": 27.9748, + "longitude": -82.504, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_mlb_spring_tempe_diablo_stadium", + "name": "Tempe Diablo Stadium", + "city": "Tempe", + "state": "AZ", + "latitude": 33.4003, + "longitude": -111.9685, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/Phoenix", + "image_url": null + }, + { + "canonical_id": "stadium_mlb_rogers_centre", + "name": "Rogers Centre", + "city": "Toronto", + "state": "ON", + "latitude": 43.6414, + "longitude": -79.3894, + "capacity": 39150, + "sport": "MLB", + "primary_team_abbrevs": [ + "TOR" + ], + "year_opened": 1989, + "timezone_identifier": "America/Toronto", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/14.jpg" + }, + { + "canonical_id": "stadium_mlb_nationals_park", + "name": "Nationals Park", + "city": "Washington", + "state": "DC", + "latitude": 38.873, + "longitude": -77.0074, + "capacity": 41373, + "sport": "MLB", + "primary_team_abbrevs": [ + "WSN" + ], + "year_opened": 2008, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/mlb/day/89.jpg" + }, + { + "canonical_id": "stadium_mlb_spring_cacti_park", + "name": "CACTI Park of the Palm Beaches", + "city": "West Palm Beach", + "state": "FL", + "latitude": 26.7697, + "longitude": -80.1014, + "capacity": 0, + "sport": "MLB", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/New_York", "image_url": null }, { @@ -1348,1001 +854,7 @@ "sport": "MLB", "primary_team_abbrevs": [], "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_state_farm_stadium", - "name": "State Farm Stadium", - "city": "Glendale", - "state": "AZ", - "latitude": 33.5276, - "longitude": -112.2626, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "ARI" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_mercedes_benz_stadium", - "name": "Mercedes-Benz Stadium", - "city": "Atlanta", - "state": "GA", - "latitude": 33.7553, - "longitude": -84.4006, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "ATL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_mandt_bank_stadium", - "name": "M&T Bank Stadium", - "city": "Baltimore", - "state": "MD", - "latitude": 39.278, - "longitude": -76.6227, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "BAL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_highmark_stadium", - "name": "Highmark Stadium", - "city": "Orchard Park", - "state": "NY", - "latitude": 42.7738, - "longitude": -78.787, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "BUF" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_bank_of_america_stadium", - "name": "Bank of America Stadium", - "city": "Charlotte", - "state": "NC", - "latitude": 35.2258, - "longitude": -80.8528, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "CAR" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_soldier_field", - "name": "Soldier Field", - "city": "Chicago", - "state": "IL", - "latitude": 41.8623, - "longitude": -87.6167, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "CHI" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_paycor_stadium", - "name": "Paycor Stadium", - "city": "Cincinnati", - "state": "OH", - "latitude": 39.0955, - "longitude": -84.5161, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "CIN" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_huntington_bank_field", - "name": "Huntington Bank Field", - "city": "Cleveland", - "state": "OH", - "latitude": 41.5061, - "longitude": -81.6995, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "CLE" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_att_stadium", - "name": "AT&T Stadium", - "city": "Arlington", - "state": "TX", - "latitude": 32.7473, - "longitude": -97.0945, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "DAL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_empower_field", - "name": "Empower Field at Mile High", - "city": "Denver", - "state": "CO", - "latitude": 39.7439, - "longitude": -105.0201, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "DEN" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_ford_field", - "name": "Ford Field", - "city": "Detroit", - "state": "MI", - "latitude": 42.34, - "longitude": -83.0456, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "DET" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_lambeau_field", - "name": "Lambeau Field", - "city": "Green Bay", - "state": "WI", - "latitude": 44.5013, - "longitude": -88.0622, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "GB" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_nrg_stadium", - "name": "NRG Stadium", - "city": "Houston", - "state": "TX", - "latitude": 29.6847, - "longitude": -95.4107, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "HOU" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_lucas_oil_stadium", - "name": "Lucas Oil Stadium", - "city": "Indianapolis", - "state": "IN", - "latitude": 39.7601, - "longitude": -86.1639, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "IND" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_everbank_stadium", - "name": "EverBank Stadium", - "city": "Jacksonville", - "state": "FL", - "latitude": 30.3239, - "longitude": -81.6373, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "JAX" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_arrowhead_stadium", - "name": "Arrowhead Stadium", - "city": "Kansas City", - "state": "MO", - "latitude": 39.0489, - "longitude": -94.4839, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "KC" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_allegiant_stadium", - "name": "Allegiant Stadium", - "city": "Las Vegas", - "state": "NV", - "latitude": 36.0909, - "longitude": -115.1833, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "LV" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_sofi_stadium", - "name": "SoFi Stadium", - "city": "Inglewood", - "state": "CA", - "latitude": 33.9534, - "longitude": -118.3386, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "LAC", - "LAR" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_hard_rock_stadium", - "name": "Hard Rock Stadium", - "city": "Miami Gardens", - "state": "FL", - "latitude": 25.958, - "longitude": -80.2389, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "MIA" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_us_bank_stadium", - "name": "U.S. Bank Stadium", - "city": "Minneapolis", - "state": "MN", - "latitude": 44.9737, - "longitude": -93.2575, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "MIN" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_gillette_stadium", - "name": "Gillette Stadium", - "city": "Foxborough", - "state": "MA", - "latitude": 42.0909, - "longitude": -71.2643, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "NE" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_caesars_superdome", - "name": "Caesars Superdome", - "city": "New Orleans", - "state": "LA", - "latitude": 29.9511, - "longitude": -90.0812, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "NO" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_metlife_stadium", - "name": "MetLife Stadium", - "city": "East Rutherford", - "state": "NJ", - "latitude": 40.8128, - "longitude": -74.0742, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "NYG", - "NYJ" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_lincoln_financial_field", - "name": "Lincoln Financial Field", - "city": "Philadelphia", - "state": "PA", - "latitude": 39.9008, - "longitude": -75.1675, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "PHI" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_acrisure_stadium", - "name": "Acrisure Stadium", - "city": "Pittsburgh", - "state": "PA", - "latitude": 40.4468, - "longitude": -80.0158, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "PIT" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_levis_stadium", - "name": "Levi's Stadium", - "city": "Santa Clara", - "state": "CA", - "latitude": 37.4033, - "longitude": -121.9695, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "SF" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_lumen_field", - "name": "Lumen Field", - "city": "Seattle", - "state": "WA", - "latitude": 47.5952, - "longitude": -122.3316, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "SEA" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_raymond_james_stadium", - "name": "Raymond James Stadium", - "city": "Tampa", - "state": "FL", - "latitude": 27.9759, - "longitude": -82.5033, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "TB" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_nissan_stadium", - "name": "Nissan Stadium", - "city": "Nashville", - "state": "TN", - "latitude": 36.1665, - "longitude": -86.7713, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "TEN" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nfl_northwest_stadium", - "name": "Northwest Stadium", - "city": "Landover", - "state": "MD", - "latitude": 38.9076, - "longitude": -76.8645, - "capacity": 0, - "sport": "NFL", - "primary_team_abbrevs": [ - "WAS" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_honda_center", - "name": "Honda Center", - "city": "Anaheim", - "state": "CA", - "latitude": 33.8078, - "longitude": -117.8765, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "ANA" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_delta_center", - "name": "Delta Center", - "city": "Salt Lake City", - "state": "UT", - "latitude": 40.7683, - "longitude": -111.9011, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "ARI" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_td_garden", - "name": "TD Garden", - "city": "Boston", - "state": "MA", - "latitude": 42.3662, - "longitude": -71.0621, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "BOS" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_keybank_center", - "name": "KeyBank Center", - "city": "Buffalo", - "state": "NY", - "latitude": 42.875, - "longitude": -78.8764, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "BUF" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_scotiabank_saddledome", - "name": "Scotiabank Saddledome", - "city": "Calgary", - "state": "AB", - "latitude": 51.0374, - "longitude": -114.0519, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "CGY" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_pnc_arena", - "name": "PNC Arena", - "city": "Raleigh", - "state": "NC", - "latitude": 35.8033, - "longitude": -78.722, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "CAR" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_united_center", - "name": "United Center", - "city": "Chicago", - "state": "IL", - "latitude": 41.8807, - "longitude": -87.6742, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "CHI" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_ball_arena", - "name": "Ball Arena", - "city": "Denver", - "state": "CO", - "latitude": 39.7487, - "longitude": -105.0077, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "COL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_nationwide_arena", - "name": "Nationwide Arena", - "city": "Columbus", - "state": "OH", - "latitude": 39.9692, - "longitude": -83.0061, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "CBJ" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_american_airlines_center", - "name": "American Airlines Center", - "city": "Dallas", - "state": "TX", - "latitude": 32.7905, - "longitude": -96.8103, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "DAL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_little_caesars_arena", - "name": "Little Caesars Arena", - "city": "Detroit", - "state": "MI", - "latitude": 42.3411, - "longitude": -83.0553, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "DET" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_rogers_place", - "name": "Rogers Place", - "city": "Edmonton", - "state": "AB", - "latitude": 53.5469, - "longitude": -113.4979, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "EDM" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_amerant_bank_arena", - "name": "Amerant Bank Arena", - "city": "Sunrise", - "state": "FL", - "latitude": 26.1584, - "longitude": -80.3256, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "FLA" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_cryptocom_arena", - "name": "Crypto.com Arena", - "city": "Los Angeles", - "state": "CA", - "latitude": 34.043, - "longitude": -118.2673, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "LA" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_xcel_energy_center", - "name": "Xcel Energy Center", - "city": "St. Paul", - "state": "MN", - "latitude": 44.9448, - "longitude": -93.101, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "MIN" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_bell_centre", - "name": "Bell Centre", - "city": "Montreal", - "state": "QC", - "latitude": 45.4961, - "longitude": -73.5693, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "MTL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_bridgestone_arena", - "name": "Bridgestone Arena", - "city": "Nashville", - "state": "TN", - "latitude": 36.1592, - "longitude": -86.7785, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "NSH" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_prudential_center", - "name": "Prudential Center", - "city": "Newark", - "state": "NJ", - "latitude": 40.7334, - "longitude": -74.1712, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "NJ" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_ubs_arena", - "name": "UBS Arena", - "city": "Elmont", - "state": "NY", - "latitude": 40.717, - "longitude": -73.7255, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "NYI" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_madison_square_garden", - "name": "Madison Square Garden", - "city": "New York", - "state": "NY", - "latitude": 40.7505, - "longitude": -73.9934, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "NYR" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_canadian_tire_centre", - "name": "Canadian Tire Centre", - "city": "Ottawa", - "state": "ON", - "latitude": 45.2969, - "longitude": -75.9272, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "OTT" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_wells_fargo_center", - "name": "Wells Fargo Center", - "city": "Philadelphia", - "state": "PA", - "latitude": 39.9012, - "longitude": -75.172, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "PHI" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_ppg_paints_arena", - "name": "PPG Paints Arena", - "city": "Pittsburgh", - "state": "PA", - "latitude": 40.4395, - "longitude": -79.989, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "PIT" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_sap_center", - "name": "SAP Center", - "city": "San Jose", - "state": "CA", - "latitude": 37.3327, - "longitude": -121.9011, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "SJ" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_climate_pledge_arena", - "name": "Climate Pledge Arena", - "city": "Seattle", - "state": "WA", - "latitude": 47.6221, - "longitude": -122.354, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "SEA" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_enterprise_center", - "name": "Enterprise Center", - "city": "St. Louis", - "state": "MO", - "latitude": 38.6268, - "longitude": -90.2025, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "STL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_amalie_arena", - "name": "Amalie Arena", - "city": "Tampa", - "state": "FL", - "latitude": 27.9428, - "longitude": -82.4519, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "TB" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_scotiabank_arena", - "name": "Scotiabank Arena", - "city": "Toronto", - "state": "ON", - "latitude": 43.6435, - "longitude": -79.3791, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "TOR" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_rogers_arena", - "name": "Rogers Arena", - "city": "Vancouver", - "state": "BC", - "latitude": 49.2778, - "longitude": -123.1088, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "VAN" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_tmobile_arena", - "name": "T-Mobile Arena", - "city": "Las Vegas", - "state": "NV", - "latitude": 36.1028, - "longitude": -115.1783, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "VGK" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_capital_one_arena", - "name": "Capital One Arena", - "city": "Washington", - "state": "DC", - "latitude": 38.8981, - "longitude": -77.0209, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "WAS" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nhl_canada_life_centre", - "name": "Canada Life Centre", - "city": "Winnipeg", - "state": "MB", - "latitude": 49.8928, - "longitude": -97.1433, - "capacity": 0, - "sport": "NHL", - "primary_team_abbrevs": [ - "WPG" - ], - "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/New_York", "image_url": null }, { @@ -2352,13 +864,13 @@ "state": "GA", "latitude": 33.7553, "longitude": -84.4006, - "capacity": 0, + "capacity": 42500, "sport": "MLS", "primary_team_abbrevs": [ "ATL" ], - "year_opened": null, - "timezone_identifier": null, + "year_opened": 2017, + "timezone_identifier": "America/New_York", "image_url": null }, { @@ -2368,141 +880,43 @@ "state": "TX", "latitude": 30.3875, "longitude": -97.7186, - "capacity": 0, + "capacity": 20738, "sport": "MLS", "primary_team_abbrevs": [ "AUS" ], - "year_opened": null, - "timezone_identifier": null, + "year_opened": 2021, + "timezone_identifier": "America/Chicago", "image_url": null }, { - "canonical_id": "stadium_mls_bank_of_america_stadium", - "name": "Bank of America Stadium", - "city": "Charlotte", - "state": "NC", - "latitude": 35.2258, - "longitude": -80.8528, + "canonical_id": "stadium_mls_mandt_bank_stadium", + "name": "M&T Bank Stadium", + "city": "Baltimore", + "state": "MD", + "latitude": 39.278, + "longitude": -76.6227, "capacity": 0, "sport": "MLS", - "primary_team_abbrevs": [ - "CLT" - ], + "primary_team_abbrevs": [], "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/New_York", "image_url": null }, { - "canonical_id": "stadium_mls_soldier_field", - "name": "Soldier Field", - "city": "Chicago", - "state": "IL", - "latitude": 41.8623, - "longitude": -87.6167, - "capacity": 0, + "canonical_id": "stadium_mls_yankee_stadium", + "name": "Yankee Stadium", + "city": "Bronx", + "state": "NY", + "latitude": 40.8296, + "longitude": -73.9262, + "capacity": 30321, "sport": "MLS", "primary_team_abbrevs": [ - "CHI" + "NYC" ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mls_tql_stadium", - "name": "TQL Stadium", - "city": "Cincinnati", - "state": "OH", - "latitude": 39.1112, - "longitude": -84.5225, - "capacity": 0, - "sport": "MLS", - "primary_team_abbrevs": [ - "CIN" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mls_dicks_sporting_goods_park", - "name": "Dick's Sporting Goods Park", - "city": "Commerce City", - "state": "CO", - "latitude": 39.8056, - "longitude": -104.8922, - "capacity": 0, - "sport": "MLS", - "primary_team_abbrevs": [ - "COL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mls_lowercom_field", - "name": "Lower.com Field", - "city": "Columbus", - "state": "OH", - "latitude": 39.9689, - "longitude": -83.0173, - "capacity": 0, - "sport": "MLS", - "primary_team_abbrevs": [ - "CLB" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mls_toyota_stadium", - "name": "Toyota Stadium", - "city": "Frisco", - "state": "TX", - "latitude": 33.1545, - "longitude": -96.8353, - "capacity": 0, - "sport": "MLS", - "primary_team_abbrevs": [ - "DAL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mls_audi_field", - "name": "Audi Field", - "city": "Washington", - "state": "DC", - "latitude": 38.8687, - "longitude": -77.0128, - "capacity": 0, - "sport": "MLS", - "primary_team_abbrevs": [ - "DC" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mls_shell_energy_stadium", - "name": "Shell Energy Stadium", - "city": "Houston", - "state": "TX", - "latitude": 29.7522, - "longitude": -95.3527, - "capacity": 0, - "sport": "MLS", - "primary_team_abbrevs": [ - "HOU" - ], - "year_opened": null, - "timezone_identifier": null, + "year_opened": 2009, + "timezone_identifier": "America/New_York", "image_url": null }, { @@ -2512,29 +926,109 @@ "state": "CA", "latitude": 33.8644, "longitude": -118.2611, - "capacity": 0, + "capacity": 27000, "sport": "MLS", "primary_team_abbrevs": [ "LAG" ], - "year_opened": null, - "timezone_identifier": null, + "year_opened": 2003, + "timezone_identifier": "America/Los_Angeles", "image_url": null }, { - "canonical_id": "stadium_mls_bmo_stadium", - "name": "BMO Stadium", - "city": "Los Angeles", - "state": "CA", - "latitude": 34.0128, - "longitude": -118.2841, - "capacity": 0, + "canonical_id": "stadium_mls_bank_of_america_stadium", + "name": "Bank of America Stadium", + "city": "Charlotte", + "state": "NC", + "latitude": 35.2258, + "longitude": -80.8528, + "capacity": 38000, "sport": "MLS", "primary_team_abbrevs": [ - "LAFC" + "CLT" ], - "year_opened": null, - "timezone_identifier": null, + "year_opened": 1996, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_mls_subaru_park", + "name": "Subaru Park", + "city": "Chester", + "state": "PA", + "latitude": 39.8328, + "longitude": -75.3789, + "capacity": 18500, + "sport": "MLS", + "primary_team_abbrevs": [ + "PHI" + ], + "year_opened": 2010, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_mls_soldier_field", + "name": "Soldier Field", + "city": "Chicago", + "state": "IL", + "latitude": 41.8623, + "longitude": -87.6167, + "capacity": 24955, + "sport": "MLS", + "primary_team_abbrevs": [ + "CHI" + ], + "year_opened": 1924, + "timezone_identifier": "America/Chicago", + "image_url": null + }, + { + "canonical_id": "stadium_mls_tql_stadium", + "name": "TQL Stadium", + "city": "Cincinnati", + "state": "OH", + "latitude": 39.1112, + "longitude": -84.5225, + "capacity": 26000, + "sport": "MLS", + "primary_team_abbrevs": [ + "CIN" + ], + "year_opened": 2021, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_mls_lowercom_field", + "name": "Lower.com Field", + "city": "Columbus", + "state": "OH", + "latitude": 39.9689, + "longitude": -83.0173, + "capacity": 20371, + "sport": "MLS", + "primary_team_abbrevs": [ + "CLB" + ], + "year_opened": 2021, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_mls_dicks_sporting_goods_park", + "name": "Dick's Sporting Goods Park", + "city": "Commerce City", + "state": "CO", + "latitude": 39.8056, + "longitude": -104.8922, + "capacity": 18061, + "sport": "MLS", + "primary_team_abbrevs": [ + "COL" + ], + "year_opened": 2007, + "timezone_identifier": "America/Denver", "image_url": null }, { @@ -2550,55 +1044,7 @@ "MIA" ], "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mls_allianz_field", - "name": "Allianz Field", - "city": "St. Paul", - "state": "MN", - "latitude": 44.9528, - "longitude": -93.165, - "capacity": 0, - "sport": "MLS", - "primary_team_abbrevs": [ - "MIN" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mls_stade_saputo", - "name": "Stade Saputo", - "city": "Montreal", - "state": "QC", - "latitude": 45.5622, - "longitude": -73.5528, - "capacity": 0, - "sport": "MLS", - "primary_team_abbrevs": [ - "MTL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mls_geodis_park", - "name": "GEODIS Park", - "city": "Nashville", - "state": "TN", - "latitude": 36.1304, - "longitude": -86.7651, - "capacity": 0, - "sport": "MLS", - "primary_team_abbrevs": [ - "NSH" - ], - "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/New_York", "image_url": null }, { @@ -2608,29 +1054,29 @@ "state": "MA", "latitude": 42.0909, "longitude": -71.2643, - "capacity": 0, + "capacity": 20000, "sport": "MLS", "primary_team_abbrevs": [ "NE" ], - "year_opened": null, - "timezone_identifier": null, + "year_opened": 2002, + "timezone_identifier": "America/New_York", "image_url": null }, { - "canonical_id": "stadium_mls_yankee_stadium", - "name": "Yankee Stadium", - "city": "Bronx", - "state": "NY", - "latitude": 40.8296, - "longitude": -73.9262, - "capacity": 0, + "canonical_id": "stadium_mls_toyota_stadium", + "name": "Toyota Stadium", + "city": "Frisco", + "state": "TX", + "latitude": 33.1545, + "longitude": -96.8353, + "capacity": 19096, "sport": "MLS", "primary_team_abbrevs": [ - "NYC" + "DAL" ], - "year_opened": null, - "timezone_identifier": null, + "year_opened": 2005, + "timezone_identifier": "America/Chicago", "image_url": null }, { @@ -2646,119 +1092,23 @@ "RB" ], "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/New_York", "image_url": null }, { - "canonical_id": "stadium_mls_interco_stadium", - "name": "Inter&Co Stadium", - "city": "Orlando", - "state": "FL", - "latitude": 28.5411, - "longitude": -81.3895, - "capacity": 0, + "canonical_id": "stadium_mls_shell_energy_stadium", + "name": "Shell Energy Stadium", + "city": "Houston", + "state": "TX", + "latitude": 29.7522, + "longitude": -95.3527, + "capacity": 20656, "sport": "MLS", "primary_team_abbrevs": [ - "ORL" + "HOU" ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mls_subaru_park", - "name": "Subaru Park", - "city": "Chester", - "state": "PA", - "latitude": 39.8328, - "longitude": -75.3789, - "capacity": 0, - "sport": "MLS", - "primary_team_abbrevs": [ - "PHI" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mls_providence_park", - "name": "Providence Park", - "city": "Portland", - "state": "OR", - "latitude": 45.5216, - "longitude": -122.6917, - "capacity": 0, - "sport": "MLS", - "primary_team_abbrevs": [ - "POR" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mls_america_first_field", - "name": "America First Field", - "city": "Sandy", - "state": "UT", - "latitude": 40.583, - "longitude": -111.8933, - "capacity": 0, - "sport": "MLS", - "primary_team_abbrevs": [ - "SLC" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mls_paypal_park", - "name": "PayPal Park", - "city": "San Jose", - "state": "CA", - "latitude": 37.3511, - "longitude": -121.925, - "capacity": 0, - "sport": "MLS", - "primary_team_abbrevs": [ - "SJ" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mls_snapdragon_stadium", - "name": "Snapdragon Stadium", - "city": "San Diego", - "state": "CA", - "latitude": 32.7837, - "longitude": -117.1225, - "capacity": 0, - "sport": "MLS", - "primary_team_abbrevs": [ - "SD" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_mls_lumen_field", - "name": "Lumen Field", - "city": "Seattle", - "state": "WA", - "latitude": 47.5952, - "longitude": -122.3316, - "capacity": 0, - "sport": "MLS", - "primary_team_abbrevs": [ - "SEA" - ], - "year_opened": null, - "timezone_identifier": null, + "year_opened": 2012, + "timezone_identifier": "America/Chicago", "image_url": null }, { @@ -2768,13 +1118,199 @@ "state": "KS", "latitude": 39.1217, "longitude": -94.8231, - "capacity": 0, + "capacity": 18467, "sport": "MLS", "primary_team_abbrevs": [ "SKC" ], + "year_opened": 2011, + "timezone_identifier": "America/Chicago", + "image_url": null + }, + { + "canonical_id": "stadium_mls_bmo_stadium", + "name": "BMO Stadium", + "city": "Los Angeles", + "state": "CA", + "latitude": 34.0128, + "longitude": -118.2841, + "capacity": 22000, + "sport": "MLS", + "primary_team_abbrevs": [ + "LAFC" + ], + "year_opened": 2018, + "timezone_identifier": "America/Los_Angeles", + "image_url": null + }, + { + "canonical_id": "stadium_mls_los_angeles_memorial_coliseum", + "name": "Los Angeles Memorial Coliseum", + "city": "Los Angeles", + "state": "CA", + "latitude": 34.0141, + "longitude": -118.2879, + "capacity": 0, + "sport": "MLS", + "primary_team_abbrevs": [], "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/Los_Angeles", + "image_url": null + }, + { + "canonical_id": "stadium_mls_miami_freedom_park", + "name": "Miami Freedom Park", + "city": "Miami", + "state": "FL", + "latitude": 25.789, + "longitude": -80.237, + "capacity": 25000, + "sport": "MLS", + "primary_team_abbrevs": [], + "year_opened": 2026, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_mls_stade_saputo", + "name": "Stade Saputo", + "city": "Montreal", + "state": "QC", + "latitude": 45.5622, + "longitude": -73.5528, + "capacity": 19619, + "sport": "MLS", + "primary_team_abbrevs": [ + "MTL" + ], + "year_opened": 2008, + "timezone_identifier": "America/Toronto", + "image_url": null + }, + { + "canonical_id": "stadium_mls_geodis_park", + "name": "GEODIS Park", + "city": "Nashville", + "state": "TN", + "latitude": 36.1304, + "longitude": -86.7651, + "capacity": 30000, + "sport": "MLS", + "primary_team_abbrevs": [ + "NSH" + ], + "year_opened": 2022, + "timezone_identifier": "America/Chicago", + "image_url": null + }, + { + "canonical_id": "stadium_mls_citi_field", + "name": "Citi Field", + "city": "New York", + "state": "NY", + "latitude": 40.7571, + "longitude": -73.8458, + "capacity": 0, + "sport": "MLS", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_mls_interco_stadium", + "name": "Inter&Co Stadium", + "city": "Orlando", + "state": "FL", + "latitude": 28.5411, + "longitude": -81.3895, + "capacity": 25500, + "sport": "MLS", + "primary_team_abbrevs": [ + "ORL" + ], + "year_opened": 2017, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_mls_providence_park", + "name": "Providence Park", + "city": "Portland", + "state": "OR", + "latitude": 45.5216, + "longitude": -122.6917, + "capacity": 25218, + "sport": "MLS", + "primary_team_abbrevs": [ + "POR" + ], + "year_opened": 1926, + "timezone_identifier": "America/Los_Angeles", + "image_url": null + }, + { + "canonical_id": "stadium_mls_snapdragon_stadium", + "name": "Snapdragon Stadium", + "city": "San Diego", + "state": "CA", + "latitude": 32.7837, + "longitude": -117.1225, + "capacity": 35000, + "sport": "MLS", + "primary_team_abbrevs": [ + "SD" + ], + "year_opened": 2022, + "timezone_identifier": "America/Los_Angeles", + "image_url": null + }, + { + "canonical_id": "stadium_mls_paypal_park", + "name": "PayPal Park", + "city": "San Jose", + "state": "CA", + "latitude": 37.3511, + "longitude": -121.925, + "capacity": 18000, + "sport": "MLS", + "primary_team_abbrevs": [ + "SJ" + ], + "year_opened": 2015, + "timezone_identifier": "America/Los_Angeles", + "image_url": null + }, + { + "canonical_id": "stadium_mls_america_first_field", + "name": "America First Field", + "city": "Sandy", + "state": "UT", + "latitude": 40.583, + "longitude": -111.8933, + "capacity": 20213, + "sport": "MLS", + "primary_team_abbrevs": [ + "SLC" + ], + "year_opened": 2008, + "timezone_identifier": "America/Denver", + "image_url": null + }, + { + "canonical_id": "stadium_mls_lumen_field", + "name": "Lumen Field", + "city": "Seattle", + "state": "WA", + "latitude": 47.5952, + "longitude": -122.3316, + "capacity": 37722, + "sport": "MLS", + "primary_team_abbrevs": [ + "SEA" + ], + "year_opened": 2002, + "timezone_identifier": "America/Los_Angeles", "image_url": null }, { @@ -2784,13 +1320,29 @@ "state": "MO", "latitude": 38.6316, "longitude": -90.2106, - "capacity": 0, + "capacity": 22423, "sport": "MLS", "primary_team_abbrevs": [ "STL" ], - "year_opened": null, - "timezone_identifier": null, + "year_opened": 2022, + "timezone_identifier": "America/Chicago", + "image_url": null + }, + { + "canonical_id": "stadium_mls_allianz_field", + "name": "Allianz Field", + "city": "St. Paul", + "state": "MN", + "latitude": 44.9528, + "longitude": -93.165, + "capacity": 19400, + "sport": "MLS", + "primary_team_abbrevs": [ + "MIN" + ], + "year_opened": 2019, + "timezone_identifier": "America/Chicago", "image_url": null }, { @@ -2800,13 +1352,13 @@ "state": "ON", "latitude": 43.6332, "longitude": -79.4186, - "capacity": 0, + "capacity": 45000, "sport": "MLS", "primary_team_abbrevs": [ "TOR" ], - "year_opened": null, - "timezone_identifier": null, + "year_opened": 2007, + "timezone_identifier": "America/Toronto", "image_url": null }, { @@ -2816,293 +1368,1587 @@ "state": "BC", "latitude": 49.2768, "longitude": -123.1118, - "capacity": 0, + "capacity": 22120, "sport": "MLS", "primary_team_abbrevs": [ "VAN" ], - "year_opened": null, - "timezone_identifier": null, + "year_opened": 1983, + "timezone_identifier": "America/Vancouver", "image_url": null }, { - "canonical_id": "stadium_wnba_gateway_center_arena", - "name": "Gateway Center Arena", - "city": "College Park", - "state": "GA", - "latitude": 33.651, - "longitude": -84.4474, - "capacity": 0, - "sport": "WNBA", - "primary_team_abbrevs": [ - "ATL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_wnba_wintrust_arena", - "name": "Wintrust Arena", - "city": "Chicago", - "state": "IL", - "latitude": 41.8658, - "longitude": -87.6169, - "capacity": 0, - "sport": "WNBA", - "primary_team_abbrevs": [ - "CHI" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_wnba_mohegan_sun_arena", - "name": "Mohegan Sun Arena", - "city": "Uncasville", - "state": "CT", - "latitude": 41.4931, - "longitude": -72.0912, - "capacity": 0, - "sport": "WNBA", - "primary_team_abbrevs": [ - "CON" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_wnba_college_park_center", - "name": "College Park Center", - "city": "Arlington", - "state": "TX", - "latitude": 32.7304, - "longitude": -97.1077, - "capacity": 0, - "sport": "WNBA", - "primary_team_abbrevs": [ - "DAL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_wnba_chase_center", - "name": "Chase Center", - "city": "San Francisco", - "state": "CA", - "latitude": 37.768, - "longitude": -122.3877, - "capacity": 0, - "sport": "WNBA", - "primary_team_abbrevs": [ - "GSV" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "name": "Gainbridge Fieldhouse", - "city": "Indianapolis", - "state": "IN", - "latitude": 39.764, - "longitude": -86.1555, - "capacity": 0, - "sport": "WNBA", - "primary_team_abbrevs": [ - "IND" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_wnba_michelob_ultra_arena", - "name": "Michelob Ultra Arena", - "city": "Las Vegas", - "state": "NV", - "latitude": 36.0902, - "longitude": -115.1756, - "capacity": 0, - "sport": "WNBA", - "primary_team_abbrevs": [ - "LV" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_wnba_cryptocom_arena", - "name": "Crypto.com Arena", - "city": "Los Angeles", - "state": "CA", - "latitude": 34.043, - "longitude": -118.2673, - "capacity": 0, - "sport": "WNBA", - "primary_team_abbrevs": [ - "LA" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_wnba_target_center", - "name": "Target Center", - "city": "Minneapolis", - "state": "MN", - "latitude": 44.9795, - "longitude": -93.2761, - "capacity": 0, - "sport": "WNBA", - "primary_team_abbrevs": [ - "MIN" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_wnba_barclays_center", - "name": "Barclays Center", - "city": "Brooklyn", - "state": "NY", - "latitude": 40.6826, - "longitude": -73.9754, - "capacity": 0, - "sport": "WNBA", - "primary_team_abbrevs": [ - "NY" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_wnba_footprint_center", - "name": "Footprint Center", - "city": "Phoenix", - "state": "AZ", - "latitude": 33.4457, - "longitude": -112.0712, - "capacity": 0, - "sport": "WNBA", - "primary_team_abbrevs": [ - "PHX" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_wnba_climate_pledge_arena", - "name": "Climate Pledge Arena", - "city": "Seattle", - "state": "WA", - "latitude": 47.6221, - "longitude": -122.354, - "capacity": 0, - "sport": "WNBA", - "primary_team_abbrevs": [ - "SEA" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_wnba_entertainment_sports_arena", - "name": "Entertainment & Sports Arena", + "canonical_id": "stadium_mls_audi_field", + "name": "Audi Field", "city": "Washington", "state": "DC", - "latitude": 38.869, - "longitude": -76.9745, - "capacity": 0, - "sport": "WNBA", + "latitude": 38.8687, + "longitude": -77.0128, + "capacity": 20000, + "sport": "MLS", "primary_team_abbrevs": [ - "WAS" + "DC" ], - "year_opened": null, - "timezone_identifier": null, + "year_opened": 2018, + "timezone_identifier": "America/New_York", "image_url": null }, { - "canonical_id": "stadium_wnba_state_farm_arena", + "canonical_id": "stadium_nba_state_farm_arena", "name": "State Farm Arena", "city": "Atlanta", "state": "GA", "latitude": 33.7573, "longitude": -84.3963, - "capacity": 0, - "sport": "WNBA", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null + "capacity": 17044, + "sport": "NBA", + "primary_team_abbrevs": [ + "ATL" + ], + "year_opened": 1999, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nba/day/1827.jpg" }, { - "canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "canonical_id": "stadium_nba_td_garden", + "name": "TD Garden", + "city": "Boston", + "state": "MA", + "latitude": 42.3662, + "longitude": -71.0621, + "capacity": 18624, + "sport": "NBA", + "primary_team_abbrevs": [ + "BOS" + ], + "year_opened": 1995, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nba/day/1824.jpg" + }, + { + "canonical_id": "stadium_nba_barclays_center", + "name": "Barclays Center", + "city": "Brooklyn", + "state": "NY", + "latitude": 40.6826, + "longitude": -73.9754, + "capacity": 17732, + "sport": "NBA", + "primary_team_abbrevs": [ + "BKN" + ], + "year_opened": 2012, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nba/day/1826.jpg" + }, + { + "canonical_id": "stadium_nba_spectrum_center", + "name": "Spectrum Center", + "city": "Charlotte", + "state": "NC", + "latitude": 35.2251, + "longitude": -80.8392, + "capacity": 19077, + "sport": "NBA", + "primary_team_abbrevs": [ + "CHA" + ], + "year_opened": 2005, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nba/day/1893.jpg" + }, + { + "canonical_id": "stadium_nba_united_center", + "name": "United Center", + "city": "Chicago", + "state": "IL", + "latitude": 41.8807, + "longitude": -87.6742, + "capacity": 20917, + "sport": "NBA", + "primary_team_abbrevs": [ + "CHI" + ], + "year_opened": 1994, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nba/day/1847.jpg" + }, + { + "canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", "name": "Rocket Mortgage FieldHouse", "city": "Cleveland", "state": "OH", "latitude": 41.4965, "longitude": -81.6882, - "capacity": 0, - "sport": "WNBA", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null + "capacity": 19432, + "sport": "NBA", + "primary_team_abbrevs": [ + "CLE" + ], + "year_opened": 1994, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nba/day/3417.jpg" }, { - "canonical_id": "stadium_wnba_cfg_bank_arena", - "name": "CFG Bank Arena", - "city": "Baltimore", - "state": "MD", - "latitude": 39.2825, - "longitude": -76.622, - "capacity": 0, - "sport": "WNBA", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null + "canonical_id": "stadium_nba_american_airlines_center", + "name": "American Airlines Center", + "city": "Dallas", + "state": "TX", + "latitude": 32.7905, + "longitude": -96.8103, + "capacity": 19200, + "sport": "NBA", + "primary_team_abbrevs": [ + "DAL" + ], + "year_opened": 2001, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nba/day/516.jpg" }, { - "canonical_id": "stadium_wnba_purcell_pavilion", - "name": "Purcell Pavilion", - "city": "Notre Dame", + "canonical_id": "stadium_nba_ball_arena", + "name": "Ball Arena", + "city": "Denver", + "state": "CO", + "latitude": 39.7487, + "longitude": -105.0077, + "capacity": 19520, + "sport": "NBA", + "primary_team_abbrevs": [ + "DEN" + ], + "year_opened": 1999, + "timezone_identifier": "America/Denver", + "image_url": "https://a.espncdn.com/i/venues/nba/day/892.jpg" + }, + { + "canonical_id": "stadium_nba_little_caesars_arena", + "name": "Little Caesars Arena", + "city": "Detroit", + "state": "MI", + "latitude": 42.3411, + "longitude": -83.0553, + "capacity": 20332, + "sport": "NBA", + "primary_team_abbrevs": [ + "DET" + ], + "year_opened": 2017, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nba/day/5311.jpg" + }, + { + "canonical_id": "stadium_nba_toyota_center", + "name": "Toyota Center", + "city": "Houston", + "state": "TX", + "latitude": 29.7508, + "longitude": -95.3621, + "capacity": 18055, + "sport": "NBA", + "primary_team_abbrevs": [ + "HOU" + ], + "year_opened": 2003, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nba/day/1394.jpg" + }, + { + "canonical_id": "stadium_nba_gainbridge_fieldhouse", + "name": "Gainbridge Fieldhouse", + "city": "Indianapolis", "state": "IN", - "latitude": 41.6987, - "longitude": -86.234, - "capacity": 0, - "sport": "WNBA", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null + "latitude": 39.764, + "longitude": -86.1555, + "capacity": 17923, + "sport": "NBA", + "primary_team_abbrevs": [ + "IND" + ], + "year_opened": 1999, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nba/day/2183.jpg" }, { - "canonical_id": "stadium_nwsl_bmo_stadium", - "name": "BMO Stadium", + "canonical_id": "stadium_nba_intuit_dome", + "name": "Intuit Dome", + "city": "Inglewood", + "state": "CA", + "latitude": 33.9425, + "longitude": -118.3417, + "capacity": 18000, + "sport": "NBA", + "primary_team_abbrevs": [ + "LAC" + ], + "year_opened": 2024, + "timezone_identifier": "America/Los_Angeles", + "image_url": "https://a.espncdn.com/i/venues/nba/day/1841.jpg" + }, + { + "canonical_id": "stadium_nba_cryptocom_arena", + "name": "Crypto.com Arena", "city": "Los Angeles", "state": "CA", - "latitude": 34.0128, - "longitude": -118.2841, - "capacity": 0, - "sport": "NWSL", + "latitude": 34.043, + "longitude": -118.2673, + "capacity": 18997, + "sport": "NBA", "primary_team_abbrevs": [ - "ANG" + "LAL" + ], + "year_opened": 1999, + "timezone_identifier": "America/Los_Angeles", + "image_url": "https://a.espncdn.com/i/venues/nba/day/1841.jpg" + }, + { + "canonical_id": "stadium_nba_fedexforum", + "name": "FedExForum", + "city": "Memphis", + "state": "TN", + "latitude": 35.1383, + "longitude": -90.0505, + "capacity": 17794, + "sport": "NBA", + "primary_team_abbrevs": [ + "MEM" + ], + "year_opened": 2004, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nba/day/1392.jpg" + }, + { + "canonical_id": "stadium_nba_mexico_city_arena", + "name": "Mexico City Arena", + "city": "Mexico City", + "state": "CDMX", + "latitude": 19.4042, + "longitude": -99.097, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/Mexico_City", + "image_url": null + }, + { + "canonical_id": "stadium_nba_kaseya_center", + "name": "Kaseya Center", + "city": "Miami", + "state": "FL", + "latitude": 25.7814, + "longitude": -80.187, + "capacity": 19600, + "sport": "NBA", + "primary_team_abbrevs": [ + "MIA" + ], + "year_opened": 1999, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nba/day/3438.jpg" + }, + { + "canonical_id": "stadium_nba_fiserv_forum", + "name": "Fiserv Forum", + "city": "Milwaukee", + "state": "WI", + "latitude": 43.0451, + "longitude": -87.9172, + "capacity": 17341, + "sport": "NBA", + "primary_team_abbrevs": [ + "MIL" + ], + "year_opened": 2018, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nba/day/2099.jpg" + }, + { + "canonical_id": "stadium_nba_target_center", + "name": "Target Center", + "city": "Minneapolis", + "state": "MN", + "latitude": 44.9795, + "longitude": -93.2761, + "capacity": 18024, + "sport": "NBA", + "primary_team_abbrevs": [ + "MIN" + ], + "year_opened": 1990, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nba/day/2029.jpg" + }, + { + "canonical_id": "stadium_nba_smoothie_king_center", + "name": "Smoothie King Center", + "city": "New Orleans", + "state": "LA", + "latitude": 29.949, + "longitude": -90.0821, + "capacity": 16867, + "sport": "NBA", + "primary_team_abbrevs": [ + "NOP" + ], + "year_opened": 1999, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nba/day/985.jpg" + }, + { + "canonical_id": "stadium_nba_madison_square_garden", + "name": "Madison Square Garden", + "city": "New York", + "state": "NY", + "latitude": 40.7505, + "longitude": -73.9934, + "capacity": 19812, + "sport": "NBA", + "primary_team_abbrevs": [ + "NYK" + ], + "year_opened": 1968, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nba/day/1830.jpg" + }, + { + "canonical_id": "stadium_nba_paycom_center", + "name": "Paycom Center", + "city": "Oklahoma City", + "state": "OK", + "latitude": 35.4634, + "longitude": -97.5151, + "capacity": 18203, + "sport": "NBA", + "primary_team_abbrevs": [ + "OKC" + ], + "year_opened": 2002, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nba/day/2559.jpg" + }, + { + "canonical_id": "stadium_nba_kia_center", + "name": "Kia Center", + "city": "Orlando", + "state": "FL", + "latitude": 28.5392, + "longitude": -81.3839, + "capacity": 18846, + "sport": "NBA", + "primary_team_abbrevs": [ + "ORL" + ], + "year_opened": 2010, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nba/day/3432.jpg" + }, + { + "canonical_id": "stadium_nba_wells_fargo_center", + "name": "Wells Fargo Center", + "city": "Philadelphia", + "state": "PA", + "latitude": 39.9012, + "longitude": -75.172, + "capacity": 0, + "sport": "NBA", + "primary_team_abbrevs": [ + "PHI" ], "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nba/day/1845.jpg" + }, + { + "canonical_id": "stadium_nba_footprint_center", + "name": "Footprint Center", + "city": "Phoenix", + "state": "AZ", + "latitude": 33.4457, + "longitude": -112.0712, + "capacity": 20007, + "sport": "NBA", + "primary_team_abbrevs": [ + "PHX" + ], + "year_opened": 1996, + "timezone_identifier": "America/Phoenix", + "image_url": "https://a.espncdn.com/i/venues/nba/day/1949.jpg" + }, + { + "canonical_id": "stadium_nba_moda_center", + "name": "Moda Center", + "city": "Portland", + "state": "OR", + "latitude": 45.5316, + "longitude": -122.6668, + "capacity": 19411, + "sport": "NBA", + "primary_team_abbrevs": [ + "POR" + ], + "year_opened": 1995, + "timezone_identifier": "America/Los_Angeles", + "image_url": "https://a.espncdn.com/i/venues/nba/day/3423.jpg" + }, + { + "canonical_id": "stadium_nba_golden_1_center", + "name": "Golden 1 Center", + "city": "Sacramento", + "state": "CA", + "latitude": 38.5802, + "longitude": -121.4997, + "capacity": 17611, + "sport": "NBA", + "primary_team_abbrevs": [ + "SAC" + ], + "year_opened": 2016, + "timezone_identifier": "America/Los_Angeles", + "image_url": "https://a.espncdn.com/i/venues/nba/day/2247.jpg" + }, + { + "canonical_id": "stadium_nba_delta_center", + "name": "Delta Center", + "city": "Salt Lake City", + "state": "UT", + "latitude": 40.7683, + "longitude": -111.9011, + "capacity": 18306, + "sport": "NBA", + "primary_team_abbrevs": [ + "UTA" + ], + "year_opened": 1991, + "timezone_identifier": "America/Denver", + "image_url": "https://a.espncdn.com/i/venues/nba/day/3093.jpg" + }, + { + "canonical_id": "stadium_nba_frost_bank_center", + "name": "Frost Bank Center", + "city": "San Antonio", + "state": "TX", + "latitude": 29.427, + "longitude": -98.4375, + "capacity": 18354, + "sport": "NBA", + "primary_team_abbrevs": [ + "SAS" + ], + "year_opened": 2002, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nba/day/780.jpg" + }, + { + "canonical_id": "stadium_nba_chase_center", + "name": "Chase Center", + "city": "San Francisco", + "state": "CA", + "latitude": 37.768, + "longitude": -122.3877, + "capacity": 18064, + "sport": "NBA", + "primary_team_abbrevs": [ + "GSW" + ], + "year_opened": 2019, + "timezone_identifier": "America/Los_Angeles", + "image_url": "https://a.espncdn.com/i/venues/nba/day/2465.jpg" + }, + { + "canonical_id": "stadium_nba_scotiabank_arena", + "name": "Scotiabank Arena", + "city": "Toronto", + "state": "ON", + "latitude": 43.6435, + "longitude": -79.3791, + "capacity": 19800, + "sport": "NBA", + "primary_team_abbrevs": [ + "TOR" + ], + "year_opened": 1999, + "timezone_identifier": "America/Toronto", + "image_url": "https://a.espncdn.com/i/venues/nba/day/1838.jpg" + }, + { + "canonical_id": "stadium_nba_capital_one_arena", + "name": "Capital One Arena", + "city": "Washington", + "state": "DC", + "latitude": 38.8981, + "longitude": -77.0209, + "capacity": 20333, + "sport": "NBA", + "primary_team_abbrevs": [ + "WAS" + ], + "year_opened": 1997, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nba/day/1823.jpg" + }, + { + "canonical_id": "stadium_nfl_att_stadium", + "name": "AT&T Stadium", + "city": "Arlington", + "state": "TX", + "latitude": 32.7473, + "longitude": -97.0945, + "capacity": 80000, + "sport": "NFL", + "primary_team_abbrevs": [ + "DAL" + ], + "year_opened": 2009, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3687.jpg" + }, + { + "canonical_id": "stadium_nfl_mercedes_benz_stadium", + "name": "Mercedes-Benz Stadium", + "city": "Atlanta", + "state": "GA", + "latitude": 33.7553, + "longitude": -84.4006, + "capacity": 71000, + "sport": "NFL", + "primary_team_abbrevs": [ + "ATL" + ], + "year_opened": 2017, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/interior/5348.jpg" + }, + { + "canonical_id": "stadium_nfl_mandt_bank_stadium", + "name": "M&T Bank Stadium", + "city": "Baltimore", + "state": "MD", + "latitude": 39.278, + "longitude": -76.6227, + "capacity": 71008, + "sport": "NFL", + "primary_team_abbrevs": [ + "BAL" + ], + "year_opened": 1998, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3814.jpg" + }, + { + "canonical_id": "stadium_nfl_olympic_stadium_berlin", + "name": "Olympic Stadium Berlin", + "city": "Berlin", + "state": null, + "latitude": 52.5147, + "longitude": 13.2395, + "capacity": 0, + "sport": "NFL", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "Europe/Berlin", + "image_url": null + }, + { + "canonical_id": "stadium_nfl_tom_benson_hall_of_fame_stadium", + "name": "Tom Benson Hall of Fame Stadium", + "city": "Canton", + "state": "OH", + "latitude": 40.8209, + "longitude": -81.3985, + "capacity": 0, + "sport": "NFL", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_nfl_bank_of_america_stadium", + "name": "Bank of America Stadium", + "city": "Charlotte", + "state": "NC", + "latitude": 35.2258, + "longitude": -80.8528, + "capacity": 75037, + "sport": "NFL", + "primary_team_abbrevs": [ + "CAR" + ], + "year_opened": 1996, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3628.jpg" + }, + { + "canonical_id": "stadium_nfl_soldier_field", + "name": "Soldier Field", + "city": "Chicago", + "state": "IL", + "latitude": 41.8623, + "longitude": -87.6167, + "capacity": 61500, + "sport": "NFL", + "primary_team_abbrevs": [ + "CHI" + ], + "year_opened": 1924, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3933.jpg" + }, + { + "canonical_id": "stadium_nfl_paycor_stadium", + "name": "Paycor Stadium", + "city": "Cincinnati", + "state": "OH", + "latitude": 39.0955, + "longitude": -84.5161, + "capacity": 65515, + "sport": "NFL", + "primary_team_abbrevs": [ + "CIN" + ], + "year_opened": 2000, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3874.jpg" + }, + { + "canonical_id": "stadium_nfl_huntington_bank_field", + "name": "Huntington Bank Field", + "city": "Cleveland", + "state": "OH", + "latitude": 41.5061, + "longitude": -81.6995, + "capacity": 67895, + "sport": "NFL", + "primary_team_abbrevs": [ + "CLE" + ], + "year_opened": 1999, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3679.jpg" + }, + { + "canonical_id": "stadium_nfl_empower_field", + "name": "Empower Field at Mile High", + "city": "Denver", + "state": "CO", + "latitude": 39.7439, + "longitude": -105.0201, + "capacity": 76125, + "sport": "NFL", + "primary_team_abbrevs": [ + "DEN" + ], + "year_opened": 2001, + "timezone_identifier": "America/Denver", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3937.jpg" + }, + { + "canonical_id": "stadium_nfl_ford_field", + "name": "Ford Field", + "city": "Detroit", + "state": "MI", + "latitude": 42.34, + "longitude": -83.0456, + "capacity": 65000, + "sport": "NFL", + "primary_team_abbrevs": [ + "DET" + ], + "year_opened": 2002, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3727.jpg" + }, + { + "canonical_id": "stadium_nfl_croke_park", + "name": "Croke Park", + "city": "Dublin", + "state": null, + "latitude": 53.3609, + "longitude": -6.2514, + "capacity": 0, + "sport": "NFL", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "Europe/Dublin", + "image_url": null + }, + { + "canonical_id": "stadium_nfl_metlife_stadium", + "name": "MetLife Stadium", + "city": "East Rutherford", + "state": "NJ", + "latitude": 40.8128, + "longitude": -74.0742, + "capacity": 82500, + "sport": "NFL", + "primary_team_abbrevs": [ + "NYG", + "NYJ" + ], + "year_opened": 2010, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3839.jpg" + }, + { + "canonical_id": "stadium_nfl_gillette_stadium", + "name": "Gillette Stadium", + "city": "Foxborough", + "state": "MA", + "latitude": 42.0909, + "longitude": -71.2643, + "capacity": 66829, + "sport": "NFL", + "primary_team_abbrevs": [ + "NE" + ], + "year_opened": 2002, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3738.jpg" + }, + { + "canonical_id": "stadium_nfl_state_farm_stadium", + "name": "State Farm Stadium", + "city": "Glendale", + "state": "AZ", + "latitude": 33.5276, + "longitude": -112.2626, + "capacity": 63400, + "sport": "NFL", + "primary_team_abbrevs": [ + "ARI" + ], + "year_opened": 2006, + "timezone_identifier": "America/Phoenix", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3970.jpg" + }, + { + "canonical_id": "stadium_nfl_lambeau_field", + "name": "Lambeau Field", + "city": "Green Bay", + "state": "WI", + "latitude": 44.5013, + "longitude": -88.0622, + "capacity": 81441, + "sport": "NFL", + "primary_team_abbrevs": [ + "GB" + ], + "year_opened": 1957, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3798.jpg" + }, + { + "canonical_id": "stadium_nfl_nrg_stadium", + "name": "NRG Stadium", + "city": "Houston", + "state": "TX", + "latitude": 29.6847, + "longitude": -95.4107, + "capacity": 72220, + "sport": "NFL", + "primary_team_abbrevs": [ + "HOU" + ], + "year_opened": 2002, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3891.jpg" + }, + { + "canonical_id": "stadium_nfl_lucas_oil_stadium", + "name": "Lucas Oil Stadium", + "city": "Indianapolis", + "state": "IN", + "latitude": 39.7601, + "longitude": -86.1639, + "capacity": 67000, + "sport": "NFL", + "primary_team_abbrevs": [ + "IND" + ], + "year_opened": 2008, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3812.jpg" + }, + { + "canonical_id": "stadium_nfl_sofi_stadium", + "name": "SoFi Stadium", + "city": "Inglewood", + "state": "CA", + "latitude": 33.9534, + "longitude": -118.3386, + "capacity": 70000, + "sport": "NFL", + "primary_team_abbrevs": [ + "LAC", + "LAR" + ], + "year_opened": 2020, + "timezone_identifier": "America/Los_Angeles", + "image_url": null + }, + { + "canonical_id": "stadium_nfl_everbank_stadium", + "name": "EverBank Stadium", + "city": "Jacksonville", + "state": "FL", + "latitude": 30.3239, + "longitude": -81.6373, + "capacity": 69132, + "sport": "NFL", + "primary_team_abbrevs": [ + "JAX" + ], + "year_opened": 1995, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3712.jpg" + }, + { + "canonical_id": "stadium_nfl_arrowhead_stadium", + "name": "Arrowhead Stadium", + "city": "Kansas City", + "state": "MO", + "latitude": 39.0489, + "longitude": -94.4839, + "capacity": 76416, + "sport": "NFL", + "primary_team_abbrevs": [ + "KC" + ], + "year_opened": 1972, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3622.jpg" + }, + { + "canonical_id": "stadium_nfl_northwest_stadium", + "name": "Northwest Stadium", + "city": "Landover", + "state": "MD", + "latitude": 38.9076, + "longitude": -76.8645, + "capacity": 64000, + "sport": "NFL", + "primary_team_abbrevs": [ + "WAS" + ], + "year_opened": 1997, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3719.jpg" + }, + { + "canonical_id": "stadium_nfl_allegiant_stadium", + "name": "Allegiant Stadium", + "city": "Las Vegas", + "state": "NV", + "latitude": 36.0909, + "longitude": -115.1833, + "capacity": 65000, + "sport": "NFL", + "primary_team_abbrevs": [ + "LV" + ], + "year_opened": 2020, + "timezone_identifier": "America/Los_Angeles", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/6501.jpg" + }, + { + "canonical_id": "stadium_nfl_santiago_bernabeu", + "name": "Santiago Bernab\u00e9u", + "city": "Madrid", + "state": null, + "latitude": 40.4531, + "longitude": -3.6883, + "capacity": 0, + "sport": "NFL", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "Europe/Madrid", + "image_url": null + }, + { + "canonical_id": "stadium_nfl_hard_rock_stadium", + "name": "Hard Rock Stadium", + "city": "Miami Gardens", + "state": "FL", + "latitude": 25.958, + "longitude": -80.2389, + "capacity": 65326, + "sport": "NFL", + "primary_team_abbrevs": [ + "MIA" + ], + "year_opened": 1987, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3948.jpg" + }, + { + "canonical_id": "stadium_nfl_us_bank_stadium", + "name": "U.S. Bank Stadium", + "city": "Minneapolis", + "state": "MN", + "latitude": 44.9737, + "longitude": -93.2575, + "capacity": 66655, + "sport": "NFL", + "primary_team_abbrevs": [ + "MIN" + ], + "year_opened": 2016, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/interior/5239.jpg" + }, + { + "canonical_id": "stadium_nfl_nissan_stadium", + "name": "Nissan Stadium", + "city": "Nashville", + "state": "TN", + "latitude": 36.1665, + "longitude": -86.7713, + "capacity": 69143, + "sport": "NFL", + "primary_team_abbrevs": [ + "TEN" + ], + "year_opened": 1999, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3810.jpg" + }, + { + "canonical_id": "stadium_nfl_caesars_superdome", + "name": "Caesars Superdome", + "city": "New Orleans", + "state": "LA", + "latitude": 29.9511, + "longitude": -90.0812, + "capacity": 73208, + "sport": "NFL", + "primary_team_abbrevs": [ + "NO" + ], + "year_opened": 1975, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3493.jpg" + }, + { + "canonical_id": "stadium_nfl_highmark_stadium", + "name": "Highmark Stadium", + "city": "Orchard Park", + "state": "NY", + "latitude": 42.7738, + "longitude": -78.787, + "capacity": 67000, + "sport": "NFL", + "primary_team_abbrevs": [ + "BUF" + ], + "year_opened": 2026, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3883.jpg" + }, + { + "canonical_id": "stadium_nfl_lincoln_financial_field", + "name": "Lincoln Financial Field", + "city": "Philadelphia", + "state": "PA", + "latitude": 39.9008, + "longitude": -75.1675, + "capacity": 69596, + "sport": "NFL", + "primary_team_abbrevs": [ + "PHI" + ], + "year_opened": 2003, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3806.jpg" + }, + { + "canonical_id": "stadium_nfl_acrisure_stadium", + "name": "Acrisure Stadium", + "city": "Pittsburgh", + "state": "PA", + "latitude": 40.4468, + "longitude": -80.0158, + "capacity": 68400, + "sport": "NFL", + "primary_team_abbrevs": [ + "PIT" + ], + "year_opened": 2001, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3752.jpg" + }, + { + "canonical_id": "stadium_nfl_levis_stadium", + "name": "Levi's Stadium", + "city": "Santa Clara", + "state": "CA", + "latitude": 37.4033, + "longitude": -121.9695, + "capacity": 68500, + "sport": "NFL", + "primary_team_abbrevs": [ + "SF" + ], + "year_opened": 2014, + "timezone_identifier": "America/Los_Angeles", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/4738.jpg" + }, + { + "canonical_id": "stadium_nfl_lumen_field", + "name": "Lumen Field", + "city": "Seattle", + "state": "WA", + "latitude": 47.5952, + "longitude": -122.3316, + "capacity": 69000, + "sport": "NFL", + "primary_team_abbrevs": [ + "SEA" + ], + "year_opened": 2002, + "timezone_identifier": "America/Los_Angeles", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3673.jpg" + }, + { + "canonical_id": "stadium_nfl_corinthians_arena", + "name": "Corinthians Arena", + "city": "S\u00e3o Paulo", + "state": "SP", + "latitude": -23.5453, + "longitude": -46.4742, + "capacity": 0, + "sport": "NFL", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/Sao_Paulo", + "image_url": null + }, + { + "canonical_id": "stadium_nfl_raymond_james_stadium", + "name": "Raymond James Stadium", + "city": "Tampa", + "state": "FL", + "latitude": 27.9759, + "longitude": -82.5033, + "capacity": 65890, + "sport": "NFL", + "primary_team_abbrevs": [ + "TB" + ], + "year_opened": 1998, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nfl/day/3886.jpg" + }, + { + "canonical_id": "stadium_nhl_honda_center", + "name": "Honda Center", + "city": "Anaheim", + "state": "CA", + "latitude": 33.8078, + "longitude": -117.8765, + "capacity": 17174, + "sport": "NHL", + "primary_team_abbrevs": [ + "ANA" + ], + "year_opened": 1993, + "timezone_identifier": "America/Los_Angeles", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1842.jpg" + }, + { + "canonical_id": "stadium_nhl_td_garden", + "name": "TD Garden", + "city": "Boston", + "state": "MA", + "latitude": 42.3662, + "longitude": -71.0621, + "capacity": 17565, + "sport": "NHL", + "primary_team_abbrevs": [ + "BOS" + ], + "year_opened": 1995, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1824.jpg" + }, + { + "canonical_id": "stadium_nhl_keybank_center", + "name": "KeyBank Center", + "city": "Buffalo", + "state": "NY", + "latitude": 42.875, + "longitude": -78.8764, + "capacity": 19070, + "sport": "NHL", + "primary_team_abbrevs": [ + "BUF" + ], + "year_opened": 1996, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1848.jpg" + }, + { + "canonical_id": "stadium_nhl_scotiabank_saddledome", + "name": "Scotiabank Saddledome", + "city": "Calgary", + "state": "AB", + "latitude": 51.0374, + "longitude": -114.0519, + "capacity": 19289, + "sport": "NHL", + "primary_team_abbrevs": [ + "CGY" + ], + "year_opened": 1983, + "timezone_identifier": "America/Edmonton", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1843.jpg" + }, + { + "canonical_id": "stadium_nhl_united_center", + "name": "United Center", + "city": "Chicago", + "state": "IL", + "latitude": 41.8807, + "longitude": -87.6742, + "capacity": 19717, + "sport": "NHL", + "primary_team_abbrevs": [ + "CHI" + ], + "year_opened": 1994, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1847.jpg" + }, + { + "canonical_id": "stadium_nhl_nationwide_arena", + "name": "Nationwide Arena", + "city": "Columbus", + "state": "OH", + "latitude": 39.9692, + "longitude": -83.0061, + "capacity": 18144, + "sport": "NHL", + "primary_team_abbrevs": [ + "CBJ" + ], + "year_opened": 2000, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1828.jpg" + }, + { + "canonical_id": "stadium_nhl_american_airlines_center", + "name": "American Airlines Center", + "city": "Dallas", + "state": "TX", + "latitude": 32.7905, + "longitude": -96.8103, + "capacity": 18532, + "sport": "NHL", + "primary_team_abbrevs": [ + "DAL" + ], + "year_opened": 2001, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/516.jpg" + }, + { + "canonical_id": "stadium_nhl_ball_arena", + "name": "Ball Arena", + "city": "Denver", + "state": "CO", + "latitude": 39.7487, + "longitude": -105.0077, + "capacity": 17809, + "sport": "NHL", + "primary_team_abbrevs": [ + "COL" + ], + "year_opened": 1999, + "timezone_identifier": "America/Denver", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/892.jpg" + }, + { + "canonical_id": "stadium_nhl_little_caesars_arena", + "name": "Little Caesars Arena", + "city": "Detroit", + "state": "MI", + "latitude": 42.3411, + "longitude": -83.0553, + "capacity": 19515, + "sport": "NHL", + "primary_team_abbrevs": [ + "DET" + ], + "year_opened": 2017, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/5404.jpg" + }, + { + "canonical_id": "stadium_nhl_rogers_place", + "name": "Rogers Place", + "city": "Edmonton", + "state": "AB", + "latitude": 53.5469, + "longitude": -113.4979, + "capacity": 18347, + "sport": "NHL", + "primary_team_abbrevs": [ + "EDM" + ], + "year_opened": 2016, + "timezone_identifier": "America/Edmonton", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/5282.jpg" + }, + { + "canonical_id": "stadium_nhl_ubs_arena", + "name": "UBS Arena", + "city": "Elmont", + "state": "NY", + "latitude": 40.717, + "longitude": -73.7255, + "capacity": 17255, + "sport": "NHL", + "primary_team_abbrevs": [ + "NYI" + ], + "year_opened": 2021, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/7226.jpg" + }, + { + "canonical_id": "stadium_nhl_tmobile_arena", + "name": "T-Mobile Arena", + "city": "Las Vegas", + "state": "NV", + "latitude": 36.1028, + "longitude": -115.1783, + "capacity": 17367, + "sport": "NHL", + "primary_team_abbrevs": [ + "VGK" + ], + "year_opened": 2016, + "timezone_identifier": "America/Los_Angeles", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/5060.jpg" + }, + { + "canonical_id": "stadium_nhl_cryptocom_arena", + "name": "Crypto.com Arena", + "city": "Los Angeles", + "state": "CA", + "latitude": 34.043, + "longitude": -118.2673, + "capacity": 18230, + "sport": "NHL", + "primary_team_abbrevs": [ + "LA" + ], + "year_opened": 1999, + "timezone_identifier": "America/Los_Angeles", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1841.jpg" + }, + { + "canonical_id": "stadium_nhl_bell_centre", + "name": "Bell Centre", + "city": "Montreal", + "state": "QC", + "latitude": 45.4961, + "longitude": -73.5693, + "capacity": 20962, + "sport": "NHL", + "primary_team_abbrevs": [ + "MTL" + ], + "year_opened": 1996, + "timezone_identifier": "America/Toronto", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1831.jpg" + }, + { + "canonical_id": "stadium_nhl_bridgestone_arena", + "name": "Bridgestone Arena", + "city": "Nashville", + "state": "TN", + "latitude": 36.1592, + "longitude": -86.7785, + "capacity": 17159, + "sport": "NHL", + "primary_team_abbrevs": [ + "NSH" + ], + "year_opened": 1996, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1834.jpg" + }, + { + "canonical_id": "stadium_nhl_madison_square_garden", + "name": "Madison Square Garden", + "city": "New York", + "state": "NY", + "latitude": 40.7505, + "longitude": -73.9934, + "capacity": 18006, + "sport": "NHL", + "primary_team_abbrevs": [ + "NYR" + ], + "year_opened": 1968, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1830.jpg" + }, + { + "canonical_id": "stadium_nhl_prudential_center", + "name": "Prudential Center", + "city": "Newark", + "state": "NJ", + "latitude": 40.7334, + "longitude": -74.1712, + "capacity": 16514, + "sport": "NHL", + "primary_team_abbrevs": [ + "NJ" + ], + "year_opened": 2007, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_nhl_canadian_tire_centre", + "name": "Canadian Tire Centre", + "city": "Ottawa", + "state": "ON", + "latitude": 45.2969, + "longitude": -75.9272, + "capacity": 19347, + "sport": "NHL", + "primary_team_abbrevs": [ + "OTT" + ], + "year_opened": 1996, + "timezone_identifier": "America/Toronto", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1832.jpg" + }, + { + "canonical_id": "stadium_nhl_wells_fargo_center", + "name": "Wells Fargo Center", + "city": "Philadelphia", + "state": "PA", + "latitude": 39.9012, + "longitude": -75.172, + "capacity": 0, + "sport": "NHL", + "primary_team_abbrevs": [ + "PHI" + ], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1845.jpg" + }, + { + "canonical_id": "stadium_nhl_ppg_paints_arena", + "name": "PPG Paints Arena", + "city": "Pittsburgh", + "state": "PA", + "latitude": 40.4395, + "longitude": -79.989, + "capacity": 18387, + "sport": "NHL", + "primary_team_abbrevs": [ + "PIT" + ], + "year_opened": 2010, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1837.jpg" + }, + { + "canonical_id": "stadium_nhl_pnc_arena", + "name": "PNC Arena", + "city": "Raleigh", + "state": "NC", + "latitude": 35.8033, + "longitude": -78.722, + "capacity": 18700, + "sport": "NHL", + "primary_team_abbrevs": [ + "CAR" + ], + "year_opened": 1999, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/999.jpg" + }, + { + "canonical_id": "stadium_nhl_delta_center", + "name": "Delta Center", + "city": "Salt Lake City", + "state": "UT", + "latitude": 40.7683, + "longitude": -111.9011, + "capacity": 16200, + "sport": "NHL", + "primary_team_abbrevs": [ + "ARI" + ], + "year_opened": 1991, + "timezone_identifier": "America/Denver", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/3093.jpg" + }, + { + "canonical_id": "stadium_nhl_sap_center", + "name": "SAP Center", + "city": "San Jose", + "state": "CA", + "latitude": 37.3327, + "longitude": -121.9011, + "capacity": 17435, + "sport": "NHL", + "primary_team_abbrevs": [ + "SJ" + ], + "year_opened": 1993, + "timezone_identifier": "America/Los_Angeles", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1653.jpg" + }, + { + "canonical_id": "stadium_nhl_climate_pledge_arena", + "name": "Climate Pledge Arena", + "city": "Seattle", + "state": "WA", + "latitude": 47.6221, + "longitude": -122.354, + "capacity": 17151, + "sport": "NHL", + "primary_team_abbrevs": [ + "SEA" + ], + "year_opened": 2021, + "timezone_identifier": "America/Los_Angeles", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/7224.jpg" + }, + { + "canonical_id": "stadium_nhl_enterprise_center", + "name": "Enterprise Center", + "city": "St. Louis", + "state": "MO", + "latitude": 38.6268, + "longitude": -90.2025, + "capacity": 18096, + "sport": "NHL", + "primary_team_abbrevs": [ + "STL" + ], + "year_opened": 1994, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1839.jpg" + }, + { + "canonical_id": "stadium_nhl_xcel_energy_center", + "name": "Xcel Energy Center", + "city": "St. Paul", + "state": "MN", + "latitude": 44.9448, + "longitude": -93.101, + "capacity": 17954, + "sport": "NHL", + "primary_team_abbrevs": [ + "MIN" + ], + "year_opened": 2000, + "timezone_identifier": "America/Chicago", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1835.jpg" + }, + { + "canonical_id": "stadium_nhl_amerant_bank_arena", + "name": "Amerant Bank Arena", + "city": "Sunrise", + "state": "FL", + "latitude": 26.1584, + "longitude": -80.3256, + "capacity": 19250, + "sport": "NHL", + "primary_team_abbrevs": [ + "FLA" + ], + "year_opened": 1998, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1840.jpg" + }, + { + "canonical_id": "stadium_nhl_amalie_arena", + "name": "Amalie Arena", + "city": "Tampa", + "state": "FL", + "latitude": 27.9428, + "longitude": -82.4519, + "capacity": 19092, + "sport": "NHL", + "primary_team_abbrevs": [ + "TB" + ], + "year_opened": 1996, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1396.jpg" + }, + { + "canonical_id": "stadium_nhl_scotiabank_arena", + "name": "Scotiabank Arena", + "city": "Toronto", + "state": "ON", + "latitude": 43.6435, + "longitude": -79.3791, + "capacity": 18800, + "sport": "NHL", + "primary_team_abbrevs": [ + "TOR" + ], + "year_opened": 1999, + "timezone_identifier": "America/Toronto", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1838.jpg" + }, + { + "canonical_id": "stadium_nhl_rogers_arena", + "name": "Rogers Arena", + "city": "Vancouver", + "state": "BC", + "latitude": 49.2778, + "longitude": -123.1088, + "capacity": 18910, + "sport": "NHL", + "primary_team_abbrevs": [ + "VAN" + ], + "year_opened": 1995, + "timezone_identifier": "America/Vancouver", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1833.jpg" + }, + { + "canonical_id": "stadium_nhl_capital_one_arena", + "name": "Capital One Arena", + "city": "Washington", + "state": "DC", + "latitude": 38.8981, + "longitude": -77.0209, + "capacity": 18573, + "sport": "NHL", + "primary_team_abbrevs": [ + "WAS" + ], + "year_opened": 1997, + "timezone_identifier": "America/New_York", + "image_url": "https://a.espncdn.com/i/venues/nhl/day/1823.jpg" + }, + { + "canonical_id": "stadium_nhl_canada_life_centre", + "name": "Canada Life Centre", + "city": "Winnipeg", + "state": "MB", + "latitude": 49.8928, + "longitude": -97.1433, + "capacity": 15321, + "sport": "NHL", + "primary_team_abbrevs": [ + "WPG" + ], + "year_opened": 2004, + "timezone_identifier": "America/Winnipeg", "image_url": null }, { @@ -3118,55 +2964,7 @@ "CHI" ], "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nwsl_shell_energy_stadium", - "name": "Shell Energy Stadium", - "city": "Houston", - "state": "TX", - "latitude": 29.7522, - "longitude": -95.3527, - "capacity": 0, - "sport": "NWSL", - "primary_team_abbrevs": [ - "HOU" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nwsl_cpkc_stadium", - "name": "CPKC Stadium", - "city": "Kansas City", - "state": "MO", - "latitude": 39.105, - "longitude": -94.558, - "capacity": 0, - "sport": "NWSL", - "primary_team_abbrevs": [ - "KCC" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nwsl_red_bull_arena", - "name": "Red Bull Arena", - "city": "Harrison", - "state": "NJ", - "latitude": 40.7369, - "longitude": -74.1503, - "capacity": 0, - "sport": "NWSL", - "primary_team_abbrevs": [ - "NJY" - ], - "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/Chicago", "image_url": null }, { @@ -3176,185 +2974,41 @@ "state": "NC", "latitude": 35.7879, "longitude": -78.7806, - "capacity": 0, + "capacity": 10000, "sport": "NWSL", "primary_team_abbrevs": [ "NCC" ], "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/New_York", "image_url": null }, { - "canonical_id": "stadium_nwsl_interco_stadium", - "name": "Inter&Co Stadium", - "city": "Orlando", - "state": "FL", - "latitude": 28.5411, - "longitude": -81.3895, - "capacity": 0, - "sport": "NWSL", - "primary_team_abbrevs": [ - "ORL" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nwsl_providence_park", - "name": "Providence Park", - "city": "Portland", - "state": "OR", - "latitude": 45.5216, - "longitude": -122.6917, - "capacity": 0, - "sport": "NWSL", - "primary_team_abbrevs": [ - "POR" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nwsl_lynn_family_stadium", - "name": "Lynn Family Stadium", - "city": "Louisville", - "state": "KY", - "latitude": 38.2219, - "longitude": -85.7381, - "capacity": 0, - "sport": "NWSL", - "primary_team_abbrevs": [ - "RGN" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nwsl_snapdragon_stadium", - "name": "Snapdragon Stadium", - "city": "San Diego", - "state": "CA", - "latitude": 32.7837, - "longitude": -117.1225, - "capacity": 0, - "sport": "NWSL", - "primary_team_abbrevs": [ - "SDW" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nwsl_lumen_field", - "name": "Lumen Field", - "city": "Seattle", - "state": "WA", - "latitude": 47.5952, - "longitude": -122.3316, - "capacity": 0, - "sport": "NWSL", - "primary_team_abbrevs": [ - "SEA" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nwsl_america_first_field", - "name": "America First Field", - "city": "Sandy", - "state": "UT", - "latitude": 40.583, - "longitude": -111.8933, - "capacity": 0, - "sport": "NWSL", - "primary_team_abbrevs": [ - "UTA" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nwsl_audi_field", - "name": "Audi Field", - "city": "Washington", - "state": "DC", - "latitude": 38.8687, - "longitude": -77.0128, - "capacity": 0, - "sport": "NWSL", - "primary_team_abbrevs": [ - "WSH" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nwsl_paypal_park", - "name": "PayPal Park", - "city": "San Jose", - "state": "CA", - "latitude": 37.3511, - "longitude": -121.925, - "capacity": 0, - "sport": "NWSL", - "primary_team_abbrevs": [ - "BAY" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nwsl_gillette_stadium", - "name": "Gillette Stadium", - "city": "Foxborough", - "state": "MA", - "latitude": 42.0909, - "longitude": -71.2643, - "capacity": 0, - "sport": "NWSL", - "primary_team_abbrevs": [ - "BOS" - ], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nwsl_centreville_bank_stadium", - "name": "Centreville Bank Stadium", - "city": "Pawtucket", - "state": "RI", - "latitude": 41.877, - "longitude": -71.391, - "capacity": 0, - "sport": "NWSL", - "primary_team_abbrevs": [], - "year_opened": null, - "timezone_identifier": null, - "image_url": null - }, - { - "canonical_id": "stadium_nwsl_empower_field", - "name": "Empower Field at Mile High", - "city": "Denver", + "canonical_id": "stadium_nwsl_centennial_stadium", + "name": "Centennial Stadium", + "city": "Centennial", "state": "CO", - "latitude": 39.7439, - "longitude": -105.0201, + "latitude": 39.6, + "longitude": -104.88, "capacity": 0, "sport": "NWSL", "primary_team_abbrevs": [], "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/Denver", + "image_url": null + }, + { + "canonical_id": "stadium_nwsl_soldier_field", + "name": "Soldier Field", + "city": "Chicago", + "state": "IL", + "latitude": 41.8623, + "longitude": -87.6167, + "capacity": 0, + "sport": "NWSL", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/Chicago", "image_url": null }, { @@ -3370,35 +3024,193 @@ "DEN" ], "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/Denver", "image_url": null }, { - "canonical_id": "stadium_nwsl_centennial_stadium", - "name": "Centennial Stadium", - "city": "Centennial", + "canonical_id": "stadium_nwsl_empower_field", + "name": "Empower Field at Mile High", + "city": "Denver", "state": "CO", - "latitude": 39.6, - "longitude": -104.88, + "latitude": 39.7439, + "longitude": -105.0201, "capacity": 0, "sport": "NWSL", "primary_team_abbrevs": [], "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/Denver", "image_url": null }, { - "canonical_id": "stadium_nwsl_soldier_field", - "name": "Soldier Field", - "city": "Chicago", + "canonical_id": "stadium_nwsl_northwestern_medicine_field", + "name": "Northwestern Medicine Field at Martin Stadium", + "city": "Evanston", "state": "IL", - "latitude": 41.8623, - "longitude": -87.6167, + "latitude": 42.0598, + "longitude": -87.6743, + "capacity": 12023, + "sport": "NWSL", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/Chicago", + "image_url": null + }, + { + "canonical_id": "stadium_nwsl_gillette_stadium", + "name": "Gillette Stadium", + "city": "Foxborough", + "state": "MA", + "latitude": 42.0909, + "longitude": -71.2643, + "capacity": 0, + "sport": "NWSL", + "primary_team_abbrevs": [ + "BOS" + ], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_nwsl_red_bull_arena", + "name": "Red Bull Arena", + "city": "Harrison", + "state": "NJ", + "latitude": 40.7369, + "longitude": -74.1503, + "capacity": 0, + "sport": "NWSL", + "primary_team_abbrevs": [ + "NJY" + ], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_nwsl_shell_energy_stadium", + "name": "Shell Energy Stadium", + "city": "Houston", + "state": "TX", + "latitude": 29.7522, + "longitude": -95.3527, + "capacity": 22039, + "sport": "NWSL", + "primary_team_abbrevs": [ + "HOU" + ], + "year_opened": null, + "timezone_identifier": "America/Chicago", + "image_url": null + }, + { + "canonical_id": "stadium_nwsl_cpkc_stadium", + "name": "CPKC Stadium", + "city": "Kansas City", + "state": "MO", + "latitude": 39.105, + "longitude": -94.558, + "capacity": 11500, + "sport": "NWSL", + "primary_team_abbrevs": [ + "KCC" + ], + "year_opened": null, + "timezone_identifier": "America/Chicago", + "image_url": null + }, + { + "canonical_id": "stadium_nwsl_bmo_stadium", + "name": "BMO Stadium", + "city": "Los Angeles", + "state": "CA", + "latitude": 34.0128, + "longitude": -118.2841, + "capacity": 22000, + "sport": "NWSL", + "primary_team_abbrevs": [ + "ANG" + ], + "year_opened": null, + "timezone_identifier": "America/Los_Angeles", + "image_url": null + }, + { + "canonical_id": "stadium_nwsl_lynn_family_stadium", + "name": "Lynn Family Stadium", + "city": "Louisville", + "state": "KY", + "latitude": 38.2219, + "longitude": -85.7381, + "capacity": 15304, + "sport": "NWSL", + "primary_team_abbrevs": [ + "RGN" + ], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_nwsl_interco_stadium", + "name": "Inter&Co Stadium", + "city": "Orlando", + "state": "FL", + "latitude": 28.5411, + "longitude": -81.3895, + "capacity": 25500, + "sport": "NWSL", + "primary_team_abbrevs": [ + "ORL" + ], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_nwsl_centreville_bank_stadium", + "name": "Centreville Bank Stadium", + "city": "Pawtucket", + "state": "RI", + "latitude": 41.877, + "longitude": -71.391, "capacity": 0, "sport": "NWSL", "primary_team_abbrevs": [], "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_nwsl_providence_park", + "name": "Providence Park", + "city": "Portland", + "state": "OR", + "latitude": 45.5216, + "longitude": -122.6917, + "capacity": 25218, + "sport": "NWSL", + "primary_team_abbrevs": [ + "POR" + ], + "year_opened": null, + "timezone_identifier": "America/Los_Angeles", + "image_url": null + }, + { + "canonical_id": "stadium_nwsl_snapdragon_stadium", + "name": "Snapdragon Stadium", + "city": "San Diego", + "state": "CA", + "latitude": 32.7837, + "longitude": -117.1225, + "capacity": 35000, + "sport": "NWSL", + "primary_team_abbrevs": [ + "SDW" + ], + "year_opened": null, + "timezone_identifier": "America/Los_Angeles", "image_url": null }, { @@ -3412,7 +3224,349 @@ "sport": "NWSL", "primary_team_abbrevs": [], "year_opened": null, - "timezone_identifier": null, + "timezone_identifier": "America/Los_Angeles", + "image_url": null + }, + { + "canonical_id": "stadium_nwsl_paypal_park", + "name": "PayPal Park", + "city": "San Jose", + "state": "CA", + "latitude": 37.3511, + "longitude": -121.925, + "capacity": 18000, + "sport": "NWSL", + "primary_team_abbrevs": [ + "BAY" + ], + "year_opened": null, + "timezone_identifier": "America/Los_Angeles", + "image_url": null + }, + { + "canonical_id": "stadium_nwsl_america_first_field", + "name": "America First Field", + "city": "Sandy", + "state": "UT", + "latitude": 40.583, + "longitude": -111.8933, + "capacity": 20213, + "sport": "NWSL", + "primary_team_abbrevs": [ + "UTA" + ], + "year_opened": null, + "timezone_identifier": "America/Denver", + "image_url": null + }, + { + "canonical_id": "stadium_nwsl_lumen_field", + "name": "Lumen Field", + "city": "Seattle", + "state": "WA", + "latitude": 47.5952, + "longitude": -122.3316, + "capacity": 68740, + "sport": "NWSL", + "primary_team_abbrevs": [ + "SEA" + ], + "year_opened": null, + "timezone_identifier": "America/Los_Angeles", + "image_url": null + }, + { + "canonical_id": "stadium_nwsl_one_spokane_stadium", + "name": "ONE Spokane Stadium", + "city": "Spokane", + "state": "WA", + "latitude": 47.6588, + "longitude": -117.4101, + "capacity": 0, + "sport": "NWSL", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/Los_Angeles", + "image_url": null + }, + { + "canonical_id": "stadium_nwsl_audi_field", + "name": "Audi Field", + "city": "Washington", + "state": "DC", + "latitude": 38.8687, + "longitude": -77.0128, + "capacity": 20000, + "sport": "NWSL", + "primary_team_abbrevs": [ + "WSH" + ], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_wnba_college_park_center", + "name": "College Park Center", + "city": "Arlington", + "state": "TX", + "latitude": 32.7304, + "longitude": -97.1077, + "capacity": 7000, + "sport": "WNBA", + "primary_team_abbrevs": [ + "DAL" + ], + "year_opened": null, + "timezone_identifier": "America/Chicago", + "image_url": null + }, + { + "canonical_id": "stadium_wnba_state_farm_arena", + "name": "State Farm Arena", + "city": "Atlanta", + "state": "GA", + "latitude": 33.7573, + "longitude": -84.3963, + "capacity": 0, + "sport": "WNBA", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_wnba_cfg_bank_arena", + "name": "CFG Bank Arena", + "city": "Baltimore", + "state": "MD", + "latitude": 39.2825, + "longitude": -76.622, + "capacity": 0, + "sport": "WNBA", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_wnba_barclays_center", + "name": "Barclays Center", + "city": "Brooklyn", + "state": "NY", + "latitude": 40.6826, + "longitude": -73.9754, + "capacity": 17732, + "sport": "WNBA", + "primary_team_abbrevs": [ + "NY" + ], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_wnba_wintrust_arena", + "name": "Wintrust Arena", + "city": "Chicago", + "state": "IL", + "latitude": 41.8658, + "longitude": -87.6169, + "capacity": 10387, + "sport": "WNBA", + "primary_team_abbrevs": [ + "CHI" + ], + "year_opened": null, + "timezone_identifier": "America/Chicago", + "image_url": null + }, + { + "canonical_id": "stadium_wnba_rocket_mortgage_fieldhouse", + "name": "Rocket Mortgage FieldHouse", + "city": "Cleveland", + "state": "OH", + "latitude": 41.4965, + "longitude": -81.6882, + "capacity": 0, + "sport": "WNBA", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_wnba_gateway_center_arena", + "name": "Gateway Center Arena", + "city": "College Park", + "state": "GA", + "latitude": 33.651, + "longitude": -84.4474, + "capacity": 3500, + "sport": "WNBA", + "primary_team_abbrevs": [ + "ATL" + ], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "name": "Gainbridge Fieldhouse", + "city": "Indianapolis", + "state": "IN", + "latitude": 39.764, + "longitude": -86.1555, + "capacity": 17274, + "sport": "WNBA", + "primary_team_abbrevs": [ + "IND" + ], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_wnba_michelob_ultra_arena", + "name": "Michelob Ultra Arena", + "city": "Las Vegas", + "state": "NV", + "latitude": 36.0902, + "longitude": -115.1756, + "capacity": 12000, + "sport": "WNBA", + "primary_team_abbrevs": [ + "LV" + ], + "year_opened": null, + "timezone_identifier": "America/Los_Angeles", + "image_url": null + }, + { + "canonical_id": "stadium_wnba_cryptocom_arena", + "name": "Crypto.com Arena", + "city": "Los Angeles", + "state": "CA", + "latitude": 34.043, + "longitude": -118.2673, + "capacity": 19079, + "sport": "WNBA", + "primary_team_abbrevs": [ + "LA" + ], + "year_opened": null, + "timezone_identifier": "America/Los_Angeles", + "image_url": null + }, + { + "canonical_id": "stadium_wnba_target_center", + "name": "Target Center", + "city": "Minneapolis", + "state": "MN", + "latitude": 44.9795, + "longitude": -93.2761, + "capacity": 18798, + "sport": "WNBA", + "primary_team_abbrevs": [ + "MIN" + ], + "year_opened": null, + "timezone_identifier": "America/Chicago", + "image_url": null + }, + { + "canonical_id": "stadium_wnba_purcell_pavilion", + "name": "Purcell Pavilion", + "city": "Notre Dame", + "state": "IN", + "latitude": 41.6987, + "longitude": -86.234, + "capacity": 0, + "sport": "WNBA", + "primary_team_abbrevs": [], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_wnba_footprint_center", + "name": "Footprint Center", + "city": "Phoenix", + "state": "AZ", + "latitude": 33.4457, + "longitude": -112.0712, + "capacity": 0, + "sport": "WNBA", + "primary_team_abbrevs": [ + "PHX" + ], + "year_opened": null, + "timezone_identifier": "America/Phoenix", + "image_url": null + }, + { + "canonical_id": "stadium_wnba_chase_center", + "name": "Chase Center", + "city": "San Francisco", + "state": "CA", + "latitude": 37.768, + "longitude": -122.3877, + "capacity": 18064, + "sport": "WNBA", + "primary_team_abbrevs": [ + "GSV" + ], + "year_opened": null, + "timezone_identifier": "America/Los_Angeles", + "image_url": null + }, + { + "canonical_id": "stadium_wnba_climate_pledge_arena", + "name": "Climate Pledge Arena", + "city": "Seattle", + "state": "WA", + "latitude": 47.6221, + "longitude": -122.354, + "capacity": 18300, + "sport": "WNBA", + "primary_team_abbrevs": [ + "SEA" + ], + "year_opened": null, + "timezone_identifier": "America/Los_Angeles", + "image_url": null + }, + { + "canonical_id": "stadium_wnba_mohegan_sun_arena", + "name": "Mohegan Sun Arena", + "city": "Uncasville", + "state": "CT", + "latitude": 41.4931, + "longitude": -72.0912, + "capacity": 9323, + "sport": "WNBA", + "primary_team_abbrevs": [ + "CON" + ], + "year_opened": null, + "timezone_identifier": "America/New_York", + "image_url": null + }, + { + "canonical_id": "stadium_wnba_entertainment_sports_arena", + "name": "Entertainment & Sports Arena", + "city": "Washington", + "state": "DC", + "latitude": 38.869, + "longitude": -76.9745, + "capacity": 0, + "sport": "WNBA", + "primary_team_abbrevs": [ + "WAS" + ], + "year_opened": null, + "timezone_identifier": "America/New_York", "image_url": null } ] \ No newline at end of file diff --git a/SportsTime/Resources/team_aliases.json b/SportsTime/Resources/team_aliases.json index 38fe229..280f534 100644 --- a/SportsTime/Resources/team_aliases.json +++ b/SportsTime/Resources/team_aliases.json @@ -1,27 +1,83 @@ [ { - "id": "alias_mlb_1", - "team_canonical_id": "team_mlb_wsn", + "id": "alias_mlb_10", + "team_canonical_id": "team_mlb_cle", "alias_type": "name", - "alias_value": "Montreal Expos", - "valid_from": "1969-01-01", + "alias_value": "Cleveland Indians", + "valid_from": "1915-01-01", + "valid_until": "2021-12-31" + }, + { + "id": "alias_mlb_23", + "team_canonical_id": "team_mlb_hou", + "alias_type": "name", + "alias_value": "Houston Colt .45s", + "valid_from": "1962-01-01", + "valid_until": "1964-12-31" + }, + { + "id": "alias_mlb_14", + "team_canonical_id": "team_mlb_laa", + "alias_type": "name", + "alias_value": "Anaheim Angels", + "valid_from": "1997-01-01", "valid_until": "2004-12-31" }, { - "id": "alias_mlb_2", - "team_canonical_id": "team_mlb_wsn", - "alias_type": "abbreviation", - "alias_value": "MON", - "valid_from": "1969-01-01", - "valid_until": "2004-12-31" + "id": "alias_mlb_15", + "team_canonical_id": "team_mlb_laa", + "alias_type": "name", + "alias_value": "Los Angeles Angels of Anaheim", + "valid_from": "2005-01-01", + "valid_until": "2015-12-31" }, { - "id": "alias_mlb_3", - "team_canonical_id": "team_mlb_wsn", + "id": "alias_mlb_16", + "team_canonical_id": "team_mlb_laa", + "alias_type": "name", + "alias_value": "California Angels", + "valid_from": "1965-01-01", + "valid_until": "1996-12-31" + }, + { + "id": "alias_mlb_12", + "team_canonical_id": "team_mlb_mia", + "alias_type": "name", + "alias_value": "Florida Marlins", + "valid_from": "1993-01-01", + "valid_until": "2011-12-31" + }, + { + "id": "alias_mlb_13", + "team_canonical_id": "team_mlb_mia", "alias_type": "city", - "alias_value": "Montreal", + "alias_value": "Florida", + "valid_from": "1993-01-01", + "valid_until": "2011-12-31" + }, + { + "id": "alias_mlb_20", + "team_canonical_id": "team_mlb_mil", + "alias_type": "name", + "alias_value": "Seattle Pilots", "valid_from": "1969-01-01", - "valid_until": "2004-12-31" + "valid_until": "1969-12-31" + }, + { + "id": "alias_mlb_21", + "team_canonical_id": "team_mlb_mil", + "alias_type": "abbreviation", + "alias_value": "SEP", + "valid_from": "1969-01-01", + "valid_until": "1969-12-31" + }, + { + "id": "alias_mlb_22", + "team_canonical_id": "team_mlb_mil", + "alias_type": "city", + "alias_value": "Seattle", + "valid_from": "1969-01-01", + "valid_until": "1969-12-31" }, { "id": "alias_mlb_4", @@ -71,14 +127,6 @@ "valid_from": "1901-01-01", "valid_until": "1954-12-31" }, - { - "id": "alias_mlb_10", - "team_canonical_id": "team_mlb_cle", - "alias_type": "name", - "alias_value": "Cleveland Indians", - "valid_from": "1915-01-01", - "valid_until": "2021-12-31" - }, { "id": "alias_mlb_11", "team_canonical_id": "team_mlb_tbr", @@ -87,46 +135,6 @@ "valid_from": "1998-01-01", "valid_until": "2007-12-31" }, - { - "id": "alias_mlb_12", - "team_canonical_id": "team_mlb_mia", - "alias_type": "name", - "alias_value": "Florida Marlins", - "valid_from": "1993-01-01", - "valid_until": "2011-12-31" - }, - { - "id": "alias_mlb_13", - "team_canonical_id": "team_mlb_mia", - "alias_type": "city", - "alias_value": "Florida", - "valid_from": "1993-01-01", - "valid_until": "2011-12-31" - }, - { - "id": "alias_mlb_14", - "team_canonical_id": "team_mlb_laa", - "alias_type": "name", - "alias_value": "Anaheim Angels", - "valid_from": "1997-01-01", - "valid_until": "2004-12-31" - }, - { - "id": "alias_mlb_15", - "team_canonical_id": "team_mlb_laa", - "alias_type": "name", - "alias_value": "Los Angeles Angels of Anaheim", - "valid_from": "2005-01-01", - "valid_until": "2015-12-31" - }, - { - "id": "alias_mlb_16", - "team_canonical_id": "team_mlb_laa", - "alias_type": "name", - "alias_value": "California Angels", - "valid_from": "1965-01-01", - "valid_until": "1996-12-31" - }, { "id": "alias_mlb_17", "team_canonical_id": "team_mlb_tex", @@ -152,36 +160,28 @@ "valid_until": "1971-12-31" }, { - "id": "alias_mlb_20", - "team_canonical_id": "team_mlb_mil", + "id": "alias_mlb_1", + "team_canonical_id": "team_mlb_wsn", "alias_type": "name", - "alias_value": "Seattle Pilots", + "alias_value": "Montreal Expos", "valid_from": "1969-01-01", - "valid_until": "1969-12-31" + "valid_until": "2004-12-31" }, { - "id": "alias_mlb_21", - "team_canonical_id": "team_mlb_mil", + "id": "alias_mlb_2", + "team_canonical_id": "team_mlb_wsn", "alias_type": "abbreviation", - "alias_value": "SEP", + "alias_value": "MON", "valid_from": "1969-01-01", - "valid_until": "1969-12-31" + "valid_until": "2004-12-31" }, { - "id": "alias_mlb_22", - "team_canonical_id": "team_mlb_mil", + "id": "alias_mlb_3", + "team_canonical_id": "team_mlb_wsn", "alias_type": "city", - "alias_value": "Seattle", + "alias_value": "Montreal", "valid_from": "1969-01-01", - "valid_until": "1969-12-31" - }, - { - "id": "alias_mlb_23", - "team_canonical_id": "team_mlb_hou", - "alias_type": "name", - "alias_value": "Houston Colt .45s", - "valid_from": "1962-01-01", - "valid_until": "1964-12-31" + "valid_until": "2004-12-31" }, { "id": "alias_nba_24", @@ -215,78 +215,6 @@ "valid_from": "1968-01-01", "valid_until": "1977-12-31" }, - { - "id": "alias_nba_28", - "team_canonical_id": "team_nba_okc", - "alias_type": "name", - "alias_value": "Seattle SuperSonics", - "valid_from": "1967-01-01", - "valid_until": "2008-07-01" - }, - { - "id": "alias_nba_29", - "team_canonical_id": "team_nba_okc", - "alias_type": "abbreviation", - "alias_value": "SEA", - "valid_from": "1967-01-01", - "valid_until": "2008-07-01" - }, - { - "id": "alias_nba_30", - "team_canonical_id": "team_nba_okc", - "alias_type": "city", - "alias_value": "Seattle", - "valid_from": "1967-01-01", - "valid_until": "2008-07-01" - }, - { - "id": "alias_nba_31", - "team_canonical_id": "team_nba_mem", - "alias_type": "name", - "alias_value": "Vancouver Grizzlies", - "valid_from": "1995-01-01", - "valid_until": "2001-05-31" - }, - { - "id": "alias_nba_32", - "team_canonical_id": "team_nba_mem", - "alias_type": "abbreviation", - "alias_value": "VAN", - "valid_from": "1995-01-01", - "valid_until": "2001-05-31" - }, - { - "id": "alias_nba_33", - "team_canonical_id": "team_nba_mem", - "alias_type": "city", - "alias_value": "Vancouver", - "valid_from": "1995-01-01", - "valid_until": "2001-05-31" - }, - { - "id": "alias_nba_34", - "team_canonical_id": "team_nba_nop", - "alias_type": "name", - "alias_value": "New Orleans Hornets", - "valid_from": "2002-01-01", - "valid_until": "2013-04-30" - }, - { - "id": "alias_nba_35", - "team_canonical_id": "team_nba_nop", - "alias_type": "abbreviation", - "alias_value": "NOH", - "valid_from": "2002-01-01", - "valid_until": "2013-04-30" - }, - { - "id": "alias_nba_36", - "team_canonical_id": "team_nba_nop", - "alias_type": "name", - "alias_value": "New Orleans/Oklahoma City Hornets", - "valid_from": "2005-01-01", - "valid_until": "2007-12-31" - }, { "id": "alias_nba_37", "team_canonical_id": "team_nba_cho", @@ -303,30 +231,6 @@ "valid_from": "2004-01-01", "valid_until": "2014-04-30" }, - { - "id": "alias_nba_39", - "team_canonical_id": "team_nba_was", - "alias_type": "name", - "alias_value": "Washington Bullets", - "valid_from": "1974-01-01", - "valid_until": "1997-05-31" - }, - { - "id": "alias_nba_40", - "team_canonical_id": "team_nba_was", - "alias_type": "name", - "alias_value": "Capital Bullets", - "valid_from": "1973-01-01", - "valid_until": "1973-12-31" - }, - { - "id": "alias_nba_41", - "team_canonical_id": "team_nba_was", - "alias_type": "name", - "alias_value": "Baltimore Bullets", - "valid_from": "1963-01-01", - "valid_until": "1972-12-31" - }, { "id": "alias_nba_42", "team_canonical_id": "team_nba_lac", @@ -375,6 +279,78 @@ "valid_from": "1970-01-01", "valid_until": "1978-05-31" }, + { + "id": "alias_nba_31", + "team_canonical_id": "team_nba_mem", + "alias_type": "name", + "alias_value": "Vancouver Grizzlies", + "valid_from": "1995-01-01", + "valid_until": "2001-05-31" + }, + { + "id": "alias_nba_32", + "team_canonical_id": "team_nba_mem", + "alias_type": "abbreviation", + "alias_value": "VAN", + "valid_from": "1995-01-01", + "valid_until": "2001-05-31" + }, + { + "id": "alias_nba_33", + "team_canonical_id": "team_nba_mem", + "alias_type": "city", + "alias_value": "Vancouver", + "valid_from": "1995-01-01", + "valid_until": "2001-05-31" + }, + { + "id": "alias_nba_34", + "team_canonical_id": "team_nba_nop", + "alias_type": "name", + "alias_value": "New Orleans Hornets", + "valid_from": "2002-01-01", + "valid_until": "2013-04-30" + }, + { + "id": "alias_nba_35", + "team_canonical_id": "team_nba_nop", + "alias_type": "abbreviation", + "alias_value": "NOH", + "valid_from": "2002-01-01", + "valid_until": "2013-04-30" + }, + { + "id": "alias_nba_36", + "team_canonical_id": "team_nba_nop", + "alias_type": "name", + "alias_value": "New Orleans/Oklahoma City Hornets", + "valid_from": "2005-01-01", + "valid_until": "2007-12-31" + }, + { + "id": "alias_nba_28", + "team_canonical_id": "team_nba_okc", + "alias_type": "name", + "alias_value": "Seattle SuperSonics", + "valid_from": "1967-01-01", + "valid_until": "2008-07-01" + }, + { + "id": "alias_nba_29", + "team_canonical_id": "team_nba_okc", + "alias_type": "abbreviation", + "alias_value": "SEA", + "valid_from": "1967-01-01", + "valid_until": "2008-07-01" + }, + { + "id": "alias_nba_30", + "team_canonical_id": "team_nba_okc", + "alias_type": "city", + "alias_value": "Seattle", + "valid_from": "1967-01-01", + "valid_until": "2008-07-01" + }, { "id": "alias_nba_48", "team_canonical_id": "team_nba_sac", @@ -415,6 +391,54 @@ "valid_from": "1974-01-01", "valid_until": "1979-05-31" }, + { + "id": "alias_nba_39", + "team_canonical_id": "team_nba_was", + "alias_type": "name", + "alias_value": "Washington Bullets", + "valid_from": "1974-01-01", + "valid_until": "1997-05-31" + }, + { + "id": "alias_nba_40", + "team_canonical_id": "team_nba_was", + "alias_type": "name", + "alias_value": "Capital Bullets", + "valid_from": "1973-01-01", + "valid_until": "1973-12-31" + }, + { + "id": "alias_nba_41", + "team_canonical_id": "team_nba_was", + "alias_type": "name", + "alias_value": "Baltimore Bullets", + "valid_from": "1963-01-01", + "valid_until": "1972-12-31" + }, + { + "id": "alias_nfl_77", + "team_canonical_id": "team_nfl_was", + "alias_type": "name", + "alias_value": "Washington Redskins", + "valid_from": "1937-01-01", + "valid_until": "2020-07-13" + }, + { + "id": "alias_nfl_78", + "team_canonical_id": "team_nfl_was", + "alias_type": "name", + "alias_value": "Washington Football Team", + "valid_from": "2020-07-13", + "valid_until": "2022-02-02" + }, + { + "id": "alias_nfl_79", + "team_canonical_id": "team_nfl_was", + "alias_type": "abbreviation", + "alias_value": "WFT", + "valid_from": "2020-07-13", + "valid_until": "2022-02-02" + }, { "id": "alias_nhl_53", "team_canonical_id": "team_nhl_ari", @@ -527,6 +551,14 @@ "valid_from": "1967-01-01", "valid_until": "1993-05-31" }, + { + "id": "alias_nhl_76", + "team_canonical_id": "team_nhl_fla", + "alias_type": "city", + "alias_value": "Miami", + "valid_from": "1993-01-01", + "valid_until": "1998-12-31" + }, { "id": "alias_nhl_67", "team_canonical_id": "team_nhl_njd", @@ -598,37 +630,5 @@ "alias_value": "Atlanta", "valid_from": "1999-01-01", "valid_until": "2011-05-31" - }, - { - "id": "alias_nhl_76", - "team_canonical_id": "team_nhl_fla", - "alias_type": "city", - "alias_value": "Miami", - "valid_from": "1993-01-01", - "valid_until": "1998-12-31" - }, - { - "id": "alias_nfl_77", - "team_canonical_id": "team_nfl_was", - "alias_type": "name", - "alias_value": "Washington Redskins", - "valid_from": "1937-01-01", - "valid_until": "2020-07-13" - }, - { - "id": "alias_nfl_78", - "team_canonical_id": "team_nfl_was", - "alias_type": "name", - "alias_value": "Washington Football Team", - "valid_from": "2020-07-13", - "valid_until": "2022-02-02" - }, - { - "id": "alias_nfl_79", - "team_canonical_id": "team_nfl_was", - "alias_type": "abbreviation", - "alias_value": "WFT", - "valid_from": "2020-07-13", - "valid_until": "2022-02-02" } ] \ No newline at end of file diff --git a/SportsTime/Resources/teams_canonical.json b/SportsTime/Resources/teams_canonical.json index a3290e4..1fb153a 100644 --- a/SportsTime/Resources/teams_canonical.json +++ b/SportsTime/Resources/teams_canonical.json @@ -1,4 +1,724 @@ [ + { + "canonical_id": "team_mlb_ari", + "name": "Diamondbacks", + "abbreviation": "ARI", + "sport": "MLB", + "city": "Arizona", + "stadium_canonical_id": "stadium_mlb_chase_field", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_west", + "primary_color": "#aa182c", + "secondary_color": "#000000" + }, + { + "canonical_id": "team_mlb_atl", + "name": "Braves", + "abbreviation": "ATL", + "sport": "MLB", + "city": "Atlanta", + "stadium_canonical_id": "stadium_mlb_truist_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_east", + "primary_color": "#0c2340", + "secondary_color": "#ba0c2f" + }, + { + "canonical_id": "team_mlb_bal", + "name": "Orioles", + "abbreviation": "BAL", + "sport": "MLB", + "city": "Baltimore", + "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", + "conference_id": "mlb_al", + "division_id": "mlb_al_east", + "primary_color": "#df4601", + "secondary_color": "#000000" + }, + { + "canonical_id": "team_mlb_bos", + "name": "Red Sox", + "abbreviation": "BOS", + "sport": "MLB", + "city": "Boston", + "stadium_canonical_id": "stadium_mlb_fenway_park", + "conference_id": "mlb_al", + "division_id": "mlb_al_east", + "primary_color": "#0d2b56", + "secondary_color": "#bd3039" + }, + { + "canonical_id": "team_mlb_chc", + "name": "Cubs", + "abbreviation": "CHC", + "sport": "MLB", + "city": "Chicago", + "stadium_canonical_id": "stadium_mlb_wrigley_field", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_central", + "primary_color": "#0e3386", + "secondary_color": "#cc3433" + }, + { + "canonical_id": "team_mlb_chw", + "name": "White Sox", + "abbreviation": "CHW", + "sport": "MLB", + "city": "Chicago", + "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", + "conference_id": "mlb_al", + "division_id": "mlb_al_central", + "primary_color": "#000000", + "secondary_color": "#c4ced4" + }, + { + "canonical_id": "team_mlb_cin", + "name": "Reds", + "abbreviation": "CIN", + "sport": "MLB", + "city": "Cincinnati", + "stadium_canonical_id": "stadium_mlb_great_american_ball_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_central", + "primary_color": "#c6011f", + "secondary_color": "#ffffff" + }, + { + "canonical_id": "team_mlb_cle", + "name": "Guardians", + "abbreviation": "CLE", + "sport": "MLB", + "city": "Cleveland", + "stadium_canonical_id": "stadium_mlb_progressive_field", + "conference_id": "mlb_al", + "division_id": "mlb_al_central", + "primary_color": "#002b5c", + "secondary_color": "#e31937" + }, + { + "canonical_id": "team_mlb_col", + "name": "Rockies", + "abbreviation": "COL", + "sport": "MLB", + "city": "Colorado", + "stadium_canonical_id": "stadium_mlb_coors_field", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_west", + "primary_color": "#33006f", + "secondary_color": "#000000" + }, + { + "canonical_id": "team_mlb_det", + "name": "Tigers", + "abbreviation": "DET", + "sport": "MLB", + "city": "Detroit", + "stadium_canonical_id": "stadium_mlb_comerica_park", + "conference_id": "mlb_al", + "division_id": "mlb_al_central", + "primary_color": "#0a2240", + "secondary_color": "#ff4713" + }, + { + "canonical_id": "team_mlb_hou", + "name": "Astros", + "abbreviation": "HOU", + "sport": "MLB", + "city": "Houston", + "stadium_canonical_id": "stadium_mlb_minute_maid_park", + "conference_id": "mlb_al", + "division_id": "mlb_al_west", + "primary_color": "#002d62", + "secondary_color": "#eb6e1f" + }, + { + "canonical_id": "team_mlb_kc", + "name": "Royals", + "abbreviation": "KC", + "sport": "MLB", + "city": "Kansas City", + "stadium_canonical_id": "stadium_mlb_kauffman_stadium", + "conference_id": "mlb_al", + "division_id": "mlb_al_central", + "primary_color": "#004687", + "secondary_color": "#7ab2dd" + }, + { + "canonical_id": "team_mlb_laa", + "name": "Angels", + "abbreviation": "LAA", + "sport": "MLB", + "city": "Los Angeles", + "stadium_canonical_id": "stadium_mlb_angel_stadium", + "conference_id": "mlb_al", + "division_id": "mlb_al_west", + "primary_color": "#ba0021", + "secondary_color": "#c4ced4" + }, + { + "canonical_id": "team_mlb_lad", + "name": "Dodgers", + "abbreviation": "LAD", + "sport": "MLB", + "city": "Los Angeles", + "stadium_canonical_id": "stadium_mlb_dodger_stadium", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_west", + "primary_color": "#005a9c", + "secondary_color": "#ffffff" + }, + { + "canonical_id": "team_mlb_mia", + "name": "Marlins", + "abbreviation": "MIA", + "sport": "MLB", + "city": "Miami", + "stadium_canonical_id": "stadium_mlb_loandepot_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_east", + "primary_color": "#00a3e0", + "secondary_color": "#000000" + }, + { + "canonical_id": "team_mlb_mil", + "name": "Brewers", + "abbreviation": "MIL", + "sport": "MLB", + "city": "Milwaukee", + "stadium_canonical_id": "stadium_mlb_american_family_field", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_central", + "primary_color": "#13294b", + "secondary_color": "#ffc72c" + }, + { + "canonical_id": "team_mlb_min", + "name": "Twins", + "abbreviation": "MIN", + "sport": "MLB", + "city": "Minnesota", + "stadium_canonical_id": "stadium_mlb_target_field", + "conference_id": "mlb_al", + "division_id": "mlb_al_central", + "primary_color": "#031f40", + "secondary_color": "#e20e32" + }, + { + "canonical_id": "team_mlb_nym", + "name": "Mets", + "abbreviation": "NYM", + "sport": "MLB", + "city": "New York", + "stadium_canonical_id": "stadium_mlb_citi_field", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_east", + "primary_color": "#002d72", + "secondary_color": "#ff5910" + }, + { + "canonical_id": "team_mlb_nyy", + "name": "Yankees", + "abbreviation": "NYY", + "sport": "MLB", + "city": "New York", + "stadium_canonical_id": "stadium_mlb_yankee_stadium", + "conference_id": "mlb_al", + "division_id": "mlb_al_east", + "primary_color": "#132448", + "secondary_color": "#c4ced4" + }, + { + "canonical_id": "team_mlb_oak", + "name": "Athletics", + "abbreviation": "OAK", + "sport": "MLB", + "city": "Oakland", + "stadium_canonical_id": "stadium_mlb_sutter_health_park", + "conference_id": "mlb_al", + "division_id": "mlb_al_west", + "primary_color": "#003831", + "secondary_color": "#efb21e" + }, + { + "canonical_id": "team_mlb_phi", + "name": "Phillies", + "abbreviation": "PHI", + "sport": "MLB", + "city": "Philadelphia", + "stadium_canonical_id": "stadium_mlb_citizens_bank_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_east", + "primary_color": "#e81828", + "secondary_color": "#003278" + }, + { + "canonical_id": "team_mlb_pit", + "name": "Pirates", + "abbreviation": "PIT", + "sport": "MLB", + "city": "Pittsburgh", + "stadium_canonical_id": "stadium_mlb_pnc_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_central", + "primary_color": "#000000", + "secondary_color": "#fdb827" + }, + { + "canonical_id": "team_mlb_sd", + "name": "Padres", + "abbreviation": "SD", + "sport": "MLB", + "city": "San Diego", + "stadium_canonical_id": "stadium_mlb_petco_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_west", + "primary_color": "#2f241d", + "secondary_color": "#ffc425" + }, + { + "canonical_id": "team_mlb_sf", + "name": "Giants", + "abbreviation": "SF", + "sport": "MLB", + "city": "San Francisco", + "stadium_canonical_id": "stadium_mlb_oracle_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_west", + "primary_color": "#000000", + "secondary_color": "#fd5a1e" + }, + { + "canonical_id": "team_mlb_sea", + "name": "Mariners", + "abbreviation": "SEA", + "sport": "MLB", + "city": "Seattle", + "stadium_canonical_id": "stadium_mlb_tmobile_park", + "conference_id": "mlb_al", + "division_id": "mlb_al_west", + "primary_color": "#005c5c", + "secondary_color": "#0c2c56" + }, + { + "canonical_id": "team_mlb_stl", + "name": "Cardinals", + "abbreviation": "STL", + "sport": "MLB", + "city": "St. Louis", + "stadium_canonical_id": "stadium_mlb_busch_stadium", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_central", + "primary_color": "#be0a14", + "secondary_color": "#001541" + }, + { + "canonical_id": "team_mlb_tbr", + "name": "Rays", + "abbreviation": "TB", + "sport": "MLB", + "city": "Tampa Bay", + "stadium_canonical_id": "stadium_mlb_tropicana_field", + "conference_id": "mlb_al", + "division_id": "mlb_al_east", + "primary_color": "#092c5c", + "secondary_color": "#8fbce6" + }, + { + "canonical_id": "team_mlb_tex", + "name": "Rangers", + "abbreviation": "TEX", + "sport": "MLB", + "city": "Texas", + "stadium_canonical_id": "stadium_mlb_globe_life_field", + "conference_id": "mlb_al", + "division_id": "mlb_al_west", + "primary_color": "#003278", + "secondary_color": "#c0111f" + }, + { + "canonical_id": "team_mlb_tor", + "name": "Blue Jays", + "abbreviation": "TOR", + "sport": "MLB", + "city": "Toronto", + "stadium_canonical_id": "stadium_mlb_rogers_centre", + "conference_id": "mlb_al", + "division_id": "mlb_al_east", + "primary_color": "#134a8e", + "secondary_color": "#6cace5" + }, + { + "canonical_id": "team_mlb_wsn", + "name": "Nationals", + "abbreviation": "WSN", + "sport": "MLB", + "city": "Washington", + "stadium_canonical_id": "stadium_mlb_nationals_park", + "conference_id": "mlb_nl", + "division_id": "mlb_nl_east", + "primary_color": "#ab0003", + "secondary_color": "#11225b" + }, + { + "canonical_id": "team_mls_atl", + "name": "Atlanta United", + "abbreviation": "ATL", + "sport": "MLS", + "city": "Atlanta", + "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", + "conference_id": "mls_eastern", + "division_id": "", + "primary_color": "#9d2235", + "secondary_color": "#aa9767" + }, + { + "canonical_id": "team_mls_aus", + "name": "Austin FC", + "abbreviation": "AUS", + "sport": "MLS", + "city": "Austin", + "stadium_canonical_id": "stadium_mls_q2_stadium", + "conference_id": "mls_western", + "division_id": "", + "primary_color": "#00b140", + "secondary_color": "#000000" + }, + { + "canonical_id": "team_mls_clt", + "name": "Charlotte FC", + "abbreviation": "CLT", + "sport": "MLS", + "city": "Charlotte", + "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", + "conference_id": "mls_eastern", + "division_id": "", + "primary_color": "#0085ca", + "secondary_color": "#000000" + }, + { + "canonical_id": "team_mls_chi", + "name": "Chicago Fire", + "abbreviation": "CHI", + "sport": "MLS", + "city": "Chicago", + "stadium_canonical_id": "stadium_mls_soldier_field", + "conference_id": "mls_eastern", + "division_id": "", + "primary_color": "#7ccdef", + "secondary_color": "#ff0000" + }, + { + "canonical_id": "team_mls_cin", + "name": "FC Cincinnati", + "abbreviation": "CIN", + "sport": "MLS", + "city": "Cincinnati", + "stadium_canonical_id": "stadium_mls_tql_stadium", + "conference_id": "mls_eastern", + "division_id": "", + "primary_color": "#003087", + "secondary_color": "#fe5000" + }, + { + "canonical_id": "team_mls_col", + "name": "Colorado Rapids", + "abbreviation": "COL", + "sport": "MLS", + "city": "Colorado", + "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", + "conference_id": "mls_western", + "division_id": "", + "primary_color": "#8a2432", + "secondary_color": "#8ab7e9" + }, + { + "canonical_id": "team_mls_clb", + "name": "Columbus Crew", + "abbreviation": "CLB", + "sport": "MLS", + "city": "Columbus", + "stadium_canonical_id": "stadium_mls_lowercom_field", + "conference_id": "mls_eastern", + "division_id": "", + "primary_color": "#000000", + "secondary_color": "#fedd00" + }, + { + "canonical_id": "team_mls_dal", + "name": "FC Dallas", + "abbreviation": "DAL", + "sport": "MLS", + "city": "Dallas", + "stadium_canonical_id": "stadium_mls_toyota_stadium", + "conference_id": "mls_western", + "division_id": "", + "primary_color": "#c6093b", + "secondary_color": "#001f5b" + }, + { + "canonical_id": "team_mls_hou", + "name": "Houston Dynamo", + "abbreviation": "HOU", + "sport": "MLS", + "city": "Houston", + "stadium_canonical_id": "stadium_mls_shell_energy_stadium", + "conference_id": "mls_western", + "division_id": "", + "primary_color": "#ff6b00", + "secondary_color": "#101820" + }, + { + "canonical_id": "team_mls_skc", + "name": "Sporting Kansas City", + "abbreviation": "SKC", + "sport": "MLS", + "city": "Kansas City", + "stadium_canonical_id": "stadium_mls_childrens_mercy_park", + "conference_id": "mls_western", + "division_id": "", + "primary_color": "#a7c6ed", + "secondary_color": "#0a2240" + }, + { + "canonical_id": "team_mls_lag", + "name": "LA Galaxy", + "abbreviation": "LAG", + "sport": "MLS", + "city": "Los Angeles", + "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", + "conference_id": "mls_western", + "division_id": "", + "primary_color": "#00235d", + "secondary_color": "#ffffff" + }, + { + "canonical_id": "team_mls_lafc", + "name": "Los Angeles FC", + "abbreviation": "LAFC", + "sport": "MLS", + "city": "Los Angeles", + "stadium_canonical_id": "stadium_mls_bmo_stadium", + "conference_id": "mls_western", + "division_id": "", + "primary_color": "#000000", + "secondary_color": "#c7a36f" + }, + { + "canonical_id": "team_mls_mia", + "name": "Inter Miami", + "abbreviation": "MIA", + "sport": "MLS", + "city": "Miami", + "stadium_canonical_id": "stadium_mls_chase_stadium", + "conference_id": "mls_eastern", + "division_id": "", + "primary_color": "#231f20", + "secondary_color": "#f7b5cd" + }, + { + "canonical_id": "team_mls_min", + "name": "Minnesota United", + "abbreviation": "MIN", + "sport": "MLS", + "city": "Minnesota", + "stadium_canonical_id": "stadium_mls_allianz_field", + "conference_id": "mls_western", + "division_id": "", + "primary_color": "#000000", + "secondary_color": "#9bcde4" + }, + { + "canonical_id": "team_mls_mtl", + "name": "CF Montreal", + "abbreviation": "MTL", + "sport": "MLS", + "city": "Montreal", + "stadium_canonical_id": "stadium_mls_stade_saputo", + "conference_id": "mls_eastern", + "division_id": "", + "primary_color": "#003da6", + "secondary_color": "#c1c5c8" + }, + { + "canonical_id": "team_mls_nsh", + "name": "Nashville SC", + "abbreviation": "NSH", + "sport": "MLS", + "city": "Nashville", + "stadium_canonical_id": "stadium_mls_geodis_park", + "conference_id": "mls_western", + "division_id": "", + "primary_color": "#ece83a", + "secondary_color": "#1f1646" + }, + { + "canonical_id": "team_mls_ne", + "name": "New England Revolution", + "abbreviation": "NE", + "sport": "MLS", + "city": "New England", + "stadium_canonical_id": "stadium_mls_gillette_stadium", + "conference_id": "mls_eastern", + "division_id": "", + "primary_color": "#022166", + "secondary_color": "#ce0e2d" + }, + { + "canonical_id": "team_mls_nyc", + "name": "New York City FC", + "abbreviation": "NYC", + "sport": "MLS", + "city": "New York", + "stadium_canonical_id": "stadium_mls_yankee_stadium", + "conference_id": "mls_eastern", + "division_id": "", + "primary_color": "#9fd2ff", + "secondary_color": "#000229" + }, + { + "canonical_id": "team_mls_ny", + "name": "New York Red Bulls", + "abbreviation": "RB", + "sport": "MLS", + "city": "New York", + "stadium_canonical_id": "stadium_mls_red_bull_arena", + "conference_id": "mls_eastern", + "division_id": "", + "primary_color": "#ba0c2f", + "secondary_color": "#ffc72c" + }, + { + "canonical_id": "team_mls_orl", + "name": "Orlando City", + "abbreviation": "ORL", + "sport": "MLS", + "city": "Orlando", + "stadium_canonical_id": "stadium_mls_interco_stadium", + "conference_id": "mls_eastern", + "division_id": "", + "primary_color": "#60269e", + "secondary_color": "#f0d283" + }, + { + "canonical_id": "team_mls_phi", + "name": "Philadelphia Union", + "abbreviation": "PHI", + "sport": "MLS", + "city": "Philadelphia", + "stadium_canonical_id": "stadium_mls_subaru_park", + "conference_id": "mls_eastern", + "division_id": "", + "primary_color": "#051f31", + "secondary_color": "#e0d0a6" + }, + { + "canonical_id": "team_mls_por", + "name": "Portland Timbers", + "abbreviation": "POR", + "sport": "MLS", + "city": "Portland", + "stadium_canonical_id": "stadium_mls_providence_park", + "conference_id": "mls_western", + "division_id": "", + "primary_color": "#2c5234", + "secondary_color": "#c99700" + }, + { + "canonical_id": "team_mls_slc", + "name": "Real Salt Lake", + "abbreviation": "SLC", + "sport": "MLS", + "city": "Salt Lake", + "stadium_canonical_id": "stadium_mls_america_first_field", + "conference_id": "mls_western", + "division_id": "", + "primary_color": "#a32035", + "secondary_color": "#daa900" + }, + { + "canonical_id": "team_mls_sd", + "name": "San Diego FC", + "abbreviation": "SD", + "sport": "MLS", + "city": "San Diego", + "stadium_canonical_id": "stadium_mls_snapdragon_stadium", + "conference_id": "mls_western", + "division_id": "", + "primary_color": "#697a7C", + "secondary_color": "#F89E1A" + }, + { + "canonical_id": "team_mls_sj", + "name": "San Jose Earthquakes", + "abbreviation": "SJ", + "sport": "MLS", + "city": "San Jose", + "stadium_canonical_id": "stadium_mls_paypal_park", + "conference_id": "mls_western", + "division_id": "", + "primary_color": "#003da6", + "secondary_color": "#ffffff" + }, + { + "canonical_id": "team_mls_sea", + "name": "Seattle Sounders", + "abbreviation": "SEA", + "sport": "MLS", + "city": "Seattle", + "stadium_canonical_id": "stadium_mls_lumen_field", + "conference_id": "mls_western", + "division_id": "", + "primary_color": "#2dc84d", + "secondary_color": "#0033a0" + }, + { + "canonical_id": "team_mls_stl", + "name": "St. Louis City SC", + "abbreviation": "STL", + "sport": "MLS", + "city": "St. Louis", + "stadium_canonical_id": "stadium_mls_citypark", + "conference_id": "mls_western", + "division_id": "", + "primary_color": "#ec1458", + "secondary_color": "#001544" + }, + { + "canonical_id": "team_mls_tor", + "name": "Toronto FC", + "abbreviation": "TOR", + "sport": "MLS", + "city": "Toronto", + "stadium_canonical_id": "stadium_mls_bmo_field", + "conference_id": "mls_eastern", + "division_id": "", + "primary_color": "#aa182c", + "secondary_color": "#a2a9ad" + }, + { + "canonical_id": "team_mls_van", + "name": "Vancouver Whitecaps", + "abbreviation": "VAN", + "sport": "MLS", + "city": "Vancouver", + "stadium_canonical_id": "stadium_mls_bc_place", + "conference_id": "mls_western", + "division_id": "", + "primary_color": "#ffffff", + "secondary_color": "#12284c" + }, + { + "canonical_id": "team_mls_dc", + "name": "D.C. United", + "abbreviation": "DC", + "sport": "MLS", + "city": "Washington", + "stadium_canonical_id": "stadium_mls_audi_field", + "conference_id": "mls_eastern", + "division_id": "", + "primary_color": "#000000", + "secondary_color": "#d61018" + }, { "canonical_id": "team_nba_atl", "name": "Hawks", @@ -8,8 +728,8 @@ "stadium_canonical_id": "stadium_nba_state_farm_arena", "conference_id": "nba_eastern", "division_id": "nba_southeast", - "primary_color": null, - "secondary_color": null + "primary_color": "#c8102e", + "secondary_color": "#fdb927" }, { "canonical_id": "team_nba_bos", @@ -20,8 +740,8 @@ "stadium_canonical_id": "stadium_nba_td_garden", "conference_id": "nba_eastern", "division_id": "nba_atlantic", - "primary_color": null, - "secondary_color": null + "primary_color": "#008348", + "secondary_color": "#ffffff" }, { "canonical_id": "team_nba_brk", @@ -32,8 +752,8 @@ "stadium_canonical_id": "stadium_nba_barclays_center", "conference_id": "nba_eastern", "division_id": "nba_atlantic", - "primary_color": null, - "secondary_color": null + "primary_color": "#000000", + "secondary_color": "#ffffff" }, { "canonical_id": "team_nba_cho", @@ -44,8 +764,8 @@ "stadium_canonical_id": "stadium_nba_spectrum_center", "conference_id": "nba_eastern", "division_id": "nba_southeast", - "primary_color": null, - "secondary_color": null + "primary_color": "#008ca8", + "secondary_color": "#1d1060" }, { "canonical_id": "team_nba_chi", @@ -56,8 +776,8 @@ "stadium_canonical_id": "stadium_nba_united_center", "conference_id": "nba_eastern", "division_id": "nba_central", - "primary_color": null, - "secondary_color": null + "primary_color": "#ce1141", + "secondary_color": "#000000" }, { "canonical_id": "team_nba_cle", @@ -68,8 +788,8 @@ "stadium_canonical_id": "stadium_nba_rocket_mortgage_fieldhouse", "conference_id": "nba_eastern", "division_id": "nba_central", - "primary_color": null, - "secondary_color": null + "primary_color": "#860038", + "secondary_color": "#bc945c" }, { "canonical_id": "team_nba_dal", @@ -80,8 +800,8 @@ "stadium_canonical_id": "stadium_nba_american_airlines_center", "conference_id": "nba_western", "division_id": "nba_southwest", - "primary_color": null, - "secondary_color": null + "primary_color": "#0064b1", + "secondary_color": "#bbc4ca" }, { "canonical_id": "team_nba_den", @@ -92,8 +812,8 @@ "stadium_canonical_id": "stadium_nba_ball_arena", "conference_id": "nba_western", "division_id": "nba_northwest", - "primary_color": null, - "secondary_color": null + "primary_color": "#0e2240", + "secondary_color": "#fec524" }, { "canonical_id": "team_nba_det", @@ -104,8 +824,8 @@ "stadium_canonical_id": "stadium_nba_little_caesars_arena", "conference_id": "nba_eastern", "division_id": "nba_central", - "primary_color": null, - "secondary_color": null + "primary_color": "#1d428a", + "secondary_color": "#c8102e" }, { "canonical_id": "team_nba_gsw", @@ -116,8 +836,8 @@ "stadium_canonical_id": "stadium_nba_chase_center", "conference_id": "nba_western", "division_id": "nba_pacific", - "primary_color": null, - "secondary_color": null + "primary_color": "#fdb927", + "secondary_color": "#1d428a" }, { "canonical_id": "team_nba_hou", @@ -128,8 +848,8 @@ "stadium_canonical_id": "stadium_nba_toyota_center", "conference_id": "nba_western", "division_id": "nba_southwest", - "primary_color": null, - "secondary_color": null + "primary_color": "#ce1141", + "secondary_color": "#000000" }, { "canonical_id": "team_nba_ind", @@ -140,8 +860,8 @@ "stadium_canonical_id": "stadium_nba_gainbridge_fieldhouse", "conference_id": "nba_eastern", "division_id": "nba_central", - "primary_color": null, - "secondary_color": null + "primary_color": "#0c2340", + "secondary_color": "#ffd520" }, { "canonical_id": "team_nba_lac", @@ -152,8 +872,8 @@ "stadium_canonical_id": "stadium_nba_intuit_dome", "conference_id": "nba_western", "division_id": "nba_pacific", - "primary_color": null, - "secondary_color": null + "primary_color": "#12173f", + "secondary_color": "#c8102e" }, { "canonical_id": "team_nba_lal", @@ -164,8 +884,8 @@ "stadium_canonical_id": "stadium_nba_cryptocom_arena", "conference_id": "nba_western", "division_id": "nba_pacific", - "primary_color": null, - "secondary_color": null + "primary_color": "#552583", + "secondary_color": "#fdb927" }, { "canonical_id": "team_nba_mem", @@ -176,8 +896,8 @@ "stadium_canonical_id": "stadium_nba_fedexforum", "conference_id": "nba_western", "division_id": "nba_southwest", - "primary_color": null, - "secondary_color": null + "primary_color": "#5d76a9", + "secondary_color": "#12173f" }, { "canonical_id": "team_nba_mia", @@ -188,8 +908,8 @@ "stadium_canonical_id": "stadium_nba_kaseya_center", "conference_id": "nba_eastern", "division_id": "nba_southeast", - "primary_color": null, - "secondary_color": null + "primary_color": "#98002e", + "secondary_color": "#000000" }, { "canonical_id": "team_nba_mil", @@ -200,8 +920,8 @@ "stadium_canonical_id": "stadium_nba_fiserv_forum", "conference_id": "nba_eastern", "division_id": "nba_central", - "primary_color": null, - "secondary_color": null + "primary_color": "#00471b", + "secondary_color": "#eee1c6" }, { "canonical_id": "team_nba_min", @@ -212,8 +932,8 @@ "stadium_canonical_id": "stadium_nba_target_center", "conference_id": "nba_western", "division_id": "nba_northwest", - "primary_color": null, - "secondary_color": null + "primary_color": "#266092", + "secondary_color": "#79bc43" }, { "canonical_id": "team_nba_nop", @@ -224,8 +944,8 @@ "stadium_canonical_id": "stadium_nba_smoothie_king_center", "conference_id": "nba_western", "division_id": "nba_southwest", - "primary_color": null, - "secondary_color": null + "primary_color": "#0a2240", + "secondary_color": "#b4975a" }, { "canonical_id": "team_nba_nyk", @@ -236,8 +956,8 @@ "stadium_canonical_id": "stadium_nba_madison_square_garden", "conference_id": "nba_eastern", "division_id": "nba_atlantic", - "primary_color": null, - "secondary_color": null + "primary_color": "#1d428a", + "secondary_color": "#f58426" }, { "canonical_id": "team_nba_okc", @@ -248,8 +968,8 @@ "stadium_canonical_id": "stadium_nba_paycom_center", "conference_id": "nba_western", "division_id": "nba_northwest", - "primary_color": null, - "secondary_color": null + "primary_color": "#007ac1", + "secondary_color": "#ef3b24" }, { "canonical_id": "team_nba_orl", @@ -260,8 +980,8 @@ "stadium_canonical_id": "stadium_nba_kia_center", "conference_id": "nba_eastern", "division_id": "nba_southeast", - "primary_color": null, - "secondary_color": null + "primary_color": "#0150b5", + "secondary_color": "#9ca0a3" }, { "canonical_id": "team_nba_phi", @@ -272,8 +992,8 @@ "stadium_canonical_id": "stadium_nba_wells_fargo_center", "conference_id": "nba_eastern", "division_id": "nba_atlantic", - "primary_color": null, - "secondary_color": null + "primary_color": "#1d428a", + "secondary_color": "#e01234" }, { "canonical_id": "team_nba_phx", @@ -284,8 +1004,8 @@ "stadium_canonical_id": "stadium_nba_footprint_center", "conference_id": "nba_western", "division_id": "nba_pacific", - "primary_color": null, - "secondary_color": null + "primary_color": "#29127a", + "secondary_color": "#e56020" }, { "canonical_id": "team_nba_por", @@ -296,8 +1016,8 @@ "stadium_canonical_id": "stadium_nba_moda_center", "conference_id": "nba_western", "division_id": "nba_northwest", - "primary_color": null, - "secondary_color": null + "primary_color": "#e03a3e", + "secondary_color": "#000000" }, { "canonical_id": "team_nba_sac", @@ -308,8 +1028,8 @@ "stadium_canonical_id": "stadium_nba_golden_1_center", "conference_id": "nba_western", "division_id": "nba_pacific", - "primary_color": null, - "secondary_color": null + "primary_color": "#5a2d81", + "secondary_color": "#6a7a82" }, { "canonical_id": "team_nba_sas", @@ -320,8 +1040,8 @@ "stadium_canonical_id": "stadium_nba_frost_bank_center", "conference_id": "nba_western", "division_id": "nba_southwest", - "primary_color": null, - "secondary_color": null + "primary_color": "#000000", + "secondary_color": "#c4ced4" }, { "canonical_id": "team_nba_tor", @@ -332,8 +1052,8 @@ "stadium_canonical_id": "stadium_nba_scotiabank_arena", "conference_id": "nba_eastern", "division_id": "nba_atlantic", - "primary_color": null, - "secondary_color": null + "primary_color": "#d91244", + "secondary_color": "#000000" }, { "canonical_id": "team_nba_uta", @@ -344,8 +1064,8 @@ "stadium_canonical_id": "stadium_nba_delta_center", "conference_id": "nba_western", "division_id": "nba_northwest", - "primary_color": null, - "secondary_color": null + "primary_color": "#4e008e", + "secondary_color": "#79a3dc" }, { "canonical_id": "team_nba_was", @@ -356,368 +1076,8 @@ "stadium_canonical_id": "stadium_nba_capital_one_arena", "conference_id": "nba_eastern", "division_id": "nba_southeast", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_ari", - "name": "Diamondbacks", - "abbreviation": "ARI", - "sport": "MLB", - "city": "Arizona", - "stadium_canonical_id": "stadium_mlb_chase_field", - "conference_id": "mlb_national", - "division_id": "mlb_nl_west", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_atl", - "name": "Braves", - "abbreviation": "ATL", - "sport": "MLB", - "city": "Atlanta", - "stadium_canonical_id": "stadium_mlb_truist_park", - "conference_id": "mlb_national", - "division_id": "mlb_nl_east", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_bal", - "name": "Orioles", - "abbreviation": "BAL", - "sport": "MLB", - "city": "Baltimore", - "stadium_canonical_id": "stadium_mlb_oriole_park_at_camden_yards", - "conference_id": "mlb_american", - "division_id": "mlb_al_east", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_bos", - "name": "Red Sox", - "abbreviation": "BOS", - "sport": "MLB", - "city": "Boston", - "stadium_canonical_id": "stadium_mlb_fenway_park", - "conference_id": "mlb_american", - "division_id": "mlb_al_east", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_chc", - "name": "Cubs", - "abbreviation": "CHC", - "sport": "MLB", - "city": "Chicago", - "stadium_canonical_id": "stadium_mlb_wrigley_field", - "conference_id": "mlb_national", - "division_id": "mlb_nl_central", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_chw", - "name": "White Sox", - "abbreviation": "CHW", - "sport": "MLB", - "city": "Chicago", - "stadium_canonical_id": "stadium_mlb_guaranteed_rate_field", - "conference_id": "mlb_american", - "division_id": "mlb_al_central", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_cin", - "name": "Reds", - "abbreviation": "CIN", - "sport": "MLB", - "city": "Cincinnati", - "stadium_canonical_id": "stadium_mlb_great_american_ball_park", - "conference_id": "mlb_national", - "division_id": "mlb_nl_central", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_cle", - "name": "Guardians", - "abbreviation": "CLE", - "sport": "MLB", - "city": "Cleveland", - "stadium_canonical_id": "stadium_mlb_progressive_field", - "conference_id": "mlb_american", - "division_id": "mlb_al_central", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_col", - "name": "Rockies", - "abbreviation": "COL", - "sport": "MLB", - "city": "Colorado", - "stadium_canonical_id": "stadium_mlb_coors_field", - "conference_id": "mlb_national", - "division_id": "mlb_nl_west", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_det", - "name": "Tigers", - "abbreviation": "DET", - "sport": "MLB", - "city": "Detroit", - "stadium_canonical_id": "stadium_mlb_comerica_park", - "conference_id": "mlb_american", - "division_id": "mlb_al_central", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_hou", - "name": "Astros", - "abbreviation": "HOU", - "sport": "MLB", - "city": "Houston", - "stadium_canonical_id": "stadium_mlb_minute_maid_park", - "conference_id": "mlb_american", - "division_id": "mlb_al_west", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_kc", - "name": "Royals", - "abbreviation": "KC", - "sport": "MLB", - "city": "Kansas City", - "stadium_canonical_id": "stadium_mlb_kauffman_stadium", - "conference_id": "mlb_american", - "division_id": "mlb_al_central", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_laa", - "name": "Angels", - "abbreviation": "LAA", - "sport": "MLB", - "city": "Los Angeles", - "stadium_canonical_id": "stadium_mlb_angel_stadium", - "conference_id": "mlb_american", - "division_id": "mlb_al_west", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_lad", - "name": "Dodgers", - "abbreviation": "LAD", - "sport": "MLB", - "city": "Los Angeles", - "stadium_canonical_id": "stadium_mlb_dodger_stadium", - "conference_id": "mlb_national", - "division_id": "mlb_nl_west", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_mia", - "name": "Marlins", - "abbreviation": "MIA", - "sport": "MLB", - "city": "Miami", - "stadium_canonical_id": "stadium_mlb_loandepot_park", - "conference_id": "mlb_national", - "division_id": "mlb_nl_east", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_mil", - "name": "Brewers", - "abbreviation": "MIL", - "sport": "MLB", - "city": "Milwaukee", - "stadium_canonical_id": "stadium_mlb_american_family_field", - "conference_id": "mlb_national", - "division_id": "mlb_nl_central", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_min", - "name": "Twins", - "abbreviation": "MIN", - "sport": "MLB", - "city": "Minnesota", - "stadium_canonical_id": "stadium_mlb_target_field", - "conference_id": "mlb_american", - "division_id": "mlb_al_central", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_nym", - "name": "Mets", - "abbreviation": "NYM", - "sport": "MLB", - "city": "New York", - "stadium_canonical_id": "stadium_mlb_citi_field", - "conference_id": "mlb_national", - "division_id": "mlb_nl_east", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_nyy", - "name": "Yankees", - "abbreviation": "NYY", - "sport": "MLB", - "city": "New York", - "stadium_canonical_id": "stadium_mlb_yankee_stadium", - "conference_id": "mlb_american", - "division_id": "mlb_al_east", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_oak", - "name": "Athletics", - "abbreviation": "OAK", - "sport": "MLB", - "city": "Oakland", - "stadium_canonical_id": "stadium_mlb_sutter_health_park", - "conference_id": "mlb_american", - "division_id": "mlb_al_west", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_phi", - "name": "Phillies", - "abbreviation": "PHI", - "sport": "MLB", - "city": "Philadelphia", - "stadium_canonical_id": "stadium_mlb_citizens_bank_park", - "conference_id": "mlb_national", - "division_id": "mlb_nl_east", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_pit", - "name": "Pirates", - "abbreviation": "PIT", - "sport": "MLB", - "city": "Pittsburgh", - "stadium_canonical_id": "stadium_mlb_pnc_park", - "conference_id": "mlb_national", - "division_id": "mlb_nl_central", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_sd", - "name": "Padres", - "abbreviation": "SD", - "sport": "MLB", - "city": "San Diego", - "stadium_canonical_id": "stadium_mlb_petco_park", - "conference_id": "mlb_national", - "division_id": "mlb_nl_west", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_sf", - "name": "Giants", - "abbreviation": "SF", - "sport": "MLB", - "city": "San Francisco", - "stadium_canonical_id": "stadium_mlb_oracle_park", - "conference_id": "mlb_national", - "division_id": "mlb_nl_west", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_sea", - "name": "Mariners", - "abbreviation": "SEA", - "sport": "MLB", - "city": "Seattle", - "stadium_canonical_id": "stadium_mlb_tmobile_park", - "conference_id": "mlb_american", - "division_id": "mlb_al_west", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_stl", - "name": "Cardinals", - "abbreviation": "STL", - "sport": "MLB", - "city": "St. Louis", - "stadium_canonical_id": "stadium_mlb_busch_stadium", - "conference_id": "mlb_national", - "division_id": "mlb_nl_central", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_tbr", - "name": "Rays", - "abbreviation": "TB", - "sport": "MLB", - "city": "Tampa Bay", - "stadium_canonical_id": "stadium_mlb_tropicana_field", - "conference_id": "mlb_american", - "division_id": "mlb_al_east", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_tex", - "name": "Rangers", - "abbreviation": "TEX", - "sport": "MLB", - "city": "Texas", - "stadium_canonical_id": "stadium_mlb_globe_life_field", - "conference_id": "mlb_american", - "division_id": "mlb_al_west", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_tor", - "name": "Blue Jays", - "abbreviation": "TOR", - "sport": "MLB", - "city": "Toronto", - "stadium_canonical_id": "stadium_mlb_rogers_centre", - "conference_id": "mlb_american", - "division_id": "mlb_al_east", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mlb_wsn", - "name": "Nationals", - "abbreviation": "WSN", - "sport": "MLB", - "city": "Washington", - "stadium_canonical_id": "stadium_mlb_nationals_park", - "conference_id": "mlb_national", - "division_id": "mlb_nl_east", - "primary_color": null, - "secondary_color": null + "primary_color": "#e31837", + "secondary_color": "#002b5c" }, { "canonical_id": "team_nfl_ari", @@ -728,8 +1088,8 @@ "stadium_canonical_id": "stadium_nfl_state_farm_stadium", "conference_id": "nfl_nfc", "division_id": "nfl_nfc_west", - "primary_color": null, - "secondary_color": null + "primary_color": "#a40227", + "secondary_color": "#ffffff" }, { "canonical_id": "team_nfl_atl", @@ -740,8 +1100,8 @@ "stadium_canonical_id": "stadium_nfl_mercedes_benz_stadium", "conference_id": "nfl_nfc", "division_id": "nfl_nfc_south", - "primary_color": null, - "secondary_color": null + "primary_color": "#a71930", + "secondary_color": "#000000" }, { "canonical_id": "team_nfl_bal", @@ -752,8 +1112,8 @@ "stadium_canonical_id": "stadium_nfl_mandt_bank_stadium", "conference_id": "nfl_afc", "division_id": "nfl_afc_north", - "primary_color": null, - "secondary_color": null + "primary_color": "#29126f", + "secondary_color": "#000000" }, { "canonical_id": "team_nfl_buf", @@ -764,8 +1124,8 @@ "stadium_canonical_id": "stadium_nfl_highmark_stadium", "conference_id": "nfl_afc", "division_id": "nfl_afc_east", - "primary_color": null, - "secondary_color": null + "primary_color": "#00338d", + "secondary_color": "#d50a0a" }, { "canonical_id": "team_nfl_car", @@ -776,8 +1136,8 @@ "stadium_canonical_id": "stadium_nfl_bank_of_america_stadium", "conference_id": "nfl_nfc", "division_id": "nfl_nfc_south", - "primary_color": null, - "secondary_color": null + "primary_color": "#0085ca", + "secondary_color": "#000000" }, { "canonical_id": "team_nfl_chi", @@ -788,8 +1148,8 @@ "stadium_canonical_id": "stadium_nfl_soldier_field", "conference_id": "nfl_nfc", "division_id": "nfl_nfc_north", - "primary_color": null, - "secondary_color": null + "primary_color": "#0b1c3a", + "secondary_color": "#e64100" }, { "canonical_id": "team_nfl_cin", @@ -800,8 +1160,8 @@ "stadium_canonical_id": "stadium_nfl_paycor_stadium", "conference_id": "nfl_afc", "division_id": "nfl_afc_north", - "primary_color": null, - "secondary_color": null + "primary_color": "#fb4f14", + "secondary_color": "#000000" }, { "canonical_id": "team_nfl_cle", @@ -812,8 +1172,8 @@ "stadium_canonical_id": "stadium_nfl_huntington_bank_field", "conference_id": "nfl_afc", "division_id": "nfl_afc_north", - "primary_color": null, - "secondary_color": null + "primary_color": "#472a08", + "secondary_color": "#ff3c00" }, { "canonical_id": "team_nfl_dal", @@ -824,8 +1184,8 @@ "stadium_canonical_id": "stadium_nfl_att_stadium", "conference_id": "nfl_nfc", "division_id": "nfl_nfc_east", - "primary_color": null, - "secondary_color": null + "primary_color": "#002a5c", + "secondary_color": "#b0b7bc" }, { "canonical_id": "team_nfl_den", @@ -836,8 +1196,8 @@ "stadium_canonical_id": "stadium_nfl_empower_field", "conference_id": "nfl_afc", "division_id": "nfl_afc_west", - "primary_color": null, - "secondary_color": null + "primary_color": "#0a2343", + "secondary_color": "#fc4c02" }, { "canonical_id": "team_nfl_det", @@ -848,8 +1208,8 @@ "stadium_canonical_id": "stadium_nfl_ford_field", "conference_id": "nfl_nfc", "division_id": "nfl_nfc_north", - "primary_color": null, - "secondary_color": null + "primary_color": "#0076b6", + "secondary_color": "#bbbbbb" }, { "canonical_id": "team_nfl_gb", @@ -860,8 +1220,8 @@ "stadium_canonical_id": "stadium_nfl_lambeau_field", "conference_id": "nfl_nfc", "division_id": "nfl_nfc_north", - "primary_color": null, - "secondary_color": null + "primary_color": "#204e32", + "secondary_color": "#ffb612" }, { "canonical_id": "team_nfl_hou", @@ -872,8 +1232,8 @@ "stadium_canonical_id": "stadium_nfl_nrg_stadium", "conference_id": "nfl_afc", "division_id": "nfl_afc_south", - "primary_color": null, - "secondary_color": null + "primary_color": "#00143f", + "secondary_color": "#c41230" }, { "canonical_id": "team_nfl_ind", @@ -884,8 +1244,8 @@ "stadium_canonical_id": "stadium_nfl_lucas_oil_stadium", "conference_id": "nfl_afc", "division_id": "nfl_afc_south", - "primary_color": null, - "secondary_color": null + "primary_color": "#003b75", + "secondary_color": "#ffffff" }, { "canonical_id": "team_nfl_jax", @@ -896,8 +1256,8 @@ "stadium_canonical_id": "stadium_nfl_everbank_stadium", "conference_id": "nfl_afc", "division_id": "nfl_afc_south", - "primary_color": null, - "secondary_color": null + "primary_color": "#007487", + "secondary_color": "#d7a22a" }, { "canonical_id": "team_nfl_kc", @@ -908,8 +1268,8 @@ "stadium_canonical_id": "stadium_nfl_arrowhead_stadium", "conference_id": "nfl_afc", "division_id": "nfl_afc_west", - "primary_color": null, - "secondary_color": null + "primary_color": "#e31837", + "secondary_color": "#ffb612" }, { "canonical_id": "team_nfl_lv", @@ -920,8 +1280,8 @@ "stadium_canonical_id": "stadium_nfl_allegiant_stadium", "conference_id": "nfl_afc", "division_id": "nfl_afc_west", - "primary_color": null, - "secondary_color": null + "primary_color": "#000000", + "secondary_color": "#a5acaf" }, { "canonical_id": "team_nfl_lac", @@ -932,8 +1292,8 @@ "stadium_canonical_id": "stadium_nfl_sofi_stadium", "conference_id": "nfl_afc", "division_id": "nfl_afc_west", - "primary_color": null, - "secondary_color": null + "primary_color": "#0080c6", + "secondary_color": "#ffc20e" }, { "canonical_id": "team_nfl_lar", @@ -944,8 +1304,8 @@ "stadium_canonical_id": "stadium_nfl_sofi_stadium", "conference_id": "nfl_nfc", "division_id": "nfl_nfc_west", - "primary_color": null, - "secondary_color": null + "primary_color": "#003594", + "secondary_color": "#ffd100" }, { "canonical_id": "team_nfl_mia", @@ -956,8 +1316,8 @@ "stadium_canonical_id": "stadium_nfl_hard_rock_stadium", "conference_id": "nfl_afc", "division_id": "nfl_afc_east", - "primary_color": null, - "secondary_color": null + "primary_color": "#008e97", + "secondary_color": "#fc4c02" }, { "canonical_id": "team_nfl_min", @@ -968,8 +1328,8 @@ "stadium_canonical_id": "stadium_nfl_us_bank_stadium", "conference_id": "nfl_nfc", "division_id": "nfl_nfc_north", - "primary_color": null, - "secondary_color": null + "primary_color": "#4f2683", + "secondary_color": "#ffc62f" }, { "canonical_id": "team_nfl_ne", @@ -980,8 +1340,8 @@ "stadium_canonical_id": "stadium_nfl_gillette_stadium", "conference_id": "nfl_afc", "division_id": "nfl_afc_east", - "primary_color": null, - "secondary_color": null + "primary_color": "#002a5c", + "secondary_color": "#c60c30" }, { "canonical_id": "team_nfl_no", @@ -992,8 +1352,8 @@ "stadium_canonical_id": "stadium_nfl_caesars_superdome", "conference_id": "nfl_nfc", "division_id": "nfl_nfc_south", - "primary_color": null, - "secondary_color": null + "primary_color": "#d3bc8d", + "secondary_color": "#000000" }, { "canonical_id": "team_nfl_nyg", @@ -1004,8 +1364,8 @@ "stadium_canonical_id": "stadium_nfl_metlife_stadium", "conference_id": "nfl_nfc", "division_id": "nfl_nfc_east", - "primary_color": null, - "secondary_color": null + "primary_color": "#003c7f", + "secondary_color": "#c9243f" }, { "canonical_id": "team_nfl_nyj", @@ -1016,8 +1376,8 @@ "stadium_canonical_id": "stadium_nfl_metlife_stadium", "conference_id": "nfl_afc", "division_id": "nfl_afc_east", - "primary_color": null, - "secondary_color": null + "primary_color": "#115740", + "secondary_color": "#ffffff" }, { "canonical_id": "team_nfl_phi", @@ -1028,8 +1388,8 @@ "stadium_canonical_id": "stadium_nfl_lincoln_financial_field", "conference_id": "nfl_nfc", "division_id": "nfl_nfc_east", - "primary_color": null, - "secondary_color": null + "primary_color": "#06424d", + "secondary_color": "#000000" }, { "canonical_id": "team_nfl_pit", @@ -1040,8 +1400,8 @@ "stadium_canonical_id": "stadium_nfl_acrisure_stadium", "conference_id": "nfl_afc", "division_id": "nfl_afc_north", - "primary_color": null, - "secondary_color": null + "primary_color": "#000000", + "secondary_color": "#ffb612" }, { "canonical_id": "team_nfl_sf", @@ -1052,8 +1412,8 @@ "stadium_canonical_id": "stadium_nfl_levis_stadium", "conference_id": "nfl_nfc", "division_id": "nfl_nfc_west", - "primary_color": null, - "secondary_color": null + "primary_color": "#aa0000", + "secondary_color": "#b3995d" }, { "canonical_id": "team_nfl_sea", @@ -1064,8 +1424,8 @@ "stadium_canonical_id": "stadium_nfl_lumen_field", "conference_id": "nfl_nfc", "division_id": "nfl_nfc_west", - "primary_color": null, - "secondary_color": null + "primary_color": "#002a5c", + "secondary_color": "#69be28" }, { "canonical_id": "team_nfl_tb", @@ -1076,8 +1436,8 @@ "stadium_canonical_id": "stadium_nfl_raymond_james_stadium", "conference_id": "nfl_nfc", "division_id": "nfl_nfc_south", - "primary_color": null, - "secondary_color": null + "primary_color": "#bd1c36", + "secondary_color": "#3e3a35" }, { "canonical_id": "team_nfl_ten", @@ -1088,8 +1448,8 @@ "stadium_canonical_id": "stadium_nfl_nissan_stadium", "conference_id": "nfl_afc", "division_id": "nfl_afc_south", - "primary_color": null, - "secondary_color": null + "primary_color": "#4b92db", + "secondary_color": "#002a5c" }, { "canonical_id": "team_nfl_was", @@ -1100,8 +1460,8 @@ "stadium_canonical_id": "stadium_nfl_northwest_stadium", "conference_id": "nfl_nfc", "division_id": "nfl_nfc_east", - "primary_color": null, - "secondary_color": null + "primary_color": "#5a1414", + "secondary_color": "#ffb612" }, { "canonical_id": "team_nhl_ana", @@ -1112,20 +1472,8 @@ "stadium_canonical_id": "stadium_nhl_honda_center", "conference_id": "nhl_western", "division_id": "nhl_pacific", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_nhl_ari", - "name": "Club", - "abbreviation": "ARI", - "sport": "NHL", - "city": "Utah", - "stadium_canonical_id": "stadium_nhl_delta_center", - "conference_id": "nhl_western", - "division_id": "nhl_central", - "primary_color": null, - "secondary_color": null + "primary_color": "#fc4c02", + "secondary_color": "#000000" }, { "canonical_id": "team_nhl_bos", @@ -1136,8 +1484,8 @@ "stadium_canonical_id": "stadium_nhl_td_garden", "conference_id": "nhl_eastern", "division_id": "nhl_atlantic", - "primary_color": null, - "secondary_color": null + "primary_color": "#231f20", + "secondary_color": "#fdb71a" }, { "canonical_id": "team_nhl_buf", @@ -1148,8 +1496,8 @@ "stadium_canonical_id": "stadium_nhl_keybank_center", "conference_id": "nhl_eastern", "division_id": "nhl_atlantic", - "primary_color": null, - "secondary_color": null + "primary_color": "#00468b", + "secondary_color": "#fdb71a" }, { "canonical_id": "team_nhl_cgy", @@ -1160,8 +1508,8 @@ "stadium_canonical_id": "stadium_nhl_scotiabank_saddledome", "conference_id": "nhl_western", "division_id": "nhl_pacific", - "primary_color": null, - "secondary_color": null + "primary_color": "#dd1a32", + "secondary_color": "#000000" }, { "canonical_id": "team_nhl_car", @@ -1172,8 +1520,8 @@ "stadium_canonical_id": "stadium_nhl_pnc_arena", "conference_id": "nhl_eastern", "division_id": "nhl_metropolitan", - "primary_color": null, - "secondary_color": null + "primary_color": "#e30426", + "secondary_color": "#000000" }, { "canonical_id": "team_nhl_chi", @@ -1184,8 +1532,8 @@ "stadium_canonical_id": "stadium_nhl_united_center", "conference_id": "nhl_western", "division_id": "nhl_central", - "primary_color": null, - "secondary_color": null + "primary_color": "#e31937", + "secondary_color": "#000000" }, { "canonical_id": "team_nhl_col", @@ -1196,8 +1544,8 @@ "stadium_canonical_id": "stadium_nhl_ball_arena", "conference_id": "nhl_western", "division_id": "nhl_central", - "primary_color": null, - "secondary_color": null + "primary_color": "#860038", + "secondary_color": "#005ea3" }, { "canonical_id": "team_nhl_cbj", @@ -1208,8 +1556,8 @@ "stadium_canonical_id": "stadium_nhl_nationwide_arena", "conference_id": "nhl_eastern", "division_id": "nhl_metropolitan", - "primary_color": null, - "secondary_color": null + "primary_color": "#002d62", + "secondary_color": "#e31937" }, { "canonical_id": "team_nhl_dal", @@ -1220,8 +1568,8 @@ "stadium_canonical_id": "stadium_nhl_american_airlines_center", "conference_id": "nhl_western", "division_id": "nhl_central", - "primary_color": null, - "secondary_color": null + "primary_color": "#20864c", + "secondary_color": "#000000" }, { "canonical_id": "team_nhl_det", @@ -1232,8 +1580,8 @@ "stadium_canonical_id": "stadium_nhl_little_caesars_arena", "conference_id": "nhl_eastern", "division_id": "nhl_atlantic", - "primary_color": null, - "secondary_color": null + "primary_color": "#e30526", + "secondary_color": "#ffffff" }, { "canonical_id": "team_nhl_edm", @@ -1244,8 +1592,8 @@ "stadium_canonical_id": "stadium_nhl_rogers_place", "conference_id": "nhl_western", "division_id": "nhl_pacific", - "primary_color": null, - "secondary_color": null + "primary_color": "#00205b", + "secondary_color": "#ff4c00" }, { "canonical_id": "team_nhl_fla", @@ -1256,8 +1604,8 @@ "stadium_canonical_id": "stadium_nhl_amerant_bank_arena", "conference_id": "nhl_eastern", "division_id": "nhl_atlantic", - "primary_color": null, - "secondary_color": null + "primary_color": "#e51937", + "secondary_color": "#002d62" }, { "canonical_id": "team_nhl_la", @@ -1268,8 +1616,8 @@ "stadium_canonical_id": "stadium_nhl_cryptocom_arena", "conference_id": "nhl_western", "division_id": "nhl_pacific", - "primary_color": null, - "secondary_color": null + "primary_color": "#121212", + "secondary_color": "#a2aaad" }, { "canonical_id": "team_nhl_min", @@ -1280,8 +1628,8 @@ "stadium_canonical_id": "stadium_nhl_xcel_energy_center", "conference_id": "nhl_western", "division_id": "nhl_central", - "primary_color": null, - "secondary_color": null + "primary_color": "#124734", + "secondary_color": "#ae122a" }, { "canonical_id": "team_nhl_mtl", @@ -1292,8 +1640,8 @@ "stadium_canonical_id": "stadium_nhl_bell_centre", "conference_id": "nhl_eastern", "division_id": "nhl_atlantic", - "primary_color": null, - "secondary_color": null + "primary_color": "#c41230", + "secondary_color": "#013a81" }, { "canonical_id": "team_nhl_nsh", @@ -1304,8 +1652,8 @@ "stadium_canonical_id": "stadium_nhl_bridgestone_arena", "conference_id": "nhl_western", "division_id": "nhl_central", - "primary_color": null, - "secondary_color": null + "primary_color": "#fdba31", + "secondary_color": "#002d62" }, { "canonical_id": "team_nhl_njd", @@ -1316,8 +1664,8 @@ "stadium_canonical_id": "stadium_nhl_prudential_center", "conference_id": "nhl_eastern", "division_id": "nhl_metropolitan", - "primary_color": null, - "secondary_color": null + "primary_color": "#e30b2b", + "secondary_color": "#000000" }, { "canonical_id": "team_nhl_nyi", @@ -1328,8 +1676,8 @@ "stadium_canonical_id": "stadium_nhl_ubs_arena", "conference_id": "nhl_eastern", "division_id": "nhl_metropolitan", - "primary_color": null, - "secondary_color": null + "primary_color": "#00529b", + "secondary_color": "#f47d31" }, { "canonical_id": "team_nhl_nyr", @@ -1340,8 +1688,8 @@ "stadium_canonical_id": "stadium_nhl_madison_square_garden", "conference_id": "nhl_eastern", "division_id": "nhl_metropolitan", - "primary_color": null, - "secondary_color": null + "primary_color": "#0056ae", + "secondary_color": "#e51937" }, { "canonical_id": "team_nhl_ott", @@ -1352,8 +1700,8 @@ "stadium_canonical_id": "stadium_nhl_canadian_tire_centre", "conference_id": "nhl_eastern", "division_id": "nhl_atlantic", - "primary_color": null, - "secondary_color": null + "primary_color": "#dd1a32", + "secondary_color": "#b79257" }, { "canonical_id": "team_nhl_phi", @@ -1364,8 +1712,8 @@ "stadium_canonical_id": "stadium_nhl_wells_fargo_center", "conference_id": "nhl_eastern", "division_id": "nhl_metropolitan", - "primary_color": null, - "secondary_color": null + "primary_color": "#fe5823", + "secondary_color": "#000000" }, { "canonical_id": "team_nhl_pit", @@ -1376,8 +1724,8 @@ "stadium_canonical_id": "stadium_nhl_ppg_paints_arena", "conference_id": "nhl_eastern", "division_id": "nhl_metropolitan", - "primary_color": null, - "secondary_color": null + "primary_color": "#000000", + "secondary_color": "#fdb71a" }, { "canonical_id": "team_nhl_sj", @@ -1388,8 +1736,8 @@ "stadium_canonical_id": "stadium_nhl_sap_center", "conference_id": "nhl_western", "division_id": "nhl_pacific", - "primary_color": null, - "secondary_color": null + "primary_color": "#00788a", + "secondary_color": "#070707" }, { "canonical_id": "team_nhl_sea", @@ -1400,8 +1748,8 @@ "stadium_canonical_id": "stadium_nhl_climate_pledge_arena", "conference_id": "nhl_western", "division_id": "nhl_pacific", - "primary_color": null, - "secondary_color": null + "primary_color": "#000d33", + "secondary_color": "#a3dce4" }, { "canonical_id": "team_nhl_stl", @@ -1412,8 +1760,8 @@ "stadium_canonical_id": "stadium_nhl_enterprise_center", "conference_id": "nhl_western", "division_id": "nhl_central", - "primary_color": null, - "secondary_color": null + "primary_color": "#0070b9", + "secondary_color": "#fdb71a" }, { "canonical_id": "team_nhl_tb", @@ -1424,8 +1772,8 @@ "stadium_canonical_id": "stadium_nhl_amalie_arena", "conference_id": "nhl_eastern", "division_id": "nhl_atlantic", - "primary_color": null, - "secondary_color": null + "primary_color": "#003e7e", + "secondary_color": "#ffffff" }, { "canonical_id": "team_nhl_tor", @@ -1436,8 +1784,20 @@ "stadium_canonical_id": "stadium_nhl_scotiabank_arena", "conference_id": "nhl_eastern", "division_id": "nhl_atlantic", - "primary_color": null, - "secondary_color": null + "primary_color": "#003e7e", + "secondary_color": "#ffffff" + }, + { + "canonical_id": "team_nhl_ari", + "name": "Club", + "abbreviation": "ARI", + "sport": "NHL", + "city": "Utah", + "stadium_canonical_id": "stadium_nhl_delta_center", + "conference_id": "nhl_western", + "division_id": "nhl_central", + "primary_color": "#000000", + "secondary_color": "#7ab2e1" }, { "canonical_id": "team_nhl_van", @@ -1448,8 +1808,8 @@ "stadium_canonical_id": "stadium_nhl_rogers_arena", "conference_id": "nhl_western", "division_id": "nhl_pacific", - "primary_color": null, - "secondary_color": null + "primary_color": "#003e7e", + "secondary_color": "#008752" }, { "canonical_id": "team_nhl_vgk", @@ -1460,8 +1820,8 @@ "stadium_canonical_id": "stadium_nhl_tmobile_arena", "conference_id": "nhl_western", "division_id": "nhl_pacific", - "primary_color": null, - "secondary_color": null + "primary_color": "#344043", + "secondary_color": "#b4975a" }, { "canonical_id": "team_nhl_was", @@ -1472,8 +1832,8 @@ "stadium_canonical_id": "stadium_nhl_capital_one_arena", "conference_id": "nhl_eastern", "division_id": "nhl_metropolitan", - "primary_color": null, - "secondary_color": null + "primary_color": "#d71830", + "secondary_color": "#0b1f41" }, { "canonical_id": "team_nhl_wpg", @@ -1484,692 +1844,8 @@ "stadium_canonical_id": "stadium_nhl_canada_life_centre", "conference_id": "nhl_western", "division_id": "nhl_central", - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_atl", - "name": "Atlanta United", - "abbreviation": "ATL", - "sport": "MLS", - "city": "Atlanta", - "stadium_canonical_id": "stadium_mls_mercedes_benz_stadium", - "conference_id": "mls_eastern", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_aus", - "name": "Austin FC", - "abbreviation": "AUS", - "sport": "MLS", - "city": "Austin", - "stadium_canonical_id": "stadium_mls_q2_stadium", - "conference_id": "mls_western", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_clt", - "name": "Charlotte FC", - "abbreviation": "CLT", - "sport": "MLS", - "city": "Charlotte", - "stadium_canonical_id": "stadium_mls_bank_of_america_stadium", - "conference_id": "mls_eastern", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_chi", - "name": "Chicago Fire", - "abbreviation": "CHI", - "sport": "MLS", - "city": "Chicago", - "stadium_canonical_id": "stadium_mls_soldier_field", - "conference_id": "mls_eastern", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_cin", - "name": "FC Cincinnati", - "abbreviation": "CIN", - "sport": "MLS", - "city": "Cincinnati", - "stadium_canonical_id": "stadium_mls_tql_stadium", - "conference_id": "mls_eastern", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_col", - "name": "Colorado Rapids", - "abbreviation": "COL", - "sport": "MLS", - "city": "Colorado", - "stadium_canonical_id": "stadium_mls_dicks_sporting_goods_park", - "conference_id": "mls_western", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_clb", - "name": "Columbus Crew", - "abbreviation": "CLB", - "sport": "MLS", - "city": "Columbus", - "stadium_canonical_id": "stadium_mls_lowercom_field", - "conference_id": "mls_eastern", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_dal", - "name": "FC Dallas", - "abbreviation": "DAL", - "sport": "MLS", - "city": "Dallas", - "stadium_canonical_id": "stadium_mls_toyota_stadium", - "conference_id": "mls_western", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_dc", - "name": "D.C. United", - "abbreviation": "DC", - "sport": "MLS", - "city": "Washington", - "stadium_canonical_id": "stadium_mls_audi_field", - "conference_id": "mls_eastern", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_hou", - "name": "Houston Dynamo", - "abbreviation": "HOU", - "sport": "MLS", - "city": "Houston", - "stadium_canonical_id": "stadium_mls_shell_energy_stadium", - "conference_id": "mls_western", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_lag", - "name": "LA Galaxy", - "abbreviation": "LAG", - "sport": "MLS", - "city": "Los Angeles", - "stadium_canonical_id": "stadium_mls_dignity_health_sports_park", - "conference_id": "mls_western", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_lafc", - "name": "Los Angeles FC", - "abbreviation": "LAFC", - "sport": "MLS", - "city": "Los Angeles", - "stadium_canonical_id": "stadium_mls_bmo_stadium", - "conference_id": "mls_western", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_mia", - "name": "Inter Miami", - "abbreviation": "MIA", - "sport": "MLS", - "city": "Miami", - "stadium_canonical_id": "stadium_mls_chase_stadium", - "conference_id": "mls_eastern", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_min", - "name": "Minnesota United", - "abbreviation": "MIN", - "sport": "MLS", - "city": "Minnesota", - "stadium_canonical_id": "stadium_mls_allianz_field", - "conference_id": "mls_western", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_mtl", - "name": "CF Montreal", - "abbreviation": "MTL", - "sport": "MLS", - "city": "Montreal", - "stadium_canonical_id": "stadium_mls_stade_saputo", - "conference_id": "mls_eastern", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_nsh", - "name": "Nashville SC", - "abbreviation": "NSH", - "sport": "MLS", - "city": "Nashville", - "stadium_canonical_id": "stadium_mls_geodis_park", - "conference_id": "mls_western", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_ne", - "name": "New England Revolution", - "abbreviation": "NE", - "sport": "MLS", - "city": "New England", - "stadium_canonical_id": "stadium_mls_gillette_stadium", - "conference_id": "mls_eastern", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_nyc", - "name": "New York City FC", - "abbreviation": "NYC", - "sport": "MLS", - "city": "New York", - "stadium_canonical_id": "stadium_mls_yankee_stadium", - "conference_id": "mls_eastern", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_ny", - "name": "New York Red Bulls", - "abbreviation": "RB", - "sport": "MLS", - "city": "New York", - "stadium_canonical_id": "stadium_mls_red_bull_arena", - "conference_id": "mls_eastern", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_orl", - "name": "Orlando City", - "abbreviation": "ORL", - "sport": "MLS", - "city": "Orlando", - "stadium_canonical_id": "stadium_mls_interco_stadium", - "conference_id": "mls_eastern", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_phi", - "name": "Philadelphia Union", - "abbreviation": "PHI", - "sport": "MLS", - "city": "Philadelphia", - "stadium_canonical_id": "stadium_mls_subaru_park", - "conference_id": "mls_eastern", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_por", - "name": "Portland Timbers", - "abbreviation": "POR", - "sport": "MLS", - "city": "Portland", - "stadium_canonical_id": "stadium_mls_providence_park", - "conference_id": "mls_western", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_slc", - "name": "Real Salt Lake", - "abbreviation": "SLC", - "sport": "MLS", - "city": "Salt Lake", - "stadium_canonical_id": "stadium_mls_america_first_field", - "conference_id": "mls_western", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_sj", - "name": "San Jose Earthquakes", - "abbreviation": "SJ", - "sport": "MLS", - "city": "San Jose", - "stadium_canonical_id": "stadium_mls_paypal_park", - "conference_id": "mls_western", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_sd", - "name": "San Diego FC", - "abbreviation": "SD", - "sport": "MLS", - "city": "San Diego", - "stadium_canonical_id": "stadium_mls_snapdragon_stadium", - "conference_id": "mls_western", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_sea", - "name": "Seattle Sounders", - "abbreviation": "SEA", - "sport": "MLS", - "city": "Seattle", - "stadium_canonical_id": "stadium_mls_lumen_field", - "conference_id": "mls_western", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_skc", - "name": "Sporting Kansas City", - "abbreviation": "SKC", - "sport": "MLS", - "city": "Kansas City", - "stadium_canonical_id": "stadium_mls_childrens_mercy_park", - "conference_id": "mls_western", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_stl", - "name": "St. Louis City SC", - "abbreviation": "STL", - "sport": "MLS", - "city": "St. Louis", - "stadium_canonical_id": "stadium_mls_citypark", - "conference_id": "mls_western", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_tor", - "name": "Toronto FC", - "abbreviation": "TOR", - "sport": "MLS", - "city": "Toronto", - "stadium_canonical_id": "stadium_mls_bmo_field", - "conference_id": "mls_eastern", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_mls_van", - "name": "Vancouver Whitecaps", - "abbreviation": "VAN", - "sport": "MLS", - "city": "Vancouver", - "stadium_canonical_id": "stadium_mls_bc_place", - "conference_id": "mls_western", - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_wnba_atl", - "name": "Dream", - "abbreviation": "ATL", - "sport": "WNBA", - "city": "Atlanta", - "stadium_canonical_id": "stadium_wnba_gateway_center_arena", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_wnba_chi", - "name": "Sky", - "abbreviation": "CHI", - "sport": "WNBA", - "city": "Chicago", - "stadium_canonical_id": "stadium_wnba_wintrust_arena", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_wnba_con", - "name": "Sun", - "abbreviation": "CON", - "sport": "WNBA", - "city": "Connecticut", - "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_wnba_dal", - "name": "Wings", - "abbreviation": "DAL", - "sport": "WNBA", - "city": "Dallas", - "stadium_canonical_id": "stadium_wnba_college_park_center", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_wnba_gsv", - "name": "Valkyries", - "abbreviation": "GSV", - "sport": "WNBA", - "city": "Golden State", - "stadium_canonical_id": "stadium_wnba_chase_center", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_wnba_ind", - "name": "Fever", - "abbreviation": "IND", - "sport": "WNBA", - "city": "Indiana", - "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_wnba_lv", - "name": "Aces", - "abbreviation": "LV", - "sport": "WNBA", - "city": "Las Vegas", - "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_wnba_la", - "name": "Sparks", - "abbreviation": "LA", - "sport": "WNBA", - "city": "Los Angeles", - "stadium_canonical_id": "stadium_wnba_cryptocom_arena", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_wnba_min", - "name": "Lynx", - "abbreviation": "MIN", - "sport": "WNBA", - "city": "Minnesota", - "stadium_canonical_id": "stadium_wnba_target_center", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_wnba_ny", - "name": "Liberty", - "abbreviation": "NY", - "sport": "WNBA", - "city": "New York", - "stadium_canonical_id": "stadium_wnba_barclays_center", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_wnba_phx", - "name": "Mercury", - "abbreviation": "PHX", - "sport": "WNBA", - "city": "Phoenix", - "stadium_canonical_id": "stadium_wnba_footprint_center", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_wnba_sea", - "name": "Storm", - "abbreviation": "SEA", - "sport": "WNBA", - "city": "Seattle", - "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_wnba_was", - "name": "Mystics", - "abbreviation": "WAS", - "sport": "WNBA", - "city": "Washington", - "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_nwsl_ang", - "name": "Angel City FC", - "abbreviation": "ANG", - "sport": "NWSL", - "city": "Los Angeles", - "stadium_canonical_id": "stadium_nwsl_bmo_stadium", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_nwsl_chi", - "name": "Chicago Red Stars", - "abbreviation": "CHI", - "sport": "NWSL", - "city": "Chicago", - "stadium_canonical_id": "stadium_nwsl_seatgeek_stadium", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_nwsl_hou", - "name": "Houston Dash", - "abbreviation": "HOU", - "sport": "NWSL", - "city": "Houston", - "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_nwsl_kcc", - "name": "Kansas City Current", - "abbreviation": "KCC", - "sport": "NWSL", - "city": "Kansas City", - "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_nwsl_njy", - "name": "NJ/NY Gotham FC", - "abbreviation": "NJY", - "sport": "NWSL", - "city": "New Jersey", - "stadium_canonical_id": "stadium_nwsl_red_bull_arena", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_nwsl_ncc", - "name": "North Carolina Courage", - "abbreviation": "NCC", - "sport": "NWSL", - "city": "North Carolina", - "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_nwsl_orl", - "name": "Orlando Pride", - "abbreviation": "ORL", - "sport": "NWSL", - "city": "Orlando", - "stadium_canonical_id": "stadium_nwsl_interco_stadium", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_nwsl_por", - "name": "Portland Thorns", - "abbreviation": "POR", - "sport": "NWSL", - "city": "Portland", - "stadium_canonical_id": "stadium_nwsl_providence_park", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_nwsl_rgn", - "name": "Racing Louisville", - "abbreviation": "RGN", - "sport": "NWSL", - "city": "Louisville", - "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_nwsl_sdw", - "name": "San Diego Wave", - "abbreviation": "SDW", - "sport": "NWSL", - "city": "San Diego", - "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_nwsl_sea", - "name": "Seattle Reign", - "abbreviation": "SEA", - "sport": "NWSL", - "city": "Seattle", - "stadium_canonical_id": "stadium_nwsl_lumen_field", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_nwsl_uta", - "name": "Utah Royals", - "abbreviation": "UTA", - "sport": "NWSL", - "city": "Utah", - "stadium_canonical_id": "stadium_nwsl_america_first_field", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_nwsl_wsh", - "name": "Washington Spirit", - "abbreviation": "WSH", - "sport": "NWSL", - "city": "Washington", - "stadium_canonical_id": "stadium_nwsl_audi_field", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null - }, - { - "canonical_id": "team_nwsl_bay", - "name": "Bay FC", - "abbreviation": "BAY", - "sport": "NWSL", - "city": "San Francisco", - "stadium_canonical_id": "stadium_nwsl_paypal_park", - "conference_id": null, - "division_id": null, - "primary_color": null, - "secondary_color": null + "primary_color": "#002d62", + "secondary_color": "#c41230" }, { "canonical_id": "team_nwsl_bos", @@ -2180,8 +1856,20 @@ "stadium_canonical_id": "stadium_nwsl_gillette_stadium", "conference_id": null, "division_id": null, - "primary_color": null, - "secondary_color": null + "primary_color": "#00FF00", + "secondary_color": "#000000" + }, + { + "canonical_id": "team_nwsl_chi", + "name": "Chicago Red Stars", + "abbreviation": "CHI", + "sport": "NWSL", + "city": "Chicago", + "stadium_canonical_id": "stadium_nwsl_seatgeek_stadium", + "conference_id": null, + "division_id": null, + "primary_color": "#c7102e", + "secondary_color": "#41b6e6" }, { "canonical_id": "team_nwsl_den", @@ -2192,7 +1880,319 @@ "stadium_canonical_id": "stadium_nwsl_dicks_sporting_goods_park", "conference_id": null, "division_id": null, - "primary_color": null, - "secondary_color": null + "primary_color": "#20604E", + "secondary_color": "#E4B83E" + }, + { + "canonical_id": "team_nwsl_hou", + "name": "Houston Dash", + "abbreviation": "HOU", + "sport": "NWSL", + "city": "Houston", + "stadium_canonical_id": "stadium_nwsl_shell_energy_stadium", + "conference_id": null, + "division_id": null, + "primary_color": "#ff6900", + "secondary_color": "#8ab7e9" + }, + { + "canonical_id": "team_nwsl_kcc", + "name": "Kansas City Current", + "abbreviation": "KCC", + "sport": "NWSL", + "city": "Kansas City", + "stadium_canonical_id": "stadium_nwsl_cpkc_stadium", + "conference_id": null, + "division_id": null, + "primary_color": "#cf3339", + "secondary_color": "#62cbc9" + }, + { + "canonical_id": "team_nwsl_ang", + "name": "Angel City FC", + "abbreviation": "ANG", + "sport": "NWSL", + "city": "Los Angeles", + "stadium_canonical_id": "stadium_nwsl_bmo_stadium", + "conference_id": null, + "division_id": null, + "primary_color": "#202121", + "secondary_color": "#898c8f" + }, + { + "canonical_id": "team_nwsl_rgn", + "name": "Racing Louisville", + "abbreviation": "RGN", + "sport": "NWSL", + "city": "Louisville", + "stadium_canonical_id": "stadium_nwsl_lynn_family_stadium", + "conference_id": null, + "division_id": null, + "primary_color": "#c5b5f2", + "secondary_color": "#14002f" + }, + { + "canonical_id": "team_nwsl_njy", + "name": "NJ/NY Gotham FC", + "abbreviation": "NJY", + "sport": "NWSL", + "city": "New Jersey", + "stadium_canonical_id": "stadium_nwsl_red_bull_arena", + "conference_id": null, + "division_id": null, + "primary_color": "#a9f1fd", + "secondary_color": "#000000" + }, + { + "canonical_id": "team_nwsl_ncc", + "name": "North Carolina Courage", + "abbreviation": "NCC", + "sport": "NWSL", + "city": "North Carolina", + "stadium_canonical_id": "stadium_nwsl_wakemed_soccer_park", + "conference_id": null, + "division_id": null, + "primary_color": "#ab0033", + "secondary_color": "#00416b" + }, + { + "canonical_id": "team_nwsl_orl", + "name": "Orlando Pride", + "abbreviation": "ORL", + "sport": "NWSL", + "city": "Orlando", + "stadium_canonical_id": "stadium_nwsl_interco_stadium", + "conference_id": null, + "division_id": null, + "primary_color": "#c5b5f2", + "secondary_color": "#14002f" + }, + { + "canonical_id": "team_nwsl_por", + "name": "Portland Thorns", + "abbreviation": "POR", + "sport": "NWSL", + "city": "Portland", + "stadium_canonical_id": "stadium_nwsl_providence_park", + "conference_id": null, + "division_id": null, + "primary_color": "#000000", + "secondary_color": "#ee202f" + }, + { + "canonical_id": "team_nwsl_sdw", + "name": "San Diego Wave", + "abbreviation": "SDW", + "sport": "NWSL", + "city": "San Diego", + "stadium_canonical_id": "stadium_nwsl_snapdragon_stadium", + "conference_id": null, + "division_id": null, + "primary_color": "#032e62", + "secondary_color": "#21c6d9" + }, + { + "canonical_id": "team_nwsl_bay", + "name": "Bay FC", + "abbreviation": "BAY", + "sport": "NWSL", + "city": "San Francisco", + "stadium_canonical_id": "stadium_nwsl_paypal_park", + "conference_id": null, + "division_id": null, + "primary_color": "#0d2032", + "secondary_color": "#dfdede" + }, + { + "canonical_id": "team_nwsl_sea", + "name": "Seattle Reign", + "abbreviation": "SEA", + "sport": "NWSL", + "city": "Seattle", + "stadium_canonical_id": "stadium_nwsl_lumen_field", + "conference_id": null, + "division_id": null, + "primary_color": "#292431", + "secondary_color": "#2e407a" + }, + { + "canonical_id": "team_nwsl_uta", + "name": "Utah Royals", + "abbreviation": "UTA", + "sport": "NWSL", + "city": "Utah", + "stadium_canonical_id": "stadium_nwsl_america_first_field", + "conference_id": null, + "division_id": null, + "primary_color": "#ae122a", + "secondary_color": "#fdb71a" + }, + { + "canonical_id": "team_nwsl_wsh", + "name": "Washington Spirit", + "abbreviation": "WSH", + "sport": "NWSL", + "city": "Washington", + "stadium_canonical_id": "stadium_nwsl_audi_field", + "conference_id": null, + "division_id": null, + "primary_color": "#000000", + "secondary_color": "#ede939" + }, + { + "canonical_id": "team_wnba_atl", + "name": "Dream", + "abbreviation": "ATL", + "sport": "WNBA", + "city": "Atlanta", + "stadium_canonical_id": "stadium_wnba_gateway_center_arena", + "conference_id": null, + "division_id": null, + "primary_color": "#e31837", + "secondary_color": "#5091cc" + }, + { + "canonical_id": "team_wnba_chi", + "name": "Sky", + "abbreviation": "CHI", + "sport": "WNBA", + "city": "Chicago", + "stadium_canonical_id": "stadium_wnba_wintrust_arena", + "conference_id": null, + "division_id": null, + "primary_color": "#5091cd", + "secondary_color": "#ffd520" + }, + { + "canonical_id": "team_wnba_con", + "name": "Sun", + "abbreviation": "CON", + "sport": "WNBA", + "city": "Connecticut", + "stadium_canonical_id": "stadium_wnba_mohegan_sun_arena", + "conference_id": null, + "division_id": null, + "primary_color": "#f05023", + "secondary_color": "#0a2240" + }, + { + "canonical_id": "team_wnba_dal", + "name": "Wings", + "abbreviation": "DAL", + "sport": "WNBA", + "city": "Dallas", + "stadium_canonical_id": "stadium_wnba_college_park_center", + "conference_id": null, + "division_id": null, + "primary_color": "#002b5c", + "secondary_color": "#c4d600" + }, + { + "canonical_id": "team_wnba_gsv", + "name": "Valkyries", + "abbreviation": "GSV", + "sport": "WNBA", + "city": "Golden State", + "stadium_canonical_id": "stadium_wnba_chase_center", + "conference_id": null, + "division_id": null, + "primary_color": "#b38fcf", + "secondary_color": "#000000" + }, + { + "canonical_id": "team_wnba_ind", + "name": "Fever", + "abbreviation": "IND", + "sport": "WNBA", + "city": "Indiana", + "stadium_canonical_id": "stadium_wnba_gainbridge_fieldhouse", + "conference_id": null, + "division_id": null, + "primary_color": "#002d62", + "secondary_color": "#e03a3e" + }, + { + "canonical_id": "team_wnba_lv", + "name": "Aces", + "abbreviation": "LV", + "sport": "WNBA", + "city": "Las Vegas", + "stadium_canonical_id": "stadium_wnba_michelob_ultra_arena", + "conference_id": null, + "division_id": null, + "primary_color": "#a7a8aa", + "secondary_color": "#000000" + }, + { + "canonical_id": "team_wnba_la", + "name": "Sparks", + "abbreviation": "LA", + "sport": "WNBA", + "city": "Los Angeles", + "stadium_canonical_id": "stadium_wnba_cryptocom_arena", + "conference_id": null, + "division_id": null, + "primary_color": "#552583", + "secondary_color": "#fdb927" + }, + { + "canonical_id": "team_wnba_min", + "name": "Lynx", + "abbreviation": "MIN", + "sport": "WNBA", + "city": "Minnesota", + "stadium_canonical_id": "stadium_wnba_target_center", + "conference_id": null, + "division_id": null, + "primary_color": "#266092", + "secondary_color": "#79bc43" + }, + { + "canonical_id": "team_wnba_ny", + "name": "Liberty", + "abbreviation": "NY", + "sport": "WNBA", + "city": "New York", + "stadium_canonical_id": "stadium_wnba_barclays_center", + "conference_id": null, + "division_id": null, + "primary_color": "#86cebc", + "secondary_color": "#000000" + }, + { + "canonical_id": "team_wnba_phx", + "name": "Mercury", + "abbreviation": "PHX", + "sport": "WNBA", + "city": "Phoenix", + "stadium_canonical_id": "stadium_wnba_footprint_center", + "conference_id": null, + "division_id": null, + "primary_color": "#3c286e", + "secondary_color": "#fa4b0a" + }, + { + "canonical_id": "team_wnba_sea", + "name": "Storm", + "abbreviation": "SEA", + "sport": "WNBA", + "city": "Seattle", + "stadium_canonical_id": "stadium_wnba_climate_pledge_arena", + "conference_id": null, + "division_id": null, + "primary_color": "#2c5235", + "secondary_color": "#fee11a" + }, + { + "canonical_id": "team_wnba_was", + "name": "Mystics", + "abbreviation": "WAS", + "sport": "WNBA", + "city": "Washington", + "stadium_canonical_id": "stadium_wnba_entertainment_sports_arena", + "conference_id": null, + "division_id": null, + "primary_color": "#e03a3e", + "secondary_color": "#002b5c" } ] \ No newline at end of file diff --git a/SportsTime/SportsTimeApp.swift b/SportsTime/SportsTimeApp.swift index 2a3cb9d..2e6923c 100644 --- a/SportsTime/SportsTimeApp.swift +++ b/SportsTime/SportsTimeApp.swift @@ -67,6 +67,7 @@ struct SportsTimeApp: App { var body: some Scene { WindowGroup { BootstrappedContentView(modelContainer: sharedModelContainer) + .environment(\.isDemoMode, ProcessInfo.isDemoMode) } .modelContainer(sharedModelContainer) } diff --git a/SportsTimeUITests/SportsTimeUITests.swift b/SportsTimeUITests/SportsTimeUITests.swift index 2659e5d..690b356 100644 --- a/SportsTimeUITests/SportsTimeUITests.swift +++ b/SportsTimeUITests/SportsTimeUITests.swift @@ -10,30 +10,264 @@ import XCTest final class SportsTimeUITests: XCTestCase { override func setUpWithError() throws { - // Put setup code here. This method is called before the invocation of each test method in the class. - // In UI tests it is usually best to stop immediately when a failure occurs. continueAfterFailure = false - - // In UI tests it’s important to set the initial state - such as interface orientation - required for your tests before they run. The setUp method is a good place to do this. } override func tearDownWithError() throws { - // Put teardown code here. This method is called after the invocation of each test method in the class. + // Put teardown code here. } + // MARK: - Demo Flow Test (Continuous Scroll Mode) + + /// Complete trip planning demo with continuous smooth scrolling. + /// + /// In demo mode, the app auto-selects each step as it appears on screen: + /// - Planning Mode: "By Dates" + /// - Dates: June 11-16, 2026 + /// - Sport: MLB + /// - Region: Central US + /// - Sort: Most Games + /// - Trip: 4th option + /// - Action: Auto-favorite + /// + /// The test just needs to: + /// 1. Launch with -DemoMode argument + /// 2. Tap "Start Planning" + /// 3. Continuously scroll - items auto-select as they appear + /// 4. Wait for transitions to complete @MainActor - func testExample() throws { - // UI tests must launch the application that they test. + func testTripPlanningDemoFlow() throws { + let app = XCUIApplication() + app.launchArguments = ["-DemoMode"] + app.launch() + + // Wait for app to fully load + sleep(2) + + // MARK: Step 1 - Tap "Start Planning" + let startPlanningButton = app.buttons["home.startPlanningButton"] + XCTAssertTrue(startPlanningButton.waitForExistence(timeout: 10), "Start Planning button should exist") + startPlanningButton.tap() + + // Wait for demo mode to auto-select planning mode + sleep(2) + + // MARK: Step 2 - Continuous scroll through wizard + // Demo mode auto-selects: Date Range β†’ June 11-16 β†’ MLB β†’ Central + // Each step auto-selects 0.5s after appearing, so we scroll slowly + for _ in 1...8 { + slowSwipeUp(app: app) + sleep(2) // Give time for auto-selections + } + + // MARK: Step 3 - Click "Plan My Trip" + let planTripButton = app.buttons["wizard.planTripButton"] + XCTAssertTrue(planTripButton.waitForExistence(timeout: 5), "Plan My Trip button should exist") + planTripButton.tap() + + // Wait for planning to complete + sleep(6) + + // MARK: Step 4 - Demo mode auto-selects "Most Games" and navigates to 4th trip + // Wait for TripOptionsView to load and auto-selections to complete + let sortDropdown = app.buttons["tripOptions.sortDropdown"] + XCTAssertTrue(sortDropdown.waitForExistence(timeout: 15), "Sort dropdown should exist") + + // Wait for demo mode to auto-select sort and navigate to trip detail + sleep(3) + + // MARK: Step 5 - Scroll through trip detail (demo mode auto-favorites) + // Wait for TripDetailView to appear + let favoriteButton = app.buttons["tripDetail.favoriteButton"] + if favoriteButton.waitForExistence(timeout: 10) { + // Demo mode will auto-favorite, but we scroll to show the itinerary + for _ in 1...6 { + slowSwipeUp(app: app) + sleep(2) + } + + // Scroll back up to show the favorited state + for _ in 1...4 { + slowSwipeDown(app: app) + sleep(1) + } + } + + // Wait to display final state + sleep(3) + + // Test complete - demo flow finished with trip favorited + } + + // MARK: - Manual Demo Flow Test (Original) + + /// Original manual test flow for comparison or when demo mode is not desired + @MainActor + func testTripPlanningManualFlow() throws { let app = XCUIApplication() app.launch() - // Use XCTAssert and related functions to verify your tests produce the correct results. + // Wait for app to fully load + sleep(2) + + // MARK: Step 1 - Tap "Start Planning" + let startPlanningButton = app.buttons["home.startPlanningButton"] + XCTAssertTrue(startPlanningButton.waitForExistence(timeout: 10), "Start Planning button should exist") + startPlanningButton.tap() + sleep(1) + + // MARK: Step 2 - Choose "By Dates" mode + let dateRangeMode = app.buttons["wizard.planningMode.dateRange"] + XCTAssertTrue(dateRangeMode.waitForExistence(timeout: 5), "Date Range mode should exist") + dateRangeMode.tap() + sleep(1) + + // Scroll down to see dates step + app.swipeUp() + sleep(1) + + // MARK: Step 3 - Select June 11-16, 2026 + // Navigate to June 2026 + let nextMonthButton = app.buttons["wizard.dates.nextMonth"] + XCTAssertTrue(nextMonthButton.waitForExistence(timeout: 5), "Next month button should exist") + + let monthLabel = app.staticTexts["wizard.dates.monthLabel"] + var attempts = 0 + while !monthLabel.label.contains("June 2026") && attempts < 12 { + nextMonthButton.tap() + Thread.sleep(forTimeInterval: 0.3) + attempts += 1 + } + + // Select June 11 + let june11 = app.buttons["wizard.dates.day.2026-06-11"] + XCTAssertTrue(june11.waitForExistence(timeout: 5), "June 11 should exist") + june11.tap() + Thread.sleep(forTimeInterval: 0.5) + + // Select June 16 + let june16 = app.buttons["wizard.dates.day.2026-06-16"] + XCTAssertTrue(june16.waitForExistence(timeout: 5), "June 16 should exist") + june16.tap() + sleep(1) + + // Scroll down to see sports step + app.swipeUp(velocity: .slow) + sleep(1) + + // MARK: Step 4 - Pick MLB + let mlbButton = app.buttons["wizard.sports.mlb"] + XCTAssertTrue(mlbButton.waitForExistence(timeout: 5), "MLB button should exist") + mlbButton.tap() + sleep(1) + + // Scroll down to see regions step + app.swipeUp(velocity: .slow) + sleep(1) + + // MARK: Step 5 - Select Central US region + let centralRegion = app.buttons["wizard.regions.central"] + XCTAssertTrue(centralRegion.waitForExistence(timeout: 5), "Central region should exist") + centralRegion.tap() + sleep(1) + + // Scroll down to see remaining steps + app.swipeUp(velocity: .slow) + sleep(1) + + // Keep scrolling for defaults + app.swipeUp(velocity: .slow) + sleep(1) + + // MARK: Step 8 - Click "Plan My Trip" + let planTripButton = app.buttons["wizard.planTripButton"] + XCTAssertTrue(planTripButton.waitForExistence(timeout: 5), "Plan My Trip button should exist") + planTripButton.tap() + + // Wait for planning to complete + sleep(5) + + // MARK: Step 9 - Select "Most Games" from dropdown + let sortDropdown = app.buttons["tripOptions.sortDropdown"] + XCTAssertTrue(sortDropdown.waitForExistence(timeout: 15), "Sort dropdown should exist") + sortDropdown.tap() + Thread.sleep(forTimeInterval: 0.5) + + let mostGamesOption = app.buttons["tripOptions.sortOption.mostgames"] + if mostGamesOption.waitForExistence(timeout: 3) { + mostGamesOption.tap() + } else { + app.buttons["Most Games"].tap() + } + Thread.sleep(forTimeInterval: 1) + + // MARK: Step 10 - Scroll and select 4th trip + for _ in 1...3 { + slowSwipeUp(app: app) + sleep(1) + } + + let fourthTrip = app.buttons["tripOptions.trip.3"] + if fourthTrip.waitForExistence(timeout: 5) { + fourthTrip.tap() + } else { + slowSwipeUp(app: app) + sleep(1) + if fourthTrip.waitForExistence(timeout: 3) { + fourthTrip.tap() + } else { + let anyTrip = app.buttons.matching(NSPredicate(format: "identifier BEGINSWITH 'tripOptions.trip.'")).firstMatch + XCTAssertTrue(anyTrip.waitForExistence(timeout: 5), "At least one trip option should exist") + anyTrip.tap() + } + } + sleep(2) + + // MARK: Step 12 - Scroll through itinerary + for _ in 1...5 { + slowSwipeUp(app: app) + Thread.sleep(forTimeInterval: 1.5) + } + + // MARK: Step 13 - Favorite the trip + for _ in 1...5 { + slowSwipeDown(app: app) + Thread.sleep(forTimeInterval: 0.5) + } + + let favoriteButton = app.buttons["tripDetail.favoriteButton"] + XCTAssertTrue(favoriteButton.waitForExistence(timeout: 5), "Favorite button should exist") + favoriteButton.tap() + sleep(2) + } + + // MARK: - Helper Methods + + /// Performs a slow swipe up gesture for smooth scrolling + private func slowSwipeUp(app: XCUIApplication) { + let start = app.coordinate(withNormalizedOffset: CGVector(dx: 0.5, dy: 0.7)) + let end = app.coordinate(withNormalizedOffset: CGVector(dx: 0.5, dy: 0.3)) + start.press(forDuration: 0.1, thenDragTo: end, withVelocity: .slow, thenHoldForDuration: 0.1) + } + + /// Performs a slow swipe down gesture for smooth scrolling + private func slowSwipeDown(app: XCUIApplication) { + let start = app.coordinate(withNormalizedOffset: CGVector(dx: 0.5, dy: 0.3)) + let end = app.coordinate(withNormalizedOffset: CGVector(dx: 0.5, dy: 0.7)) + start.press(forDuration: 0.1, thenDragTo: end, withVelocity: .slow, thenHoldForDuration: 0.1) + } + + // MARK: - Basic Tests + + @MainActor + func testExample() throws { + let app = XCUIApplication() + app.launch() } @MainActor func testLaunchPerformance() throws { - // This measures how long it takes to launch your application. measure(metrics: [XCTApplicationLaunchMetric()]) { XCUIApplication().launch() } diff --git a/marketing-videos/package.json b/marketing-videos/package.json index 261231e..3414102 100644 --- a/marketing-videos/package.json +++ b/marketing-videos/package.json @@ -10,7 +10,31 @@ "render:bucketlist": "remotion render TheBucketList out/the-bucket-list.mp4", "render:squad": "remotion render TheSquad out/the-squad.mp4", "render:handoff": "remotion render TheHandoff out/the-handoff.mp4", - "render:all": "npm run render:route && npm run render:checklist && npm run render:bucketlist && npm run render:squad && npm run render:handoff" + "render:fantest": "remotion render TheFanTest out/the-fan-test.mp4", + "render:groupchat": "remotion render TheGroupChat out/the-group-chat.mp4", + "render:all-originals": "npm run render:route && npm run render:checklist && npm run render:bucketlist && npm run render:squad && npm run render:handoff && npm run render:fantest && npm run render:groupchat", + "render:V03_H01": "remotion render V03_H01 out/week1/V03_H01.mp4", + "render:V10_H01": "remotion render V10_H01 out/week1/V10_H01.mp4", + "render:V03_H02": "remotion render V03_H02 out/week1/V03_H02.mp4", + "render:V10_H02": "remotion render V10_H02 out/week1/V10_H02.mp4", + "render:V03_H03": "remotion render V03_H03 out/week1/V03_H03.mp4", + "render:V17_H01": "remotion render V17_H01 out/week1/V17_H01.mp4", + "render:V17_H02": "remotion render V17_H02 out/week1/V17_H02.mp4", + "render:V06_H01": "remotion render V06_H01 out/week1/V06_H01.mp4", + "render:V08_H01": "remotion render V08_H01 out/week1/V08_H01.mp4", + "render:V05_LA_01": "remotion render V05_LA_01 out/week1/V05_LA_01.mp4", + "render:V05_NY_01": "remotion render V05_NY_01 out/week1/V05_NY_01.mp4", + "render:V05_TX_01": "remotion render V05_TX_01 out/week1/V05_TX_01.mp4", + "render:V05_CA_01": "remotion render V05_CA_01 out/week1/V05_CA_01.mp4", + "render:V08_LA_01": "remotion render V08_LA_01 out/week1/V08_LA_01.mp4", + "render:V04_H01": "remotion render V04_H01 out/week1/V04_H01.mp4", + "render:V20_H01": "remotion render V20_H01 out/week1/V20_H01.mp4", + "render:V14_H01": "remotion render V14_H01 out/week1/V14_H01.mp4", + "render:V04_H02": "remotion render V04_H02 out/week1/V04_H02.mp4", + "render:V02_H01": "remotion render V02_H01 out/week1/V02_H01.mp4", + "render:V19_H01": "remotion render V19_H01 out/week1/V19_H01.mp4", + "render:week1": "bash scripts/render-week1.sh", + "render:all": "npm run render:all-originals && npm run render:week1" }, "type": "module", "dependencies": { diff --git a/marketing-videos/src/Root.tsx b/marketing-videos/src/Root.tsx index 0ddc8db..e07b6f0 100644 --- a/marketing-videos/src/Root.tsx +++ b/marketing-videos/src/Root.tsx @@ -1,3 +1,4 @@ +import React from "react"; import { Composition, Folder } from "remotion"; import { TheRoute } from "./videos/TheRoute"; @@ -5,6 +6,12 @@ import { TheChecklist } from "./videos/TheChecklist"; import { TheBucketList } from "./videos/TheBucketList"; import { TheSquad } from "./videos/TheSquad"; import { TheHandoff } from "./videos/TheHandoff"; +import { TheFanTest } from "./videos/TheFanTest"; +import { TheGroupChat } from "./videos/TheGroupChat"; + +import { VideoFromConfig } from "./engine"; +import type { VideoConfig } from "./engine"; +import week1Configs from "./configs/week1.json"; /** * SportsTime Marketing Videos @@ -17,8 +24,11 @@ export const RemotionRoot: React.FC = () => { const WIDTH = 1080; const HEIGHT = 1920; + const configs = week1Configs as VideoConfig[]; + return ( <> + {/* Original hand-crafted marketing videos */} {/* Video 1: The Route - Map animation showcasing trip planning */} { width={WIDTH} height={HEIGHT} /> + + {/* Video 6: The Fan Test - Viral identity challenge */} + + + {/* Video 7: The Group Chat - Viral group chat chaos */} + + + + {/* Week 1: 20 config-driven TikTok/Reels videos */} + + {configs.map((config) => ( + } + durationInFrames={Math.round(config.targetLengthSec * FPS)} + fps={FPS} + width={WIDTH} + height={HEIGHT} + /> + ))} );